diff --git a/static/js/editDialog.js b/static/js/editDialog.js new file mode 100644 index 0000000..f7dc23a --- /dev/null +++ b/static/js/editDialog.js @@ -0,0 +1,209 @@ +'use strict'; + +oml.ui.editDialog = function() { + + var ids = oml.user.ui.listSelection, + keys = [ + 'title', 'author', 'place', 'publisher', 'date', + 'edition', 'language', 'pages', 'description' + ], + mixed = ' ', + separator = '; ', + tooltip = Ox._('Doubleclick to edit'), + + $info = Ox.Element() + .addClass('OxSelectable') + .css({padding: '16px'}); + + var that = Ox.Dialog({ + buttons: [ + Ox.Button({ + title: Ox._('Done') + }) + .bindEvent({ + click: function() { + that.close(); + } + }) + ], + closeButton: true, + content: Ox.LoadingScreen().start(), + height: 384, + removeOnClose: true, + title: Ox._('Edit Metadata for {0}', [ + Ox.formatNumber(ids.length) + ' ' + ( + ids.length == 1 ? 'Book' : 'Books' + ) + ]), + width: 512 + }); + + getMetadata(renderMetadata); + + function editMetadata(key, value) { + var edit = {id: ids}; + if (Ox.contains(['author', 'place'], key)) { + edit[key] = value ? value.split(separator) : []; + } else { + edit[key] = value; + } + oml.api.edit(edit, function(result) { + oml.$ui.list.reloadList(); + }); + } + + function formatLight(string) { + return '' + string + ''; + } + + function formatKey(key) { + var item = Ox.getObjectById(oml.config.itemKeys, key); + return '' + + Ox._(Ox.toTitleCase(key)) + ': '; + } + + function formatValue(value, key) { + return value === mixed ? Ox.formatLight(Ox._( + key == 'title' ? 'Mixed Title' + : key == 'author' ? 'Mixed Author' + : 'mixed' + )) : value ? (Ox.isArray(value) ? value : [value]).map(function(value) { + return key == 'date' && value ? value.slice(0, 4) : value; + }).join(separator) : ''; + } + + function getMetadata(callback) { + oml.api.find({ + keys: keys, + query: { + conditions: ids.map(function(id) { + return { + key: 'id', + operator: '==', + value: id + }; + }), + operator: '|' + } + }, function(result) { + var data = {}, + items = result.data.items; + keys.forEach(function(key) { + values = items.map(function(item) { + return item[key]; + }); + var isArray = Ox.isArray(values[0]) + if (isArray) { + values = values.map(function(value) { + return value.join(separator); + }); + } + data[key] = Ox.unique(values).length == 1 + ? (isArray ? values[0].split(separator) : values[0]) + : mixed; + }); + callback(data); + }); + } + + function renderMetadata(data) { + + var $div; + + // Title + + $('