mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
73 lines
1.7 KiB
JavaScript
73 lines
1.7 KiB
JavaScript
(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');
|
|
|
|
});
|
|
});
|
|
|
|
}
|
|
|
|
$(document).on('pagebeforeshow', "#wizardStartPage", function () {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
var page = this;
|
|
|
|
ApiClient.getPublicUsers().done(function (u) {
|
|
|
|
var user = u.filter(function (i) {
|
|
return i.Configuration.IsAdministrator;
|
|
})[0];
|
|
|
|
ApiClient.authenticateUserByName(user.Name, '').done(function (result) {
|
|
|
|
user = result.User;
|
|
|
|
Dashboard.setCurrentUser(user.Id, result.AccessToken);
|
|
|
|
var promise1 = ApiClient.getServerConfiguration();
|
|
|
|
var promise2 = ApiClient.getJSON(ApiClient.getUrl("Localization/Options"));
|
|
|
|
$.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); |