jellyfin-web/dashboard-ui/scripts/livetvstatus.js

169 lines
4.5 KiB
JavaScript
Raw Normal View History

2014-01-22 13:46:01 -07:00
(function ($, document, window) {
2014-01-23 15:15:15 -07:00
function resetTuner(page, id) {
var message = 'Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.';
Dashboard.confirm(message, "Reset Tuner", function (confirmResult) {
if (confirmResult) {
Dashboard.showLoadingMsg();
ApiClient.resetLiveTvTuner(id).done(function () {
Dashboard.hideLoadingMsg();
reload(page);
});
}
});
}
function renderTuners(page, tuners) {
var html = '';
for (var i = 0, length = tuners.length; i < length; i++) {
var tuner = tuners[i];
html += '<tr>';
html += '<td>';
html += tuner.Name;
html += '</td>';
html += '<td>';
html += tuner.SourceType;
html += '</td>';
html += '<td>';
2014-01-24 11:09:50 -07:00
if (tuner.Status == 'RecordingTv') {
if (tuner.ChannelName) {
html += '<a href="livetvchannel.html?id=' + tuner.ChannelId + '">Recording ' + tuner.ChannelName + '</a>';
} else {
html += 'Recording';
}
}
else if (tuner.Status == 'LiveTv') {
if (tuner.ChannelName) {
html += '<a href="livetvchannel.html?id=' + tuner.ChannelId + '">Watching ' + tuner.ChannelName + '</a>';
} else {
html += 'Watching';
}
}
else {
html += tuner.Status;
}
2014-01-23 15:15:15 -07:00
html += '</td>';
html += '<td>';
if (tuner.ProgramName) {
html += tuner.ProgramName;
}
html += '</td>';
html += '<td>';
html += tuner.Clients.join('<br/>');
html += '</td>';
html += '<td>';
html += '<button data-tunerid="' + tuner.Id + '" type="button" data-inline="true" data-icon="refresh" data-mini="true" data-iconpos="notext" class="btnResetTuner organizerButton" title="Reset Tuner">Reset</button>';
html += '</td>';
html += '</tr>';
}
var elem = $('.tunersResultBody', page).html(html).parents('.tblTuners').table("refresh").trigger('create');
$('.btnResetTuner', elem).on('click', function () {
var id = this.getAttribute('data-tunerid');
resetTuner(page, id);
});
}
2014-01-22 13:46:01 -07:00
function loadPage(page, liveTvInfo) {
if (liveTvInfo.IsEnabled) {
$('.liveTvStatusContent', page).show();
$('.noLiveTvServices', page).hide();
} else {
$('.liveTvStatusContent', page).hide();
$('.noLiveTvServices', page).show();
}
var service = liveTvInfo.Services.filter(function (s) {
return s.Name == liveTvInfo.ActiveServiceName;
})[0] || {};
var serviceUrl = service.HomePageUrl || '#';
$('#activeServiceName', page).html('<a href="' + serviceUrl + '" target="_blank">' + liveTvInfo.ActiveServiceName + '</a>').trigger('create');
var versionHtml = service.Version || 'Unknown';
if (service.HasUpdateAvailable) {
versionHtml += ' <a style="margin-left: .25em;" href="' + serviceUrl + '" target="_blank">(Update available)</a>';
}
else {
versionHtml += '<img src="css/images/checkmarkgreen.png" style="height: 17px; margin-left: 10px; margin-right: 0; position: relative; top: 4px;" /> Up to date!';
}
2014-01-23 15:15:15 -07:00
2014-01-22 13:46:01 -07:00
$('#activeServiceVersion', page).html(versionHtml);
var status = liveTvInfo.Status;
if (liveTvInfo.Status == 'Ok') {
status = '<span style="color:green;">' + status + '</span>';
} else {
if (liveTvInfo.StatusMessage) {
status += ' (' + liveTvInfo.StatusMessage + ')';
}
status = '<span style="color:red;">' + status + '</span>';
}
$('#activeServiceStatus', page).html(status);
2014-01-23 15:15:15 -07:00
renderTuners(page, service.Tuners || []);
2014-01-22 13:46:01 -07:00
Dashboard.hideLoadingMsg();
}
2014-01-23 15:15:15 -07:00
function reload(page) {
2014-01-22 13:46:01 -07:00
Dashboard.showLoadingMsg();
ApiClient.getLiveTvInfo().done(function (liveTvInfo) {
loadPage(page, liveTvInfo);
});
2014-01-23 15:15:15 -07:00
}
$(document).on('pageshow', "#liveTvStatusPage", function () {
var page = this;
reload(page);
2014-01-22 13:46:01 -07:00
});
})(jQuery, document, window);