1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

added live tv settings page

This commit is contained in:
Luke Pulverenti 2014-01-12 11:55:38 -05:00
parent e36d514368
commit 8d9823e7a9
3 changed files with 124 additions and 0 deletions

View file

@ -0,0 +1,59 @@
(function ($, document, window) {
function loadPage(page, config, tvServices) {
if (tvServices.length) {
$('.liveTvSettingsForm', page).show();
$('.noLiveTvServices', page).hide();
} else {
$('.liveTvSettingsForm', page).hide();
$('.noLiveTvServices', page).show();
}
$('#selectGuideDays', page).val(config.LiveTvOptions.GuideDays || '').selectmenu('refresh');
Dashboard.hideLoadingMsg();
}
$(document).on('pageshow', "#liveTvSettingsPage", function () {
Dashboard.showLoadingMsg();
var page = this;
var promise1 = ApiClient.getServerConfiguration();
var promise2 = ApiClient.getLiveTvServices();
$.when(promise1, promise2).done(function (response1, response2) {
loadPage(page, response1[0], response2[0]);
});
});
window.LiveTvSettingsPage = {
onSubmit: function() {
Dashboard.showLoadingMsg();
var form = this;
ApiClient.getServerConfiguration().done(function (config) {
config.LiveTvOptions.GuideDays = $('#selectGuideDays', form).val() || null;
ApiClient.updateServerConfiguration(config).done(Dashboard.processServerConfigurationUpdateResult);
});
// Disable default form submission
return false;
}
};
})(jQuery, document, window);