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

59 lines
1.3 KiB
JavaScript
Raw Normal View History

2014-04-26 21:35:04 -07:00
(function (window, $) {
function loadPage(page, config, languageOptions) {
$('#selectLocalizationLanguage', page).html(languageOptions.map(function (l) {
return '<option value="' + l.Value + '">' + l.Name + '</option>';
})).val(config.UICulture).selectmenu('refresh');
Dashboard.hideLoadingMsg();
}
function save(page) {
Dashboard.showLoadingMsg();
ApiClient.getServerConfiguration().done(function (config) {
config.UICulture = $('#selectLocalizationLanguage', page).val();
ApiClient.updateServerConfiguration(config).done(function (result) {
Dashboard.navigate('wizarduser.html');
});
});
2013-02-20 18:33:05 -07:00
}
2014-04-26 21:35:04 -07:00
$(document).on('pageshow', "#wizardStartPage", function () {
Dashboard.showLoadingMsg();
var page = this;
var promise1 = ApiClient.getServerConfiguration();
2014-07-01 22:16:59 -07:00
var promise2 = ApiClient.getJSON(ApiClient.getUrl("Localization/Options"));
2014-04-26 21:35:04 -07:00
$.when(promise1, promise2).done(function (response1, response2) {
loadPage(page, response1[0], response2[0]);
});
});
window.WizardStartPage = {
onSubmit: function () {
save($(this).parents('.page'));
return false;
}
};
})(window, jQuery);