mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
136 lines
5.3 KiB
JavaScript
136 lines
5.3 KiB
JavaScript
(function ($, window, document) {
|
|
|
|
function loadForm(page, userId, displayPreferences) {
|
|
|
|
$('#selectMaxBitrate', page).val(AppSettings.maxStreamingBitrate()).selectmenu("refresh");
|
|
$('#selectMaxChromecastBitrate', page).val(AppSettings.maxChromecastBitrate()).selectmenu("refresh");
|
|
|
|
$('#chkExternalVideoPlayer', page).checked(AppSettings.enableExternalPlayers()).checkboxradio("refresh");
|
|
|
|
$('#selectThemeSong', page).val(appStorage.getItem('enableThemeSongs-' + userId) || '').selectmenu("refresh");
|
|
$('#selectBackdrop', page).val(appStorage.getItem('enableBackdrops-' + userId) || '').selectmenu("refresh");
|
|
|
|
$('#selectHomeSection1', page).val(displayPreferences.CustomPrefs.home0 || '').selectmenu("refresh");
|
|
$('#selectHomeSection2', page).val(displayPreferences.CustomPrefs.home1 || '').selectmenu("refresh");
|
|
$('#selectHomeSection3', page).val(displayPreferences.CustomPrefs.home2 || '').selectmenu("refresh");
|
|
$('#selectHomeSection4', page).val(displayPreferences.CustomPrefs.home3 || '').selectmenu("refresh");
|
|
|
|
$('#selectEnableItemPreviews', page).val(AppSettings.enableItemPreviews().toString().toLowerCase()).selectmenu("refresh");
|
|
|
|
$('#chkEnableLibraryTileNames', page).checked(displayPreferences.CustomPrefs.enableLibraryTileNames != '0').checkboxradio("refresh");
|
|
$('#chkEnableFullScreen', page).checked(AppSettings.enableFullScreen()).checkboxradio("refresh");
|
|
|
|
$('#chkEnableChromecastAc3', page).checked(AppSettings.enableChromecastAc3()).checkboxradio("refresh");
|
|
|
|
$('#txtSyncPath', page).val(AppSettings.syncPath());
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
function saveUser(page, userId, displayPreferences) {
|
|
|
|
appStorage.setItem('enableThemeSongs-' + userId, $('#selectThemeSong', page).val());
|
|
appStorage.setItem('enableBackdrops-' + userId, $('#selectBackdrop', page).val());
|
|
|
|
displayPreferences.CustomPrefs.home0 = $('#selectHomeSection1', page).val();
|
|
displayPreferences.CustomPrefs.home1 = $('#selectHomeSection2', page).val();
|
|
displayPreferences.CustomPrefs.home2 = $('#selectHomeSection3', page).val();
|
|
displayPreferences.CustomPrefs.home3 = $('#selectHomeSection4', page).val();
|
|
displayPreferences.CustomPrefs.enableLibraryTileNames = $('#chkEnableLibraryTileNames', page).checked() ? '1' : '0';
|
|
|
|
ApiClient.updateDisplayPreferences('home', displayPreferences, userId, 'webclient').done(function () {
|
|
|
|
Dashboard.alert(Globalize.translate('SettingsSaved'));
|
|
|
|
});
|
|
}
|
|
|
|
function onSubmit() {
|
|
|
|
var page = $(this).parents('.page');
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
AppSettings.enableExternalPlayers($('#chkExternalVideoPlayer', page).checked());
|
|
|
|
AppSettings.maxStreamingBitrate($('#selectMaxBitrate', page).val());
|
|
AppSettings.maxChromecastBitrate($('#selectMaxChromecastBitrate', page).val());
|
|
|
|
AppSettings.enableItemPreviews($('#selectEnableItemPreviews', page).val() == 'true');
|
|
AppSettings.enableFullScreen($('#chkEnableFullScreen', page).checked());
|
|
|
|
AppSettings.enableChromecastAc3($('#chkEnableChromecastAc3', page).checked());
|
|
|
|
AppSettings.syncPath($('#txtSyncPath', page).val());
|
|
|
|
var userId = getParameterByName('userId') || Dashboard.getCurrentUserId();
|
|
|
|
ApiClient.getDisplayPreferences('home', userId, 'webclient').done(function (result) {
|
|
|
|
saveUser(page, userId, result);
|
|
|
|
});
|
|
|
|
// Disable default form submission
|
|
return false;
|
|
}
|
|
|
|
$(document).on('pageinitdepends', "#webClientPreferencesPage", function () {
|
|
|
|
var page = this;
|
|
|
|
$('.webClientPreferencesForm', page).off('submit', onSubmit).on('submit', onSubmit);
|
|
|
|
$('.btnSelectSyncPath', page).on('click', function () {
|
|
|
|
require(['nativedirectorychooser'], function () {
|
|
NativeDirectoryChooser.chooseDirectory().done(function (path) {
|
|
$('#txtSyncPath', page).val(path);
|
|
});
|
|
});
|
|
});
|
|
|
|
}).on('pageshowready', "#webClientPreferencesPage", function () {
|
|
|
|
var page = this;
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var userId = getParameterByName('userId') || Dashboard.getCurrentUserId();
|
|
|
|
ApiClient.getDisplayPreferences('home', userId, 'webclient').done(function (result) {
|
|
|
|
loadForm(page, userId, result);
|
|
|
|
});
|
|
|
|
$('.fldEnableBackdrops', page).show();
|
|
|
|
if (AppInfo.isNativeApp) {
|
|
$('.homePageConfigurationSection', page).hide();
|
|
} else {
|
|
$('.homePageConfigurationSection', page).show();
|
|
}
|
|
|
|
if (AppInfo.hasKnownExternalPlayerSupport) {
|
|
$('.labelNativeExternalPlayers', page).show();
|
|
$('.labelGenericExternalPlayers', page).hide();
|
|
} else {
|
|
$('.labelGenericExternalPlayers', page).show();
|
|
$('.labelNativeExternalPlayers', page).hide();
|
|
}
|
|
|
|
if (AppInfo.supportsFullScreen) {
|
|
$('.fldFullscreen', page).show();
|
|
} else {
|
|
$('.fldFullscreen', page).hide();
|
|
}
|
|
|
|
if (AppInfo.supportsSyncPathSetting) {
|
|
$('.fldSyncPath', page).show();
|
|
} else {
|
|
$('.fldSyncPath', page).hide();
|
|
}
|
|
});
|
|
|
|
})(jQuery, window, document); |