forked from docsifyjs/docsify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogressbar.js
More file actions
43 lines (35 loc) · 795 Bytes
/
Copy pathprogressbar.js
File metadata and controls
43 lines (35 loc) · 795 Bytes
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
import * as dom from '../util/dom';
let barEl;
let timeId;
/**
* Init progress component
*/
function init() {
const div = dom.create('div');
div.classList.add('progress');
dom.appendTo(dom.body, div);
barEl = div;
}
/**
* Render progress bar
*/
export default function ({ loaded, total, step }) {
let num;
!barEl && init();
if (step) {
num = parseInt(barEl.style.width || 0, 10) + step;
num = num > 80 ? 80 : num;
} else {
num = Math.floor((loaded / total) * 100);
}
barEl.style.opacity = 1;
barEl.style.width = num >= 95 ? '100%' : num + '%';
if (num >= 95) {
clearTimeout(timeId);
// eslint-disable-next-line no-unused-vars
timeId = setTimeout(_ => {
barEl.style.opacity = 0;
barEl.style.width = '0%';
}, 200);
}
}