blob: acfb78de8cd96599889eb8adb284dca9c8b20fa0 (
plain) (
blame)
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
|
$(document).ready(function() {
setInterval(get_progress, 5000);
function get_progress(){
$.get('import_progress', function(data) {
update_progress(data);
});
}
function update_progress(data){
if (typeof data.cprogress == 'number') {
$('#cprogress-label').html(data.cprogress + '%');
$('#cprogress-bar').css('width', data.cprogress + '%');
if (data.cprogress == 100) {
$('#cprogress-resume').addClass('d-none');
$('#cprogress-complete').removeClass('d-none');
$('#cprogress-bar').removeClass('progress-bar-animated');
}
else if (data.cprogress < 100) {
$('#cprogress-resume').removeClass('d-none');
$('#cprogress-complete').addClass('d-none');
$('#cprogress-bar').addClass('progress-bar-animated');
}
}
else {
$('#cprogress-label').html(data.cprogress);
$('#cprogress-bar').css('width', '0%');
}
if (typeof data.fprogress == 'number') {
$('#fprogress-label').html(data.fprogress + '%');
$('#fprogress-bar').css('width', data.fprogress + '%');
if (data.fprogress == 100) {
$('#fprogress-resume').addClass('d-none');
$('#fprogress-complete').removeClass('d-none');
$('#fprogress-bar').removeClass('progress-bar-animated');
}
else if (data.fprogress < 100) {
$('#fprogress-resume').removeClass('d-none');
$('#fprogress-complete').addClass('d-none');
$('#fprogress-bar').addClass('progress-bar-animated');
}
}
else {
$('#fprogress-label').html(data.fprogress);
$('#fprogress-bar').css('width', '0%');
}
}
});
|