mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
49 lines
1.7 KiB
JavaScript
49 lines
1.7 KiB
JavaScript
import $ from 'jQuery';
|
|
import loading from 'loading';
|
|
import 'emby-button';
|
|
import 'emby-select';
|
|
|
|
function loadPage(page, config, languageOptions) {
|
|
$('#selectLocalizationLanguage', page).html(languageOptions.map(function (l) {
|
|
return '<option value="' + l.Value + '">' + l.Name + '</option>';
|
|
})).val(config.UICulture);
|
|
loading.hide();
|
|
}
|
|
|
|
function save(page) {
|
|
loading.show();
|
|
const apiClient = ApiClient;
|
|
apiClient.getJSON(apiClient.getUrl('Startup/Configuration')).then(function (config) {
|
|
config.UICulture = $('#selectLocalizationLanguage', page).val();
|
|
apiClient.ajax({
|
|
type: 'POST',
|
|
data: config,
|
|
url: apiClient.getUrl('Startup/Configuration')
|
|
}).then(function () {
|
|
Dashboard.navigate('wizarduser.html');
|
|
});
|
|
});
|
|
}
|
|
|
|
function onSubmit() {
|
|
save($(this).parents('.page'));
|
|
return false;
|
|
}
|
|
|
|
export default function (view, params) {
|
|
$('.wizardStartForm', view).on('submit', onSubmit);
|
|
view.addEventListener('viewshow', function () {
|
|
document.querySelector('.skinHeader').classList.add('noHomeButtonHeader');
|
|
loading.show();
|
|
const page = this;
|
|
const apiClient = ApiClient;
|
|
const promise1 = apiClient.getJSON(apiClient.getUrl('Startup/Configuration'));
|
|
const promise2 = apiClient.getJSON(apiClient.getUrl('Localization/Options'));
|
|
Promise.all([promise1, promise2]).then(function (responses) {
|
|
loadPage(page, responses[0], responses[1]);
|
|
});
|
|
});
|
|
view.addEventListener('viewhide', function () {
|
|
document.querySelector('.skinHeader').classList.remove('noHomeButtonHeader');
|
|
});
|
|
}
|