mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
77 lines
3.1 KiB
JavaScript
77 lines
3.1 KiB
JavaScript
import 'jquery';
|
|
import loading from '../../components/loading/loading';
|
|
import libraryMenu from '../../scripts/libraryMenu';
|
|
import globalize from '../../scripts/globalize';
|
|
import '../../components/listview/listview.css';
|
|
import Dashboard from '../../scripts/clientUtils';
|
|
|
|
/* eslint-disable indent */
|
|
|
|
function populateLanguages(select) {
|
|
return ApiClient.getCultures().then(function(languages) {
|
|
let html = '';
|
|
html += "<option value=''></option>";
|
|
for (let i = 0, length = languages.length; i < length; i++) {
|
|
const culture = languages[i];
|
|
html += "<option value='" + culture.TwoLetterISOLanguageName + "'>" + culture.DisplayName + '</option>';
|
|
}
|
|
select.innerHTML = html;
|
|
});
|
|
}
|
|
|
|
function populateCountries(select) {
|
|
return ApiClient.getCountries().then(function(allCountries) {
|
|
let html = '';
|
|
html += "<option value=''></option>";
|
|
for (let i = 0, length = allCountries.length; i < length; i++) {
|
|
const culture = allCountries[i];
|
|
html += "<option value='" + culture.TwoLetterISORegionName + "'>" + culture.DisplayName + '</option>';
|
|
}
|
|
select.innerHTML = html;
|
|
});
|
|
}
|
|
|
|
function loadPage(page) {
|
|
const promises = [ApiClient.getServerConfiguration(), populateLanguages(page.querySelector('#selectLanguage')), populateCountries(page.querySelector('#selectCountry'))];
|
|
Promise.all(promises).then(function(responses) {
|
|
const config = responses[0];
|
|
page.querySelector('#selectLanguage').value = config.PreferredMetadataLanguage || '';
|
|
page.querySelector('#selectCountry').value = config.MetadataCountryCode || '';
|
|
loading.hide();
|
|
});
|
|
}
|
|
|
|
function onSubmit() {
|
|
const form = this;
|
|
return loading.show(), ApiClient.getServerConfiguration().then(function(config) {
|
|
config.PreferredMetadataLanguage = form.querySelector('#selectLanguage').value;
|
|
config.MetadataCountryCode = form.querySelector('#selectCountry').value;
|
|
ApiClient.updateServerConfiguration(config).then(Dashboard.processServerConfigurationUpdateResult);
|
|
}), !1;
|
|
}
|
|
|
|
function getTabs() {
|
|
return [{
|
|
href: 'library.html',
|
|
name: globalize.translate('HeaderLibraries')
|
|
}, {
|
|
href: 'librarydisplay.html',
|
|
name: globalize.translate('Display')
|
|
}, {
|
|
href: 'metadataimages.html',
|
|
name: globalize.translate('Metadata')
|
|
}, {
|
|
href: 'metadatanfo.html',
|
|
name: globalize.translate('TabNfoSettings')
|
|
}];
|
|
}
|
|
|
|
$(document).on('pageinit', '#metadataImagesConfigurationPage', function() {
|
|
$('.metadataImagesConfigurationForm').off('submit', onSubmit).on('submit', onSubmit);
|
|
}).on('pageshow', '#metadataImagesConfigurationPage', function() {
|
|
libraryMenu.setTabs('metadata', 2, getTabs);
|
|
loading.show();
|
|
loadPage(this);
|
|
});
|
|
|
|
/* eslint-enable indent */
|