-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathinstaller.js
More file actions
80 lines (62 loc) · 1.96 KB
/
installer.js
File metadata and controls
80 lines (62 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const chalk = require('chalk')
const DraftLog = require('../').into(console)
// Mock download
var downloadMock = setInterval
// Shows an instalation log for a `library` on the `step`
function InstalationProgress(library, step, finished) {
var fillSpaces = ' '.repeat(15 - library.length)
if (finished) {
return chalk.cyan.dim(' > ') + chalk.yellow.dim(library) + fillSpaces + chalk.green('Installed')
} else {
return chalk.cyan(' > ') + chalk.yellow(library) + fillSpaces+ chalk.blue(step)
}
}
// Pretent do install stuff in series
var libs = ['async', 'lodash', 'mongodb', 'chalk', 'express', 'forever', 'socket.io', 'pm2', 'mocha']
var finished = false
var installed = 0
function startNextDownload() {
if (installed >= libs.length) {
// Finished! (logs once only)
if (!finished) {
console.log()
console.log(chalk.green('Finished Installation.'))
console.log()
console.log()
}
finished = true
return
}
install(libs[installed], startNextDownload)
// Increment current install
installed++
}
function install(lib, callback) {
var status = console.draft()
gatterDependencies()
function gatterDependencies() {
status(InstalationProgress(lib, 'gatterDependencies'))
// Wait 300ms before next step
setTimeout(function () {downloadDepeendencies()}, 100 + Math.random() * 200)
}
function downloadDepeendencies() {
status(InstalationProgress(lib, 'downloading dependencies'))
// Wait 300ms before next step
setTimeout(function () {compileCode()}, 150 + Math.random() * 200)
}
function compileCode() {
status(InstalationProgress(lib, 'compiling code'))
// Wait 300ms before next step
setTimeout(function () {finishUp()}, 50 + Math.random() * 200)
}
function finishUp() {
status(InstalationProgress(lib, 'finished', true))
callback()
}
}
// Start demo here
console.log()
console.log()
console.log('Starting downloads...')
startNextDownload()
startNextDownload()