2014-06-29 20:04:50 -07:00
|
|
|
|
(function ($, document, window) {
|
|
|
|
|
|
|
|
|
|
var metadataKey = "xbmcmetadata";
|
|
|
|
|
|
|
|
|
|
function loadPage(page, config, users) {
|
|
|
|
|
|
|
|
|
|
var html = '<option value="" selected="selected"></option>';
|
|
|
|
|
|
|
|
|
|
html += users.map(function (user) {
|
|
|
|
|
return '<option value="' + user.Id + '">' + user.Name + '</option>';
|
|
|
|
|
}).join('');
|
|
|
|
|
|
|
|
|
|
$('#selectUser', page).html(html).val(config.UserId || '').selectmenu('refresh');
|
|
|
|
|
$('#selectReleaseDateFormat', page).val(config.ReleaseDateFormat).selectmenu('refresh');
|
|
|
|
|
$('#chkSaveImagePaths', page).checked(config.SaveImagePathsInNfo).checkboxradio('refresh');
|
|
|
|
|
$('#chkEnablePathSubstitution', page).checked(config.EnablePathSubstitution).checkboxradio('refresh');
|
2014-07-03 19:22:57 -07:00
|
|
|
|
$('#chkEnableExtraThumbs', page).checked(config.EnableExtraThumbsDuplication).checkboxradio('refresh');
|
2014-06-29 20:04:50 -07:00
|
|
|
|
|
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-26 09:47:15 -07:00
|
|
|
|
$(document).on('pageshow', "#metadataNfoPage", function () {
|
2014-06-29 20:04:50 -07:00
|
|
|
|
|
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
|
|
|
|
|
var promise1 = ApiClient.getUsers();
|
|
|
|
|
var promise2 = ApiClient.getNamedConfiguration(metadataKey);
|
|
|
|
|
|
|
|
|
|
$.when(promise1, promise2).done(function (response1, response2) {
|
|
|
|
|
|
|
|
|
|
loadPage(page, response2[0], response1[0]);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2015-01-26 09:47:15 -07:00
|
|
|
|
window.NfoMetadataPage = {
|
2014-06-29 20:04:50 -07:00
|
|
|
|
|
|
|
|
|
onSubmit: function () {
|
|
|
|
|
|
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
|
|
|
|
var form = this;
|
|
|
|
|
|
|
|
|
|
ApiClient.getNamedConfiguration(metadataKey).done(function (config) {
|
|
|
|
|
|
|
|
|
|
config.UserId = $('#selectUser', form).val() || null;
|
|
|
|
|
config.ReleaseDateFormat = $('#selectReleaseDateFormat', form).val();
|
|
|
|
|
config.SaveImagePathsInNfo = $('#chkSaveImagePaths', form).checked();
|
|
|
|
|
config.EnablePathSubstitution = $('#chkEnablePathSubstitution', form).checked();
|
2014-07-03 19:22:57 -07:00
|
|
|
|
config.EnableExtraThumbsDuplication = $('#chkEnableExtraThumbs', form).checked();
|
2014-06-29 20:04:50 -07:00
|
|
|
|
|
|
|
|
|
ApiClient.updateNamedConfiguration(metadataKey, config).done(Dashboard.processServerConfigurationUpdateResult);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Disable default form submission
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
})(jQuery, document, window);
|