mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
(function ($, document, window) {
|
|
|
|
function loadPage(page, config, liveTvInfo) {
|
|
|
|
if (liveTvInfo.IsEnabled) {
|
|
|
|
$('.liveTvSettingsForm', page).show();
|
|
$('.noLiveTvServices', page).hide();
|
|
|
|
} else {
|
|
$('.liveTvSettingsForm', page).hide();
|
|
$('.noLiveTvServices', page).show();
|
|
}
|
|
|
|
$('#selectGuideDays', page).val(config.LiveTvOptions.GuideDays || '').selectmenu('refresh');
|
|
|
|
var serviceOptions = liveTvInfo.Services.map(function (s) {
|
|
return '<option value="' + s.Name + '">' + s.Name + '</option>';
|
|
});
|
|
|
|
$('#selectActiveService', page).html(serviceOptions).selectmenu('refresh');
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
$(document).on('pageshow', "#liveTvSettingsPage", function () {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var page = this;
|
|
|
|
var promise1 = ApiClient.getServerConfiguration();
|
|
|
|
var promise2 = ApiClient.getLiveTvInfo();
|
|
|
|
$.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);
|