1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

rework new library dialog

This commit is contained in:
Luke Pulverenti 2015-10-15 14:48:43 -04:00
parent 51638b966c
commit f2f50dd590
7 changed files with 177 additions and 131 deletions

View file

@ -0,0 +1,114 @@
define([], function () {
var currentDeferred;
var hasChanges;
var currentOptions;
function onSubmit() {
var form = this;
var dlg = $(form).parents('paper-dialog')[0];
ApiClient.addVirtualFolder($('#txtValue', form).val(), $('#selectCollectionType', form).val(), currentOptions.refresh).done(function () {
hasChanges = true;
PaperDialogHelper.close(dlg);
}).fail(function () {
Dashboard.showError(Globalize.translate('DefaultErrorMessage'));
});
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('');
$('form', page).off('submit', onSubmit).on('submit', onSubmit);
}
function onDialogClosed() {
$(this).remove();
Dashboard.hideLoadingMsg();
currentDeferred.resolveWith(null, [hasChanges]);
}
function editor() {
var self = this;
self.show = function (options) {
var deferred = DeferredBuilder.Deferred();
currentOptions = options;
currentDeferred = deferred;
hasChanges = false;
require(['components/paperdialoghelper'], function () {
HttpClient.send({
type: 'GET',
url: 'components/medialibraryeditor/medialibraryeditor.template.html'
}).done(function (template) {
var dlg = PaperDialogHelper.createDialog({
size: 'small',
theme: 'a'
});
var html = '';
html += '<h2 class="dialogHeader">';
html += '<paper-fab icon="arrow-back" class="mini btnCloseDialog"></paper-fab>';
var title = Globalize.translate('ButtonAddMediaLibrary');
html += '<div style="display:inline-block;margin-left:.6em;vertical-align:middle;">' + title + '</div>';
html += '</h2>';
html += '<div class="editorContent" style="max-width:800px;margin:auto;">';
html += Globalize.translateDocument(template);
html += '</div>';
dlg.innerHTML = html;
document.body.appendChild(dlg);
var editorContent = dlg.querySelector('.editorContent');
initEditor(editorContent, options.collectionTypeOptions);
$(dlg).on('iron-overlay-closed', onDialogClosed);
PaperDialogHelper.openWithHash(dlg, 'medialibraryeditor');
$('.btnCloseDialog', dlg).on('click', function () {
PaperDialogHelper.close(dlg);
});
});
});
return deferred.promise();
};
}
return editor;
});

View file

@ -0,0 +1,21 @@
<form style="max-width:100%;">
<br />
<div id="fldCollectionType">
<label for="selectCollectionType">${LabelContentType}</label>
<select id="selectCollectionType" data-mini="true" required="required"></select>
<div class="collectionTypeFieldDescription fieldDescription">
</div>
</div>
<p>
<paper-input type="text" id="txtValue" required="required" label="${LabelName}"></paper-input>
</p>
<br />
<div>
<button type="submit" class="clearButton" data-role="none">
<paper-button raised class="submit block">
<iron-icon icon="check"></iron-icon>
<span>${ButtonOk}</span>
</paper-button>
</button>
</div>
</form>