define(["jQuery", "loading", "events", "globalize", "serverNotifications", "humanedate", "listViewStyle", "emby-button"], function($, loading, events, globalize, serverNotifications) { "use strict"; function reloadList(page) { ApiClient.getScheduledTasks({ isHidden: false }).then(function(tasks) { populateList(page, tasks); loading.hide(); }) } function populateList(page, tasks) { tasks = tasks.sort(function(a, b) { a = a.Category + " " + a.Name; b = b.Category + " " + b.Name; return a == b ? 0 : a < b ? -1 : 1; }); var currentCategory; var html = ""; for (var i = 0; i < tasks.length; i++) { var task = tasks[i]; if (task.Category != currentCategory) { currentCategory = task.Category; if (currentCategory) { html += ""; html += ""; } html += '
'; html += '
'; html += '

'; html += currentCategory; html += "

"; if (i === 0) { html += '' + globalize.translate("Help") + ""; } html += "
"; html += '
'; } html += '
'; html += ""; html += 'schedule'; html += ""; html += '"; if (task.State === "Running") { html += ''; } else { html += ''; } html += "
"; } if (tasks.length) { html += "
"; html += "
"; } page.querySelector(".divScheduledTasks").innerHTML = html; } function humane_elapsed(firstDateStr, secondDateStr) { var dt1 = new Date(firstDateStr), dt2 = new Date(secondDateStr), seconds = (dt2.getTime() - dt1.getTime()) / 1e3, numdays = Math.floor(seconds % 31536e3 / 86400), numhours = Math.floor(seconds % 31536e3 % 86400 / 3600), numminutes = Math.floor(seconds % 31536e3 % 86400 % 3600 / 60), numseconds = Math.round(seconds % 31536e3 % 86400 % 3600 % 60), elapsedStr = ""; return elapsedStr += 1 == numdays ? numdays + " day " : "", elapsedStr += numdays > 1 ? numdays + " days " : "", elapsedStr += 1 == numhours ? numhours + " hour " : "", elapsedStr += numhours > 1 ? numhours + " hours " : "", elapsedStr += 1 == numminutes ? numminutes + " minute " : "", elapsedStr += numminutes > 1 ? numminutes + " minutes " : "", elapsedStr += elapsedStr.length > 0 ? "and " : "", elapsedStr += 1 == numseconds ? numseconds + " second" : "", elapsedStr += 0 == numseconds || numseconds > 1 ? numseconds + " seconds" : "" } function getTaskProgressHtml(task) { var html = ""; if (task.State === "Idle") { if (task.LastExecutionResult) { html += globalize.translate("LabelScheduledTaskLastRan").replace("{0}", humane_date(task.LastExecutionResult.EndTimeUtc)).replace("{1}", humane_elapsed(task.LastExecutionResult.StartTimeUtc, task.LastExecutionResult.EndTimeUtc)); if (task.LastExecutionResult.Status === "Failed") { html += " (" + globalize.translate("LabelFailed") + ")"; } else if (task.LastExecutionResult.Status === "Cancelled") { html += " (" + globalize.translate("LabelCancelled") + ")"; } else if (task.LastExecutionResult.Status === "Aborted") { html += " " + globalize.translate("LabelAbortedByServerShutdown") + ""; } } } else if (task.State === "Running") { var progress = (task.CurrentProgressPercentage || 0).toFixed(1); html += '
'; html += '
'; html += '
'; html += "
"; html += "
"; html += "" + progress + "%"; html += "
"; } else { html += "" + globalize.translate("LabelStopping") + ""; } return html; } function updateTaskButton(elem, state) { if (state === "Running") { elem.classList.remove("btnStartTask"); elem.classList.add("btnStopTask"); elem.classList.remove("hide"); elem.querySelector("i").innerHTML = "stop"; elem.title = globalize.translate("ButtonStop"); } else { elem.classList.add("btnStartTask"); elem.classList.remove("btnStopTask"); elem.classList.add("hide"); elem.querySelector("i").innerHTML = "play_arrow"; elem.title = globalize.translate("ButtonStart"); } $(elem).parents(".listItem")[0].setAttribute("data-status", state); } return function(view, params) { function updateTasks(tasks) { for (var i = 0; i < tasks.length; i++) { var task = tasks[i]; view.querySelector("#taskProgress" + task.Id).innerHTML = getTaskProgressHtml(task); updateTaskButton(view.querySelector("#btnTask" + task.Id), task.State); } } function onPollIntervalFired() { if (!ApiClient.isMessageChannelOpen()) { reloadList(view); } } function onScheduledTasksUpdate(e, apiClient, info) { if (apiClient.serverId() === serverId) { updateTasks(info); } } function startInterval() { ApiClient.sendMessage("ScheduledTasksInfoStart", "1000,1000"); pollInterval && clearInterval(pollInterval); pollInterval = setInterval(onPollIntervalFired, 1e4); } function stopInterval() { ApiClient.sendMessage("ScheduledTasksInfoStop"); pollInterval && clearInterval(pollInterval); } var pollInterval, serverId = ApiClient.serverId(); $(".divScheduledTasks", view).on("click", ".btnStartTask", function() { var button = this; var id = button.getAttribute("data-taskid"); ApiClient.startScheduledTask(id).then(function() { updateTaskButton(button, "Running"); reloadList(view); }) }); $(".divScheduledTasks", view).on("click", ".btnStopTask", function() { var button = this; var id = button.getAttribute("data-taskid"); ApiClient.stopScheduledTask(id).then(function() { updateTaskButton(button, ""); reloadList(view); }) }); view.addEventListener("viewbeforehide", function() { events.off(serverNotifications, "ScheduledTasksInfo", onScheduledTasksUpdate); stopInterval(); }); view.addEventListener("viewshow", function() { loading.show(); startInterval(); reloadList(view); events.on(serverNotifications, "ScheduledTasksInfo", onScheduledTasksUpdate); }); } });