diff --git a/Website/index.html b/Website/index.html index cbe69c1..244ebcd 100644 --- a/Website/index.html +++ b/Website/index.html @@ -112,11 +112,11 @@ diff --git a/Website/interaction.js b/Website/interaction.js index 6cc3604..5a29c5e 100644 --- a/Website/interaction.js +++ b/Website/interaction.js @@ -39,6 +39,8 @@ const newMangaPopup = document.querySelector("#newMangaPopup"); const newMangaConnector = document.querySelector("#newMangaConnector"); const newMangaTitle = document.querySelector("#newMangaTitle"); const newMangaResult = document.querySelector("#newMangaResult"); +const jobsRunningTag = document.querySelector("#jobsRunningTag"); +const jobsQueuedTag = document.querySelector("#jobsQueuedTag"); function Setup(){ GetAvailableNotificationConnectors().then((json) => { @@ -343,7 +345,7 @@ setInterval(() => { function UpdateJobs(){ GetMonitorJobs().then((json) => { ResetContent(); - console.log(json); + //console.log(json); json.forEach(job => { var mangaView = CreateManga(job.manga, job.mangaConnector.name); mangaView.addEventListener("click", (event) => { @@ -352,4 +354,16 @@ function UpdateJobs(){ tasksContent.appendChild(mangaView); }); }); + + GetRunningJobs().then((json) => { + console.log("Running"); + console.log(json); + jobsRunningTag.innerText = json.length; + }); + + GetWaitingJobs().then((json) => { + console.log("Waiting"); + console.log(json); + jobsQueuedTag.innerText = json.length; + }); }