2015-09-19 19:06:56 -07:00
|
|
|
|
(function ($, document, window, FileReader, escape) {
|
|
|
|
|
|
|
|
|
|
var currentItem;
|
|
|
|
|
|
|
|
|
|
function getBaseRemoteOptions() {
|
|
|
|
|
|
|
|
|
|
var options = {};
|
|
|
|
|
|
|
|
|
|
options.itemId = currentItem.Id;
|
|
|
|
|
|
|
|
|
|
return options;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function reload(page, item) {
|
|
|
|
|
|
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
|
|
|
|
if (item) {
|
|
|
|
|
reloadItem(page, item);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
ApiClient.getItem(Dashboard.getCurrentUserId(), currentItem.Id).done(function (item) {
|
|
|
|
|
reloadItem(page, item);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function reloadItem(page, item) {
|
|
|
|
|
|
|
|
|
|
currentItem = item;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function initEditor(page) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function showEditor(itemId) {
|
|
|
|
|
|
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
|
|
2015-10-13 12:22:45 -07:00
|
|
|
|
HttpClient.send({
|
2015-09-19 19:06:56 -07:00
|
|
|
|
|
|
|
|
|
type: 'GET',
|
|
|
|
|
url: 'components/metadataeditor/metadataeditor.template.html'
|
|
|
|
|
|
|
|
|
|
}).done(function (template) {
|
|
|
|
|
|
|
|
|
|
ApiClient.getItem(Dashboard.getCurrentUserId(), itemId).done(function (item) {
|
|
|
|
|
|
|
|
|
|
var dlg = document.createElement('paper-dialog');
|
|
|
|
|
|
|
|
|
|
dlg.setAttribute('with-backdrop', 'with-backdrop');
|
|
|
|
|
dlg.setAttribute('role', 'alertdialog');
|
|
|
|
|
// without this safari will scroll the background instead of the dialog contents
|
|
|
|
|
dlg.setAttribute('modal', 'modal');
|
|
|
|
|
// seeing max call stack size exceeded in the debugger with this
|
|
|
|
|
dlg.setAttribute('noAutoFocus', 'noAutoFocus');
|
|
|
|
|
dlg.entryAnimation = 'scale-up-animation';
|
|
|
|
|
dlg.exitAnimation = 'fade-out-animation';
|
|
|
|
|
dlg.classList.add('smoothScrollY');
|
|
|
|
|
|
|
|
|
|
var html = '';
|
|
|
|
|
html += '<h2 class="dialogHeader">';
|
2015-10-20 22:10:02 -07:00
|
|
|
|
html += '<paper-fab icon="arrow-back" mini class="btnCloseDialog"></paper-fab>';
|
2015-09-19 19:06:56 -07:00
|
|
|
|
html += '<div style="display:inline-block;margin-left:.6em;vertical-align:middle;">' + Globalize.translate('ButtonEdit') + '</div>';
|
|
|
|
|
html += '</h2>';
|
|
|
|
|
|
|
|
|
|
html += '<div class="editorContent">';
|
|
|
|
|
html += Globalize.translateDocument(template);
|
|
|
|
|
html += '</div>';
|
|
|
|
|
|
|
|
|
|
dlg.innerHTML = html;
|
|
|
|
|
document.body.appendChild(dlg);
|
|
|
|
|
|
|
|
|
|
initEditor(dlg);
|
|
|
|
|
|
|
|
|
|
// Has to be assigned a z-index after the call to .open()
|
|
|
|
|
$(dlg).on('iron-overlay-closed', onDialogClosed);
|
|
|
|
|
|
|
|
|
|
PaperDialogHelper.openWithHash(dlg, 'metadataeditor');
|
|
|
|
|
|
|
|
|
|
var editorContent = dlg.querySelector('.editorContent');
|
|
|
|
|
reload(editorContent, item);
|
|
|
|
|
|
2015-09-29 09:29:06 -07:00
|
|
|
|
$('.btnCloseDialog', dlg).on('click', function () {
|
|
|
|
|
|
|
|
|
|
PaperDialogHelper.close(dlg);
|
|
|
|
|
});
|
2015-09-19 19:06:56 -07:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function onDialogClosed() {
|
|
|
|
|
|
|
|
|
|
$(this).remove();
|
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window.MetadataEditor = {
|
|
|
|
|
show: function (itemId) {
|
|
|
|
|
|
|
|
|
|
require(['components/paperdialoghelper'], function () {
|
|
|
|
|
|
|
|
|
|
Dashboard.importCss('css/metadataeditor.css');
|
|
|
|
|
showEditor(itemId);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
})(jQuery, document, window, window.FileReader, escape);
|