// vim: et:ts=4:sw=4:sts=4:ft=javascript 'use strict'; pandora.ui.entitiesDialog = function(options) { var dialogHeight = Math.round((window.innerHeight - 48) * 0.9), dialogWidth = Math.round(window.innerWidth * 0.9), selected = [], type = pandora.site.entities[0].id, $entitiesSelect = Ox.Select({ items: pandora.site.entities.map(function(type) { return { id: type.id, title: type.title }; }), width: 122 }) .bindEvent({ change: function(data) { // ... } }) .css({ float: 'left', margin: '4px 2px 4px 4px' }), $findInput = Ox.Input({ clear: true, placeholder: 'Find', submitOnKeypress: true, width: 122 }) .css({ float: 'right', margin: '4px 4px 4px 2px' }) .bindEvent({ change: function(data) { $list.options({ query: { conditions: data.value ? [ {key: 'name', operator: '=', value: data.value} ] : [], operator: '&' } }); } }), $listBar = Ox.Bar({size: 24}) .append($entitiesSelect) .append($findInput), $list = Ox.TableList({ columns: [ { id: 'id', title: 'ID', operator: '+' }, { id: 'name', title: 'Name', operator: '+', visible: true, width: 256 - Ox.SCROLLBAR_SIZE } ], items: function(options, callback) { pandora.api.findEntities({ keys: options.keys, query: { conditions: [ {key: 'type', operator: '==', value: type} ].concat(options.query.conditions), operator: '&' }, range: options.range, sort: options.sort }, callback); }, sort: [{key: 'name', operator: '+'}], scrollbarVisible: true, unique: 'id', width: 256 - Ox.SCROLLBAR_SIZE }) .bindEvent({ init: function(data) { var text = Ox.formatCount( data.items, Ox._('entity'), Ox._('entities') ) $listStatus.html(text[0].toUpperCase() + text.slice(1)); }, select: function(data) { var text = Ox.formatCount( data.ids, Ox._('entity'), Ox._('entities') ) + ' ' + Ox._('selected'); selected = data.ids; renderEntity(); renderForm(); $itemStatus.html(text[0].toUpperCase() + text.slice(1)); } }), $listStatus = Ox.Element() .css({ fontSize: '9px', marginTop: '2px', textAlign: 'center' }) .html(Ox._('Loading...')), $listStatusbar = Ox.Bar({size: 16}) .append($listStatus), $listPanel = Ox.SplitPanel({ elements: [ {element: $listBar, size: 24}, {element: $list}, {element: $listStatusbar, size: 16} ], orientation: 'vertical' }) .bindEvent({ resize: updateList }), $entity = Ox.Element(), $itemMenu = Ox.MenuButton({ items: [ { 'id': 'add', title: Ox._('Add Entity'), keyboard: 'control n' }, { 'id': 'delete', title: Ox._('Delete Entity...'), disabled: true, keyboard: 'delete' } ], title: 'set', tooltip: Ox._('Options'), type: 'image' }) .css({ float: 'left', margin: '4px' }) .bindEvent({ click: function(data) { if (data.id == 'add') { pandora.api.addEntity({ type: type }, function(result) { Ox.print('$$$$', result); Ox.Request.clearCache('findEntities'); $list.reloadList().options({ selected: [result.data.id] }); }) } else if (data.id == 'delete') { // ... } } }), $deselectButton = Ox.Button({ title: 'close', tooltip: Ox._('Done'), type: 'image' }) .css({ float: 'right', margin: '4px' }) .hide() .bindEvent({ click: function() { pandora.UI.set( 'entitiesSelection.' + type, [] ); } }), $itemBar = Ox.Bar({size: 24}) .append($itemMenu) .append($deselectButton), $labels = [], $inputs = [], $form = Ox.Element() .css({ overflowY: 'scroll', padding: '2px' }), $itemStatus = Ox.Element() .css({ fontSize: '9px', marginTop: '2px', textAlign: 'center' }) .html(Ox._('No entity selected')), $itemStatusbar = Ox.Bar({size: 16}) .append($itemStatus), $itemPanel = Ox.SplitPanel({ elements: [ {element: $itemBar, size: 24}, {element: $form}, {element: $itemStatusbar, size: 16} ], orientation: 'vertical' }) .bindEvent({ resize: updateForm }), $content = Ox.SplitPanel({ elements: [ { element: $listPanel, resizable: true, resize: [256, 384, 512], size: 256 }, { element: $entity }, { element: $itemPanel, resizable: true, resize: [256, 384, 512], size: 256 } ], orientation: 'horizontal' }), that = Ox.Dialog({ buttons: [ Ox.Button({ title: Ox._('Manage Documents...') }) .bindEvent({ click: function() { that.close(); (pandora.$ui.documentsDialog || ( pandora.$ui.documentsDialog = pandora.ui.documentsDialog() )).open(); } }), {}, Ox.Button({ title: Ox._('Done'), width: 48 }) .bindEvent({ click: function() { that.close(); } }) ], closeButton: true, content: $content, height: dialogHeight, maximizeButton: true, minHeight: 256, minWidth: 512, padding: 0, removeOnClose: true, title: Ox._('Manage Entities'), width: dialogWidth }) .bindEvent({ // resize: ... }); function deleteEntities() { pandora.ui.deleteEntityDialog( $list.options('selected').map(function(id) { return $list.value(id); }), function() { Ox.Request.clearCache(); // ... $list.reloadList(); } ).open(); } function renderEntity() { var id = selected[0]; if (!id) { $entity.empty(); return; } pandora.ui.entity({ id: id, type: type, view: 'entity' }, function(html) { if (id != selected[0]) { return; } $entity.html(html); }); } function renderForm() { var id = selected[0]; if (!id) { $form.empty(); return; } pandora.api.getEntity({ id: id }, function(data) { if (id != selected[0]) { return; } var keys = Ox.getObjectById(pandora.site.entities, type).keys; $form.empty() keys.forEach(function(key) { var $label = Ox.Label({ title: Ox._(key.title), width: 248 - Ox.SCROLLBAR_SIZE }) .css({margin: '2px 2px 4px 2px'}) .appendTo($form), $input; if (key.type == 'document') { $input = Ox.Input({autovalidate: /^[A-Z]+?$/}); } else if (key.type == 'float') { $input = Ox.Input({type: 'float'}); } else if (key.type == 'int') { $input = Ox.Input({type: 'int'}); } else if (key.type == 'string') { $input = Ox.Input(); } else if (key.type[0] == 'string') { $input = Ox.ArrayInput(); } else if (key.type == 'text') { $input = Ox.Input({ height: 248 - Ox.SCROLLBAR_SIZE, type: 'textarea' }); } $input.options({ disabled: key.id == 'id', value: data[key.id], width: 248 - Ox.SCROLLBAR_SIZE }) .css({margin: '2px 2px 4px 2px'}) .bindEvent({ change: function(data) { pandora.api.editEntity(Ox.extend({ id: id }, key.id, data.value), function(result) { // ... }); } }) .appendTo($form); $labels.push($label); $inputs.push($input); }); }); } function updateForm() { var width = $content.options('elements')[2].size - 8; $labels.forEach(function($label) { $label.options({width: width}); }); $inputs.forEach(function($input) { $input.options({width: width}); }) } function updateList() { var width = $content.options('elements')[0].size; $entitiesSelect.options({width: Math.ceil((size - 12) / 2)}); $findInput.options({width: Math.floor((size - 12) / 2)}); $list.size(); } return that; };