2014-11-19 16:04:45 +00:00
|
|
|
// 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),
|
|
|
|
|
2014-11-19 17:55:43 +00:00
|
|
|
type = pandora.site.entities[0].id,
|
|
|
|
|
|
|
|
$entitiesSelect = Ox.Select({
|
|
|
|
items: pandora.site.entities.map(function(type) {
|
|
|
|
return {
|
|
|
|
id: type.id,
|
|
|
|
title: type.title
|
|
|
|
};
|
|
|
|
}),
|
2014-11-19 18:37:13 +00:00
|
|
|
width: 122
|
2014-11-19 16:04:45 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
2014-11-19 17:55:43 +00:00
|
|
|
change: function(data) {
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.css({
|
2014-11-19 18:37:13 +00:00
|
|
|
float: 'left',
|
|
|
|
margin: '4px 2px 4px 4px'
|
2014-11-19 17:55:43 +00:00
|
|
|
}),
|
|
|
|
|
|
|
|
$findInput = Ox.Input({
|
|
|
|
clear: true,
|
|
|
|
placeholder: 'Find',
|
2014-11-19 18:37:13 +00:00
|
|
|
width: 122
|
2014-11-19 17:55:43 +00:00
|
|
|
})
|
|
|
|
.css({
|
2014-11-19 19:21:59 +00:00
|
|
|
float: 'right',
|
2014-11-19 18:37:13 +00:00
|
|
|
margin: '4px 4px 4px 2px'
|
2014-11-19 17:55:43 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
2014-11-19 18:11:05 +00:00
|
|
|
change: function(data) {
|
|
|
|
$list.options({
|
|
|
|
query: {
|
|
|
|
conditions: [
|
|
|
|
{key: 'name', operator: '=', value: data.value}
|
|
|
|
],
|
|
|
|
operator: '&'
|
|
|
|
}
|
|
|
|
});
|
2014-11-19 17:55:43 +00:00
|
|
|
}
|
2014-11-19 16:04:45 +00:00
|
|
|
}),
|
|
|
|
|
2014-11-19 17:55:43 +00:00
|
|
|
$listBar = Ox.Bar({size: 24})
|
2014-11-19 18:37:13 +00:00
|
|
|
.append($entitiesSelect)
|
2014-11-19 17:55:43 +00:00
|
|
|
.append($findInput),
|
|
|
|
|
|
|
|
$list = Ox.TableList({
|
|
|
|
columns: [
|
2014-11-19 17:57:38 +00:00
|
|
|
{id: 'id', title: 'ID', operator: '+'},
|
2014-11-19 19:21:59 +00:00
|
|
|
{id: 'name', title: 'Name', operator: '+', visible: true, width: 256 - Ox.SCROLLBAR_SIZE}
|
2014-11-19 17:55:43 +00:00
|
|
|
],
|
|
|
|
items: function(options, callback) {
|
|
|
|
pandora.api.findEntities({
|
2014-11-19 18:05:08 +00:00
|
|
|
keys: options.keys,
|
2014-11-19 17:55:43 +00:00
|
|
|
query: {
|
|
|
|
conditions: [
|
|
|
|
{key: 'type', operator: '==', value: type}
|
|
|
|
].concat(options.query.conditions),
|
|
|
|
operator: '&'
|
|
|
|
},
|
2014-11-19 18:05:08 +00:00
|
|
|
range: options.range,
|
|
|
|
sort: options.sort
|
2014-11-19 17:55:43 +00:00
|
|
|
}, callback);
|
|
|
|
},
|
|
|
|
sort: [{key: 'name', operator: '+'}],
|
|
|
|
scrollbarVisible: true,
|
|
|
|
unique: 'id',
|
2014-11-19 18:05:08 +00:00
|
|
|
width: 256 - Ox.SCROLLBAR_SIZE
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
init: function(data) {
|
2014-11-19 18:31:06 +00:00
|
|
|
var text = Ox.formatCount(
|
|
|
|
data.items,
|
|
|
|
Ox._('entity'),
|
|
|
|
Ox._('entities')
|
|
|
|
)
|
|
|
|
$listStatus.html(text[0].toUpperCase() + text.slice(1));
|
2014-11-19 18:05:08 +00:00
|
|
|
}
|
2014-11-19 17:55:43 +00:00
|
|
|
}),
|
2014-11-19 16:04:45 +00:00
|
|
|
|
2014-11-19 17:55:43 +00:00
|
|
|
$listStatus = Ox.Element()
|
|
|
|
.css({
|
|
|
|
fontSize: '9px',
|
|
|
|
marginTop: '2px',
|
|
|
|
textAlign: 'center'
|
|
|
|
})
|
|
|
|
.html(Ox._('Loading...')),
|
2014-11-19 16:04:45 +00:00
|
|
|
|
2014-11-19 17:55:43 +00:00
|
|
|
$listStatusbar = Ox.Bar({size: 16})
|
|
|
|
.append($listStatus),
|
2014-11-19 16:04:45 +00:00
|
|
|
|
|
|
|
$listPanel = Ox.SplitPanel({
|
|
|
|
elements: [
|
2014-11-19 17:58:08 +00:00
|
|
|
{element: $listBar, size: 24},
|
2014-11-19 17:55:43 +00:00
|
|
|
{element: $list},
|
|
|
|
{element: $listStatusbar, size: 16}
|
2014-11-19 16:04:45 +00:00
|
|
|
],
|
|
|
|
orientation: 'vertical'
|
2014-11-19 19:21:59 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
resize: function() {
|
|
|
|
// ...
|
|
|
|
}
|
2014-11-19 16:04:45 +00:00
|
|
|
}),
|
|
|
|
|
|
|
|
$entity = Ox.Element(),
|
|
|
|
|
2014-11-19 17:55:43 +00:00
|
|
|
$itemMenu = Ox.MenuButton({
|
|
|
|
items: [
|
2014-11-19 18:37:13 +00:00
|
|
|
{
|
|
|
|
'id': 'add',
|
|
|
|
title: Ox._('Add Entity'),
|
|
|
|
keyboard: 'control n'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'id': 'delete',
|
|
|
|
title: Ox._('Delete Entity...'),
|
|
|
|
disabled: true,
|
|
|
|
keyboard: 'delete'
|
|
|
|
}
|
2014-11-19 17:55:43 +00:00
|
|
|
],
|
|
|
|
title: 'set',
|
|
|
|
tooltip: Ox._('Options'),
|
|
|
|
type: 'image'
|
|
|
|
})
|
|
|
|
.css({
|
2014-11-19 18:05:08 +00:00
|
|
|
float: 'left',
|
2014-11-19 17:55:43 +00:00
|
|
|
margin: '4px'
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function(data) {
|
|
|
|
if (data.id == 'add') {
|
2014-11-19 19:13:17 +00:00
|
|
|
pandora.api.addEntity({
|
|
|
|
type: type
|
|
|
|
}, function(result) {
|
2014-11-19 18:31:06 +00:00
|
|
|
Ox.print('$$$$', result);
|
|
|
|
Ox.Request.clearCache('findEntities');
|
|
|
|
$list.reloadList().options({
|
|
|
|
selected: [result.data.id]
|
|
|
|
});
|
|
|
|
})
|
2014-11-19 17:55:43 +00:00
|
|
|
} else if (data.id == 'delete') {
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
}
|
2014-11-19 18:05:08 +00:00
|
|
|
}),
|
2014-11-19 17:55:43 +00:00
|
|
|
|
2014-11-19 18:31:06 +00:00
|
|
|
$deselectButton = Ox.Button({
|
2014-11-19 18:55:32 +00:00
|
|
|
title: 'close',
|
2014-11-19 18:31:06 +00:00
|
|
|
tooltip: Ox._('Done'),
|
|
|
|
type: 'image'
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
float: 'right',
|
|
|
|
margin: '4px'
|
|
|
|
})
|
|
|
|
.hide()
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
2014-11-19 18:55:32 +00:00
|
|
|
pandora.UI.set(
|
2014-11-19 18:31:06 +00:00
|
|
|
'entitiesSelection.' + type,
|
|
|
|
[]
|
2014-11-19 18:55:32 +00:00
|
|
|
);
|
2014-11-19 18:31:06 +00:00
|
|
|
}
|
2014-11-19 18:55:32 +00:00
|
|
|
}),
|
2014-11-19 18:31:06 +00:00
|
|
|
|
2014-11-19 17:55:43 +00:00
|
|
|
$itemBar = Ox.Bar({size: 24})
|
2014-11-19 18:31:06 +00:00
|
|
|
.append($itemMenu)
|
|
|
|
.append($deselectButton),
|
2014-11-19 17:55:43 +00:00
|
|
|
|
|
|
|
$itemStatus = Ox.Element()
|
|
|
|
.css({
|
|
|
|
fontSize: '9px',
|
|
|
|
marginTop: '2px',
|
|
|
|
textAlign: 'center'
|
|
|
|
})
|
|
|
|
.html(Ox._('No entity selected')),
|
|
|
|
|
|
|
|
$itemStatusbar = Ox.Bar({size: 16})
|
|
|
|
.append($itemStatus),
|
2014-11-19 16:04:45 +00:00
|
|
|
|
2014-11-19 17:55:43 +00:00
|
|
|
$itemPanel = Ox.SplitPanel({
|
2014-11-19 16:04:45 +00:00
|
|
|
elements: [
|
2014-11-19 17:55:43 +00:00
|
|
|
{element: $itemBar, size: 24},
|
|
|
|
{element: Ox.Element()},
|
|
|
|
{element: $itemStatusbar, size: 16}
|
2014-11-19 16:04:45 +00:00
|
|
|
],
|
|
|
|
orientation: 'vertical'
|
2014-11-19 19:21:59 +00:00
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
resize: function() {
|
|
|
|
// ...
|
|
|
|
}
|
2014-11-19 16:04:45 +00:00
|
|
|
}),
|
|
|
|
|
|
|
|
$content = Ox.SplitPanel({
|
|
|
|
elements: [
|
|
|
|
{
|
2014-11-19 18:37:13 +00:00
|
|
|
element: $listPanel,
|
2014-11-19 16:04:45 +00:00
|
|
|
resizable: true,
|
|
|
|
resize: [256, 384, 512],
|
|
|
|
size: 256
|
|
|
|
},
|
|
|
|
{
|
|
|
|
element: $entity
|
|
|
|
},
|
|
|
|
{
|
2014-11-19 17:55:43 +00:00
|
|
|
element: $itemPanel,
|
2014-11-19 16:04:45 +00:00
|
|
|
resizable: true,
|
|
|
|
resize: [256, 384, 512],
|
|
|
|
size: 256
|
|
|
|
}
|
|
|
|
],
|
|
|
|
orientation: 'horizontal'
|
2014-11-19 17:55:43 +00:00
|
|
|
}),
|
2014-11-19 16:04:45 +00:00
|
|
|
|
2014-11-19 17:55:43 +00:00
|
|
|
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: ...
|
|
|
|
});
|
2014-11-19 16:04:45 +00:00
|
|
|
|
|
|
|
return that;
|
|
|
|
|
|
|
|
};
|