TaskType check
This commit is contained in:
parent
36f7cbd3e9
commit
b6f8c8aab5
@ -366,12 +366,14 @@ function ShowTasksQueue(){
|
|||||||
.then(json => {
|
.then(json => {
|
||||||
tagTasksRunning.innerText = json.length;
|
tagTasksRunning.innerText = json.length;
|
||||||
json.forEach(task => {
|
json.forEach(task => {
|
||||||
|
if(task.task == 2 || task.task == 4) {
|
||||||
downloadTasksOutput.appendChild(CreateProgressChild(task));
|
downloadTasksOutput.appendChild(CreateProgressChild(task));
|
||||||
document.querySelector(`#progress${task.taskId.replaceAll('=', '')}`).value = task.progress;
|
document.querySelector(`#progress${task.taskId.replaceAll('=', '')}`).value = task.progress;
|
||||||
var finishedHours = task.executionApproximatelyRemaining.split(':')[0];
|
var finishedHours = task.executionApproximatelyRemaining.split(':')[0];
|
||||||
var finishedMinutes = task.executionApproximatelyRemaining.split(':')[1];
|
var finishedMinutes = task.executionApproximatelyRemaining.split(':')[1];
|
||||||
var finishedSeconds = task.executionApproximatelyRemaining.split(':')[2].split('.')[0];
|
var finishedSeconds = task.executionApproximatelyRemaining.split(':')[2].split('.')[0];
|
||||||
document.querySelector(`#progressStr${task.taskId.replaceAll('=', '')}`).innerText = `${finishedHours}:${finishedMinutes}:${finishedSeconds}`;
|
document.querySelector(`#progressStr${task.taskId.replaceAll('=', '')}`).innerText = `${finishedHours}:${finishedMinutes}:${finishedSeconds}`;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -487,11 +489,13 @@ setInterval(() => {
|
|||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
GetRunningTasks().then((json) => {
|
GetRunningTasks().then((json) => {
|
||||||
json.forEach(task => {
|
json.forEach(task => {
|
||||||
|
if(task.task == 2 || task.task == 4){
|
||||||
document.querySelector(`#progress${task.taskId.replaceAll('=','')}`).value = task.progress;
|
document.querySelector(`#progress${task.taskId.replaceAll('=','')}`).value = task.progress;
|
||||||
var finishedHours = task.executionApproximatelyRemaining.split(':')[0];
|
var finishedHours = task.executionApproximatelyRemaining.split(':')[0];
|
||||||
var finishedMinutes = task.executionApproximatelyRemaining.split(':')[1];
|
var finishedMinutes = task.executionApproximatelyRemaining.split(':')[1];
|
||||||
var finishedSeconds = task.executionApproximatelyRemaining.split(':')[2].split('.')[0];
|
var finishedSeconds = task.executionApproximatelyRemaining.split(':')[2].split('.')[0];
|
||||||
document.querySelector(`#progressStr${task.taskId.replaceAll('=','')}`).innerText = `${finishedHours}:${finishedMinutes}:${finishedSeconds}`;
|
document.querySelector(`#progressStr${task.taskId.replaceAll('=','')}`).innerText = `${finishedHours}:${finishedMinutes}:${finishedSeconds}`;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},500);
|
},500);
|
Loading…
Reference in New Issue
Block a user