'use strict'; pandora.ui.editDocumentsDialog = function() { var ui = pandora.user.ui, hasChanged = false, ids = ui.collectionSelection.filter(function(id) { return pandora.$ui.list.value(id, 'editable'); }), keys = pandora.site.documentKeys.filter(function(key) { return key.id != '*' }).map(function(key) { return key.id }), listKeys = pandora.site.documentKeys.filter(function(key) { return Ox.isArray(key.type); }).map(function(key){ return key.id; }), mixed = ' ', separator = '; ', tooltip = Ox._('Doubleclick to edit'), $info = Ox.Element() .addClass('OxSelectable') .css({padding: '16px'}); var that = Ox.Dialog({ buttons: [ Ox.Button({ style: 'squared', title: Ox._('Done') }) .bindEvent({ click: function() { if (!ui.updateResults && hasChanged) { pandora.$ui.list.reloadList() } that.close(); } }) ], closeButton: true, content: Ox.LoadingScreen().start(), height: 576, removeOnClose: true, title: Ox._('Edit Metadata for {0}', [ Ox.formatNumber(ids.length) + ' ' + Ox._( ids.length == 1 ? 'Document' : 'Documents' ) ]), width: 768 }), $updateCheckbox = Ox.Checkbox({ style: 'squared', title: Ox._('Update Results in the Background'), value: ui.updateResults }) .css({ float: 'left', margin: '4px' }) .bindEvent({ change: function(data) { pandora.UI.set({updateResults: data.value}); } }); /* $($updateCheckbox.find('.OxButton')[0]).css({margin: 0}); $(that.find('.OxBar')[1]).append($updateCheckbox); */ getMetadata(); function getMetadata(callback) { pandora.api.findDocuments({ keys: keys, query: { conditions: [ { key: 'id', operator: '&', value: ids } ], operator: '&' } }, function(result) { var data = {}, isMixed = {}, items = result.data.items; keys.forEach(function(key) { var isArray = Ox.contains(listKeys, key), values = items.map(function(item) { return item[key]; }); if (isArray) { values = values.map(function(value) { value = value || [] return value.join ? value.join(separator) : value; }); } if (Ox.unique(values).length > 1) { isMixed[key] = true; } data[key] = isMixed[key] ? null : isArray && values.length ? values[0].split(separator) : values[0]; }); that.options({ content: pandora.ui.documentInfoView(data, isMixed).bindEvent({ change: function() { hasChanged = true; Ox.Request.clearCache(); } }) }); }); } return that; };