mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
237 lines
6.2 KiB
JavaScript
237 lines
6.2 KiB
JavaScript
define(['dialogHelper', 'jQuery', 'emby-input', 'emby-select', 'paper-fab', 'paper-item-body', 'paper-icon-item', 'paper-icon-button-light'], function (dialogHelper, $) {
|
|
|
|
var currentDeferred;
|
|
var hasChanges;
|
|
var currentOptions;
|
|
var paths = [];
|
|
|
|
function onSubmit() {
|
|
|
|
if (paths.length == 0) {
|
|
require(['alert'], function (alert) {
|
|
alert({
|
|
text: Globalize.translate('PleaseAddAtLeastOneFolder'),
|
|
type: 'error'
|
|
});
|
|
});
|
|
return false;
|
|
}
|
|
|
|
var form = this;
|
|
var dlg = $(form).parents('.dialog')[0];
|
|
|
|
var name = $('#txtValue', form).val();
|
|
var type = $('#selectCollectionType', form).val();
|
|
|
|
if (type == 'mixed') {
|
|
type = null;
|
|
}
|
|
|
|
ApiClient.addVirtualFolder(name, type, currentOptions.refresh, paths).then(function () {
|
|
|
|
hasChanges = true;
|
|
dialogHelper.close(dlg);
|
|
|
|
}, function () {
|
|
|
|
require(['toast'], function (toast) {
|
|
toast(Globalize.translate('ErrorAddingMediaPathToVirtualFolder'));
|
|
});
|
|
});
|
|
|
|
return false;
|
|
}
|
|
|
|
function getCollectionTypeOptionsHtml(collectionTypeOptions) {
|
|
|
|
return collectionTypeOptions.filter(function (i) {
|
|
|
|
return i.isSelectable !== false;
|
|
|
|
}).map(function (i) {
|
|
|
|
return '<option value="' + i.value + '">' + i.name + '</option>';
|
|
|
|
}).join("");
|
|
}
|
|
|
|
function initEditor(page, collectionTypeOptions) {
|
|
|
|
$('#selectCollectionType', page).html(getCollectionTypeOptionsHtml(collectionTypeOptions)).val('').on('change', function () {
|
|
|
|
if (this.value == 'mixed') {
|
|
return;
|
|
}
|
|
|
|
var dlg = $(this).parents('.dialog')[0];
|
|
|
|
var index = this.selectedIndex;
|
|
if (index != -1) {
|
|
|
|
var name = this.options[index].innerHTML
|
|
.replace('*', '')
|
|
.replace('&', '&');
|
|
|
|
var value = this.value;
|
|
|
|
$('#txtValue', dlg).val(name);
|
|
|
|
var folderOption = collectionTypeOptions.filter(function (i) {
|
|
|
|
return i.value == value;
|
|
|
|
})[0];
|
|
|
|
$('.collectionTypeFieldDescription', dlg).html(folderOption.message || '');
|
|
}
|
|
});
|
|
|
|
$('.btnAddFolder', page).on('click', onAddButtonClick);
|
|
$('form', page).off('submit', onSubmit).on('submit', onSubmit);
|
|
}
|
|
|
|
function onAddButtonClick() {
|
|
|
|
var page = $(this).parents('.popupEditor')[0];
|
|
|
|
require(['directorybrowser'], function (directoryBrowser) {
|
|
|
|
var picker = new directoryBrowser();
|
|
|
|
picker.show({
|
|
|
|
callback: function (path) {
|
|
|
|
if (path) {
|
|
addMediaLocation(page, path);
|
|
}
|
|
picker.close();
|
|
}
|
|
|
|
});
|
|
});
|
|
}
|
|
|
|
function getFolderHtml(path, index) {
|
|
|
|
var html = '';
|
|
|
|
html += '<paper-icon-item role="menuitem" class="lnkPath">';
|
|
|
|
html += '<paper-fab mini style="background:#52B54B;" icon="folder" item-icon></paper-fab>';
|
|
|
|
html += '<paper-item-body>';
|
|
html += path;
|
|
html += '</paper-item-body>';
|
|
|
|
html += '<button is="paper-icon-button-light"" class="btnRemovePath" data-index="' + index + '"><iron-icon icon="remove-circle"></iron-icon></button>';
|
|
|
|
html += '</paper-icon-item>';
|
|
|
|
return html;
|
|
}
|
|
|
|
function renderPaths(page) {
|
|
var foldersHtml = paths.map(getFolderHtml).join('');
|
|
|
|
var folderList = page.querySelector('.folderList');
|
|
folderList.innerHTML = foldersHtml;
|
|
|
|
if (foldersHtml) {
|
|
folderList.classList.remove('hide');
|
|
} else {
|
|
folderList.classList.add('hide');
|
|
}
|
|
|
|
$(page.querySelectorAll('.btnRemovePath')).on('click', onRemoveClick);
|
|
}
|
|
|
|
function addMediaLocation(page, path) {
|
|
|
|
if (paths.filter(function (p) {
|
|
|
|
return p.toLowerCase() == path.toLowerCase();
|
|
|
|
}).length == 0) {
|
|
paths.push(path);
|
|
renderPaths(page);
|
|
}
|
|
}
|
|
|
|
function onRemoveClick() {
|
|
|
|
var button = this;
|
|
var index = parseInt(button.getAttribute('data-index'));
|
|
|
|
var location = paths[index];
|
|
paths = paths.filter(function (p) {
|
|
|
|
return p.toLowerCase() != location.toLowerCase();
|
|
});
|
|
var page = $(this).parents('.popupEditor')[0];
|
|
renderPaths(page);
|
|
}
|
|
|
|
function onDialogClosed() {
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
currentDeferred.resolveWith(null, [hasChanges]);
|
|
}
|
|
|
|
function editor() {
|
|
|
|
var self = this;
|
|
|
|
self.show = function (options) {
|
|
|
|
var deferred = jQuery.Deferred();
|
|
|
|
currentOptions = options;
|
|
currentDeferred = deferred;
|
|
hasChanges = false;
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open('GET', 'components/medialibrarycreator/medialibrarycreator.template.html', true);
|
|
|
|
xhr.onload = function (e) {
|
|
|
|
var template = this.response;
|
|
var dlg = dialogHelper.createDialog({
|
|
size: 'small',
|
|
|
|
// In (at least) chrome this is causing the text field to not be editable
|
|
modal: false,
|
|
|
|
removeOnClose: true
|
|
});
|
|
|
|
dlg.classList.add('ui-body-a');
|
|
dlg.classList.add('background-theme-a');
|
|
dlg.classList.add('popupEditor');
|
|
|
|
dlg.innerHTML = Globalize.translateDocument(template);
|
|
document.body.appendChild(dlg);
|
|
|
|
initEditor(dlg, options.collectionTypeOptions);
|
|
|
|
dlg.addEventListener('close', onDialogClosed);
|
|
|
|
dialogHelper.open(dlg);
|
|
|
|
dlg.querySelector('.btnCancel').addEventListener('click', function () {
|
|
|
|
dialogHelper.close(dlg);
|
|
});
|
|
|
|
paths = [];
|
|
renderPaths(dlg);
|
|
}
|
|
|
|
xhr.send();
|
|
|
|
return deferred.promise();
|
|
};
|
|
}
|
|
|
|
return editor;
|
|
}); |