-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogress-bar.js
49 lines (40 loc) · 2.37 KB
/
progress-bar.js
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
const timeConverter = require('./utils/time-converter');
const soundAlert = require('./utils/sound-alert');
/**
* A Basic CLI Progress bar to track progress in a long running job in a loop
* @param {Number} currentStep the current iteration number in the loop. eg: i, index or count
* @param {Number} totalSteps total number of steps that the loop will run for
* @param {Date} startTime pass the start time of the loop. It should be a Date object. eg: 'new Date()'
* @param {Number} clearScreenEvery console to be cleared off every ith iteration of this value. default: 1
* @param {Number} barLength the length of the progress bar. default: 50
* @param {Number} style choose styles from 0 - 4. default: 4
* @param {Boolean} notify set true for sound alert notification when complete. default: false
* @returns {Number} currentStep++
*/
function progressBar(currentStep, totalSteps, startTime, clearScreenEvery=1, barLength=50, style=4, notify=false) {
// style
let styleList = [
{ pending: ' ', complete: '.' },
{ pending: ' ', complete: '=' },
{ pending: '-', complete: '=' },
{ pending: '-', complete: '#' },
{ pending: '\u2591', complete: '\u2588' }
];
// counter to track progress and clear terminal every x iteration
if (currentStep % clearScreenEvery === 0) { console.clear() }
currentStep++;
let timeElapsed = (new Date().getTime() - startTime.getTime());
let progress = Math.round(currentStep * barLength * 1.0 / totalSteps);
let percent = (currentStep * 100.0 / totalSteps).toFixed(2);
let estimatedTotalTime = (timeElapsed * totalSteps * 1.0 / currentStep);
console.log(`[${styleList[style].complete.repeat(progress)}${styleList[style].pending.repeat(barLength - progress)}] ${percent} % (${(currentStep / (timeElapsed / 1000)).toFixed(2)} iter/sec)`);
console.log(`> Iteration: ${currentStep}/${totalSteps} > Completed: ${percent}% > Time Elapsed: ${timeConverter.toHumanTime(timeElapsed)}`);
console.log(`> Estimated Time to Completion: ${timeConverter.toHumanTime(estimatedTotalTime - timeElapsed)} > Estimated Total Time: ${timeConverter.toHumanTime(estimatedTotalTime)}`);
// process complete actions
if (currentStep === totalSteps) {
console.log("Task Completed!!");
if (notify) { soundAlert.notify() }
}
return currentStep;
}
module.exports.progressBar = progressBar;