mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
108 lines
3.0 KiB
JavaScript
108 lines
3.0 KiB
JavaScript
define(['appSettings', 'jQuery'], function (appSettings, $) {
|
|
|
|
function loadForm(page, user) {
|
|
|
|
page.querySelector('#txtSyncPath').value = appSettings.syncPath();
|
|
page.querySelector('#chkWifi').checked = appSettings.syncOnlyOnWifi();
|
|
|
|
var uploadServers = appSettings.cameraUploadServers();
|
|
|
|
page.querySelector('.uploadServerList').innerHTML = ConnectionManager.getSavedServers().map(function (s) {
|
|
|
|
var checkedHtml = uploadServers.indexOf(s.Id) == -1 ? '' : ' checked';
|
|
var html = '<paper-checkbox' + checkedHtml + ' class="chkUploadServer" data-id="' + s.Id + '">' + s.Name + '</paper-checkbox>';
|
|
|
|
return html;
|
|
|
|
}).join('');
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
}
|
|
|
|
function saveUser(page, user) {
|
|
|
|
var syncPath = page.querySelector('#txtSyncPath').value;
|
|
|
|
appSettings.syncPath(syncPath);
|
|
appSettings.syncOnlyOnWifi(page.querySelector('#chkWifi').checked);
|
|
|
|
var cameraUploadServers = $(".chkUploadServer", page).get().filter(function (i) {
|
|
|
|
return i.checked;
|
|
|
|
}).map(function (i) {
|
|
|
|
return i.getAttribute('data-id');
|
|
});
|
|
|
|
appSettings.cameraUploadServers(cameraUploadServers);
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
require(['toast'], function (toast) {
|
|
toast(Globalize.translate('SettingsSaved'));
|
|
});
|
|
|
|
if (cameraUploadServers.length || syncPath) {
|
|
if (window.MainActivity) {
|
|
MainActivity.authorizeStorage();
|
|
}
|
|
}
|
|
}
|
|
|
|
function onSubmit() {
|
|
|
|
var page = $(this).parents('.page')[0];
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var userId = getParameterByName('userId') || Dashboard.getCurrentUserId();
|
|
|
|
ApiClient.getUser(userId).then(function (user) {
|
|
|
|
saveUser(page, user);
|
|
|
|
});
|
|
|
|
// Disable default form submission
|
|
return false;
|
|
}
|
|
|
|
$(document).on('pageinit', "#syncPreferencesPage", function () {
|
|
|
|
var page = this;
|
|
|
|
$('form', page).off('submit', onSubmit).on('submit', onSubmit);
|
|
|
|
$('#btnSelectSyncPath', page).on('click', function () {
|
|
|
|
require(['nativedirectorychooser'], function () {
|
|
NativeDirectoryChooser.chooseDirectory().then(function (path) {
|
|
|
|
if (path) {
|
|
$('#txtSyncPath', page).val(path);
|
|
}
|
|
});
|
|
});
|
|
});
|
|
|
|
}).on('pageshow', "#syncPreferencesPage", function () {
|
|
|
|
var page = this;
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var userId = getParameterByName('userId') || Dashboard.getCurrentUserId();
|
|
|
|
ApiClient.getUser(userId).then(function (user) {
|
|
|
|
loadForm(page, user);
|
|
});
|
|
|
|
if (AppInfo.supportsSyncPathSetting) {
|
|
page.querySelector('.fldSyncPath').classList.remove('hide');
|
|
} else {
|
|
page.querySelector('.fldSyncPath').classList.add('hide');
|
|
}
|
|
});
|
|
|
|
}); |