mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
102 lines
3.2 KiB
JavaScript
102 lines
3.2 KiB
JavaScript
(function ($, document, window) {
|
|
|
|
function loadPage(page, config, systemInfo) {
|
|
|
|
var os = systemInfo.OperatingSystem.toLowerCase();
|
|
|
|
if (os.indexOf('windows') != -1) {
|
|
$('#windowsStartupDescription', page).show();
|
|
} else {
|
|
$('#windowsStartupDescription', page).hide();
|
|
}
|
|
|
|
if (systemInfo.SupportsAutoRunAtStartup) {
|
|
$('#fldRunAtStartup', page).show();
|
|
} else {
|
|
$('#fldRunAtStartup', page).hide();
|
|
}
|
|
$('#chkEnableAutomaticRestart', page).checked(config.EnableAutomaticRestart).checkboxradio("refresh");
|
|
|
|
if (systemInfo.CanSelfRestart) {
|
|
$('#fldEnableAutomaticRestart', page).show();
|
|
} else {
|
|
$('#fldEnableAutomaticRestart', page).hide();
|
|
}
|
|
|
|
$('#selectAutomaticUpdateLevel', page).val(config.SystemUpdateLevel).selectmenu('refresh').trigger('change');
|
|
$('#chkDebugLog', page).checked(config.EnableDebugLevelLogging).checkboxradio("refresh");
|
|
|
|
$('#chkRunAtStartup', page).checked(config.RunAtStartup).checkboxradio("refresh");
|
|
|
|
$('#txtMinResumePct', page).val(config.MinResumePct);
|
|
$('#txtMaxResumePct', page).val(config.MaxResumePct);
|
|
$('#txtMinResumeDuration', page).val(config.MinResumeDurationSeconds);
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
$(document).on('pageshow', "#advancedConfigurationPage", function () {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var page = this;
|
|
|
|
var promise1 = ApiClient.getServerConfiguration();
|
|
|
|
var promise2 = ApiClient.getSystemInfo();
|
|
|
|
$.when(promise1, promise2).done(function (response1, response2) {
|
|
|
|
loadPage(page, response1[0], response2[0]);
|
|
|
|
});
|
|
|
|
}).on('pageinit', "#advancedConfigurationPage", function () {
|
|
|
|
var page = this;
|
|
|
|
$('#selectAutomaticUpdateLevel', page).on('change', function () {
|
|
|
|
if (this.value == "Dev") {
|
|
$('#devBuildWarning', page).show();
|
|
} else {
|
|
$('#devBuildWarning', page).hide();
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
function advancedConfigurationPage() {
|
|
|
|
var self = this;
|
|
|
|
self.onSubmit = function () {
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var form = this;
|
|
|
|
ApiClient.getServerConfiguration().done(function (config) {
|
|
|
|
config.EnableDebugLevelLogging = $('#chkDebugLog', form).checked();
|
|
|
|
config.RunAtStartup = $('#chkRunAtStartup', form).checked();
|
|
config.SystemUpdateLevel = $('#selectAutomaticUpdateLevel', form).val();
|
|
config.EnableAutomaticRestart = $('#chkEnableAutomaticRestart', form).checked();
|
|
|
|
config.MinResumePct = $('#txtMinResumePct', form).val();
|
|
config.MaxResumePct = $('#txtMaxResumePct', form).val();
|
|
config.MinResumeDurationSeconds = $('#txtMinResumeDuration', form).val();
|
|
|
|
ApiClient.updateServerConfiguration(config).done(Dashboard.processServerConfigurationUpdateResult);
|
|
});
|
|
|
|
// Disable default form submission
|
|
return false;
|
|
};
|
|
}
|
|
|
|
window.AdvancedConfigurationPage = new advancedConfigurationPage();
|
|
|
|
})(jQuery, document, window);
|