var DashboardPage = { onPageShow: function () { Dashboard.showLoadingMsg(); DashboardPage.pollForInfo(); DashboardPage.startInterval(); $(document).on("websocketmessage", DashboardPage.onWebSocketMessage).on("websocketopen", DashboardPage.onWebSocketConnectionChange).on("websocketerror", DashboardPage.onWebSocketConnectionChange).on("websocketclose", DashboardPage.onWebSocketConnectionChange); DashboardPage.lastAppUpdateCheck = null; DashboardPage.lastPluginUpdateCheck = null; }, onPageHide: function () { $(document).off("websocketmessage", DashboardPage.onWebSocketMessage).off("websocketopen", DashboardPage.onWebSocketConnectionChange).off("websocketerror", DashboardPage.onWebSocketConnectionChange).off("websocketclose", DashboardPage.onWebSocketConnectionChange); DashboardPage.stopInterval(); }, startInterval: function () { if (Dashboard.isWebSocketOpen()) { Dashboard.sendWebSocketMessage("DashboardInfoStart", "0,1500"); } }, stopInterval: function () { if (Dashboard.isWebSocketOpen()) { Dashboard.sendWebSocketMessage("DashboardInfoStop"); } }, onWebSocketMessage: function (e, msg) { if (msg.MessageType == "DashboardInfo") { DashboardPage.renderInfo(msg.Data); } }, onWebSocketConnectionChange: function () { DashboardPage.stopInterval(); DashboardPage.startInterval(); }, pollForInfo: function () { $.getJSON("dashboardInfo").done(DashboardPage.renderInfo); }, renderInfo: function (dashboardInfo) { DashboardPage.lastDashboardInfo = dashboardInfo; DashboardPage.renderRunningTasks(dashboardInfo); DashboardPage.renderSystemInfo(dashboardInfo); DashboardPage.renderActiveConnections(dashboardInfo); Dashboard.hideLoadingMsg(); }, renderActiveConnections: function (dashboardInfo) { var page = $.mobile.activePage; var html = ''; if (!dashboardInfo.ActiveConnections.length) { html += '
There are no users currently connected.
'; $('#divConnections', page).html(html).trigger('create'); return; } html += '| '; html += DashboardPage.getClientType(connection); html += ' | '; html += ''; html += user.Name; html += ' | '; html += ''; html += connection.DeviceName; html += ' | '; html += ''; html += DashboardPage.getNowPlayingImage(connection.NowPlayingItem); html += ' | '; html += ''; html += DashboardPage.getNowPlayingText(connection, connection.NowPlayingItem); html += ' | '; html += '
";
}
if (connection.ClientType == "Pc") {
return "
";
}
if (connection.ClientType == "Android") {
return "
";
}
if (connection.ClientType == "Ios") {
return "
";
}
if (connection.ClientType == "WindowsRT") {
return "
";
}
if (connection.ClientType == "WindowsPhone") {
return "
";
}
return connection.ClientType;
},
getNowPlayingImage: function (item) {
if (item) {
if (item.BackdropImageTag) {
var url = ApiClient.getImageUrl(item.Id, {
type: "Backdrop",
height: 100,
tag: item.BackdropImageTag
});
return "No tasks are currently running.
'; } for (var i = 0, length = dashboardInfo.RunningTasks.length; i < length; i++) { var task = dashboardInfo.RunningTasks[i]; html += ''; html += task.Name; if (task.State == "Running") { var progress = Math.round(task.CurrentProgressPercentage || 0); html += ' - ' + progress + '%'; html += ''; } else if (task.State == "Cancelling") { html += ' - Stopping'; } html += '
'; } $('#divRunningTasks', page).html(html).trigger('create'); }, renderSystemInfo: function (dashboardInfo) { Dashboard.updateSystemInfo(dashboardInfo.SystemInfo); var page = $.mobile.activePage; $('#appVersionNumber', page).html(dashboardInfo.SystemInfo.Version); if (dashboardInfo.RunningTasks.filter(function (task) { return task.Id == dashboardInfo.ApplicationUpdateTaskId; }).length) { $('#btnUpdateApplication', page).button('disable'); } else { $('#btnUpdateApplication', page).button('enable'); } DashboardPage.renderApplicationUpdateInfo(dashboardInfo); DashboardPage.renderPluginUpdateInfo(dashboardInfo); }, renderApplicationUpdateInfo: function (dashboardInfo) { var page = $.mobile.activePage; if (dashboardInfo.SystemInfo.IsNetworkDeployed && !dashboardInfo.SystemInfo.HasPendingRestart) { // Only check once every 10 mins if (DashboardPage.lastAppUpdateCheck && (new Date().getTime() - DashboardPage.lastAppUpdateCheck) < 600000) { return; } DashboardPage.lastAppUpdateCheck = new Date().getTime(); ApiClient.getAvailableApplicationUpdate().done(function (packageInfo) { var version = packageInfo.versions[0]; if (!version) { $('#pUpToDate', page).show(); $('#pUpdateNow', page).hide(); } else { $('#pUpToDate', page).hide(); $('#pUpdateNow', page).show(); $('#newVersionNumber', page).html("Version " + version.versionStr + " is now available for download."); } }).fail(function () { Dashboard.showFooterNotification({ html: '
There was an error connecting to the remote Media Browser repository.', id: "MB3ConnectionError" });
});
} else {
if (dashboardInfo.SystemInfo.HasPendingRestart) {
$('#pUpToDate', page).hide();
} else {
$('#pUpToDate', page).show();
}
$('#pUpdateNow', page).hide();
}
},
renderPluginUpdateInfo: function (dashboardInfo) {
// Only check once every 10 mins
if (DashboardPage.lastPluginUpdateCheck && (new Date().getTime() - DashboardPage.lastPluginUpdateCheck) < 600000) {
return;
}
DashboardPage.lastPluginUpdateCheck = new Date().getTime();
var page = $.mobile.activePage;
ApiClient.getAvailablePluginUpdates().done(function (updates) {
if (updates.length) {
$('#collapsiblePluginUpdates', page).show();
} else {
$('#collapsiblePluginUpdates', page).hide();
return;
}
var html = '';
for (var i = 0, length = updates.length; i < length; i++) {
var update = updates[i];
html += 'A new version of ' + update.name + ' is available!
'; html += ''; } $('#pPluginUpdates', page).html(html).trigger('create'); }).fail(function () { Dashboard.showFooterNotification({ html: '
There was an error connecting to the remote Media Browser repository.', id: "MB3ConnectionError" });
});
},
installPluginUpdate: function (button) {
$(button).button('disable');
var name = button.getAttribute('data-name');
var version = button.getAttribute('data-version');
var classification = button.getAttribute('data-classification');
Dashboard.showLoadingMsg();
ApiClient.installPlugin(name, classification, version).done(function () {
Dashboard.hideLoadingMsg();
});
},
updateApplication: function () {
var page = $.mobile.activePage;
$('#btnUpdateApplication', page).button('disable');
Dashboard.showLoadingMsg();
ApiClient.startScheduledTask(DashboardPage.lastDashboardInfo.ApplicationUpdateTaskId).done(function () {
DashboardPage.pollForInfo();
Dashboard.hideLoadingMsg();
});
},
stopTask: function (id) {
ApiClient.stopScheduledTask(id).done(function () {
DashboardPage.pollForInfo();
});
}
};
$(document).on('pageshow', "#dashboardPage", DashboardPage.onPageShow).on('pagehide', "#dashboardPage", DashboardPage.onPageHide);