pandora/static/js/documentsPanel.js

803 lines
25 KiB
JavaScript
Raw Normal View History

2014-01-07 08:24:00 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
'use strict';
pandora.ui.documentsPanel = function(options) {
var ui = pandora.user.ui,
hasItemView = false,
2014-01-09 08:06:01 +00:00
isItemView = options.isItemView,
2014-01-07 08:24:00 +00:00
columns = [
{
id: 'name',
operator: '+',
title: Ox._('Name'),
visible: true,
width: 256
},
{
format: function(value) {
return value.toUpperCase();
},
id: 'extension',
operator: '+',
title: Ox._('Extension'),
visible: true,
width: 64
},
{
align: 'right',
format: function(value) {
return Ox.isArray(value)
? Ox.formatDimensions(value, 'px')
: Ox.formatCount(value, 'page');
},
id: 'dimensions',
operator: '-',
title: Ox._('Dimensions'),
visible: true,
width: 128
},
{
align: 'right',
format: function(value) {
return Ox.formatValue(value, 'B');
},
id: 'size',
operator: '-',
title: Ox._('Size'),
visible: true,
width: 64
},
2014-01-07 11:38:19 +00:00
{
id: 'type',
operator: '+',
title: Ox._('Type'),
visible: true,
width: 128
},
2014-01-07 08:24:00 +00:00
{
id: 'description',
operator: '+',
title: Ox._('Description'),
visible: true,
width: 256
},
{
align: 'right',
id: 'matches',
operator: '-',
title: Ox._('Matches'),
visible: true,
width: 64
},
{
id: 'user',
operator: '+',
title: Ox._('User'),
visible: true,
width: 128
},
{
align: 'right',
format: function(value) {
return Ox.formatDate(value, '%F %T');
},
id: 'created',
operator: '-',
title: Ox._('Created'),
visible: true,
width: 144
},
{
align: 'right',
format: function(value) {
return Ox.formatDate(value, '%F %T');
},
id: 'modified',
operator: '-',
title: Ox._('Modified'),
visible: true,
width: 144
}
],
2014-01-07 11:38:19 +00:00
$listBar = Ox.Bar({size: 24}),
2014-01-07 08:24:00 +00:00
2014-01-09 08:06:01 +00:00
$addButton = (isItemView ? Ox.Button({
title: 'add',
tooltip: Ox._('Add Documents...'),
type: 'image'
}) : Ox.FileButton({
image: 'upload',
tooltip: Ox._('Upload Documents...'),
2014-01-07 08:24:00 +00:00
type: 'image'
})
2014-01-09 08:06:01 +00:00
)
2014-01-07 08:24:00 +00:00
.css({float: 'left', margin: '4px 2px 4px 4px'})
.bindEvent({
2014-01-09 08:06:01 +00:00
click: function(data) {
2014-01-07 12:40:33 +00:00
if (isItemView) {
2014-01-07 14:29:12 +00:00
editDocuments();
2014-01-07 12:40:33 +00:00
} else {
2014-01-09 08:06:01 +00:00
uploadDocuments(data);
2014-01-07 12:40:33 +00:00
}
2014-01-07 08:24:00 +00:00
}
})
2014-01-07 11:38:19 +00:00
.appendTo($listBar),
2014-01-07 08:24:00 +00:00
$viewSelect = Ox.Select({
items: [
2014-01-07 11:38:19 +00:00
{id: 'list', title: Ox._('View as List')},
{id: 'grid', title: Ox._('View as Grid')}
2014-01-07 08:24:00 +00:00
],
2014-01-07 11:38:19 +00:00
value: ui.documentsView,
width: 128
2014-01-07 08:24:00 +00:00
})
.css({float: 'left', margin: '4px 2px'})
.bindEvent({
change: function(data) {
2014-01-07 11:38:19 +00:00
pandora.UI.set({documentsView: data.value});
2014-01-07 08:24:00 +00:00
}
})
2014-01-07 11:38:19 +00:00
.appendTo($listBar),
2014-01-07 08:24:00 +00:00
$sortSelect = Ox.Select({
items: columns.map(function(column) {
return {
id: column.id,
title: Ox._('Sort by ' + column.title)
};
}),
2014-01-07 11:38:19 +00:00
value: ui.documentsSort[0].key,
width: 128
2014-01-07 08:24:00 +00:00
})
.bindEvent({
change: function(data) {
var key = data.value;
pandora.UI.set({documentsSort: [{
2014-01-07 08:37:03 +00:00
key: key,
2014-01-07 08:24:00 +00:00
operator: Ox.getObjectById(columns, key).operator
}]});
}
}),
$orderButton = Ox.Button({
overlap: 'left',
title: getOrderButtonTitle(),
tooltip: getOrderButtonTooltip(),
type: 'image'
})
.bindEvent({
click: function() {
pandora.UI.set({documentsSort: [{
key: ui.documentsSort[0].key,
operator: ui.documentsSort[0].operator == '+' ? '-' : '+'
}]});
}
}),
$sortElement = Ox.FormElementGroup({
elements: [$sortSelect, $orderButton],
float: 'right'
})
.css({float: 'left', margin: '4px 2px'})
2014-01-07 11:38:19 +00:00
.appendTo($listBar),
2014-01-07 08:24:00 +00:00
$findSelect = Ox.Select({
items: isItemView ? [
{id: 'all', title: Ox._('Find: All')},
{id: 'name', title: Ox._('Find: Name')}
] : [
{id: 'all', title: Ox._('Find: All')},
{id: 'name', title: Ox._('Find: Name')},
{id: 'user', title: Ox._('Find: User')}
],
overlap: 'right',
type: 'image'
})
.bindEvent({
change: function(data) {
2014-01-07 12:40:33 +00:00
$findInput.options({placeholder: data.title}).focusInput();
2014-01-07 08:24:00 +00:00
}
}),
$findInput = Ox.Input({
changeOnKeypress: true,
clear: true,
placeholder: Ox._('Find: All'),
width: 192
})
.bindEvent({
change: updateList
}),
$findElement = Ox.FormElementGroup({
elements: [
$findSelect,
$findInput
]
})
.css({float: 'right', margin: '4px 4px 4px 2px'})
2014-01-07 11:38:19 +00:00
.appendTo($listBar),
2014-01-07 08:24:00 +00:00
$list = renderList(),
2014-01-07 11:38:19 +00:00
$listStatusbar = Ox.Bar({size: 16}).css({textAlign: 'center'}),
2014-01-07 08:24:00 +00:00
2014-01-07 11:38:19 +00:00
$listStatus = Ox.Element()
2014-01-07 08:24:00 +00:00
.css({
margin: '2px 4px',
fontSize: '9px',
overflow: 'hidden',
textOverflow: 'ellipsis'
})
.html(Ox._('Loading...'))
2014-01-07 11:38:19 +00:00
.appendTo($listStatusbar),
2014-01-07 08:24:00 +00:00
$listPanel = Ox.SplitPanel({
elements: [
2014-01-07 11:38:19 +00:00
{element: $listBar, size: 24},
2014-01-07 08:24:00 +00:00
{element: $list},
2014-01-07 11:38:19 +00:00
{element: $listStatusbar, size: 16}
2014-01-07 08:24:00 +00:00
],
orientation: 'vertical'
2014-01-07 11:38:19 +00:00
})
.bindEvent({
resize: function() {
$list.size();
},
2014-01-07 08:24:00 +00:00
}),
2014-01-07 11:38:19 +00:00
$itemBar = Ox.Bar({size: 24}),
2014-01-07 08:24:00 +00:00
$itemMenu = Ox.MenuButton({
items: isItemView ? [
2014-01-07 11:38:19 +00:00
{id: 'open', title: '', keyboard: 'return'},
2014-01-07 08:24:00 +00:00
{id: 'edit', title: ''},
2014-01-07 12:40:33 +00:00
{id: 'remove', title: '', keyboard: 'delete'}
2014-01-07 08:24:00 +00:00
] : [
2014-01-07 11:38:19 +00:00
{id: 'open', title: '', keyboard: 'return'},
2014-01-07 08:24:00 +00:00
{id: 'addtoitem', title: ''},
{id: 'addtolist', title: ''},
{id: 'replace', title: Ox._('Replace Document...')},
{id: 'delete', title: '', keyboard: 'delete'}
],
title: 'set',
2014-01-07 11:38:19 +00:00
tooltip: 'Options',
type: 'image'
2014-01-07 08:24:00 +00:00
})
2014-01-07 11:38:19 +00:00
.css({float: 'left', margin: '4px'})
2014-01-07 08:24:00 +00:00
.bindEvent({
2014-01-07 14:29:12 +00:00
click: function(data) {
2014-01-09 08:06:01 +00:00
if (data.id == 'addtoitem') {
addToItem();
} else if (data.id == 'addtolist') {
addToList();
} else if (data.id == 'open') {
2014-01-07 14:29:12 +00:00
openDocuments();
} else if (data.id == 'edit') {
editDocuments();
2014-01-09 08:06:01 +00:00
} else if (data.id == 'replace') {
console.log('replace', data);
replaceDocument(data.files);
2014-01-07 14:29:12 +00:00
} else if (data.id == 'remove') {
removeDocuments();
} else if (data.id == 'delete') {
deleteDocuments();
}
2014-01-07 08:24:00 +00:00
}
})
2014-01-07 11:38:19 +00:00
.appendTo($itemBar),
2014-01-07 08:24:00 +00:00
$deselectButton = Ox.Button({
title: 'close',
tooltip: Ox._('Done'),
type: 'image'
})
.css({float: 'right', margin: '4px 4px 4px 2px'})
.bindEvent({
click: function() {
pandora.UI.set(
'documentsSelection.' + (isItemView ? ui.item : ''),
[]
2014-01-07 11:38:19 +00:00
);
2014-01-07 08:24:00 +00:00
}
})
2014-01-07 11:38:19 +00:00
.appendTo($itemBar),
$selectButton = Ox.ButtonGroup({
buttons: [
{id: 'previous', title: 'left'},
{id: 'next', title: 'right'}
],
type: 'image'
})
.css({float: 'right', margin: '4px 2px'})
.bindEvent({
click: function(data) {
}
})
.appendTo($itemBar),
2014-01-07 08:24:00 +00:00
$item = Ox.Element().css({overflowY: 'scroll'}),
$preview,
$form,
2014-01-07 11:38:19 +00:00
$itemStatusbar = Ox.Bar({size: 16})
.css({textAlign: 'center'}),
$itemStatus = Ox.Element()
.css({
margin: '2px 4px',
fontSize: '9px',
overflow: 'hidden',
textOverflow: 'ellipsis'
})
.appendTo($itemStatusbar),
2014-01-07 08:24:00 +00:00
$itemPanel = Ox.SplitPanel({
elements: [
2014-01-07 11:38:19 +00:00
{element: $itemBar, size: 24},
{element: $item},
{element: $itemStatusbar, size: 16}
2014-01-07 08:24:00 +00:00
],
orientation: 'vertical'
})
.bindEvent({
resize: function(data) {
2014-01-07 11:38:19 +00:00
ui.documentSize = data.size;
2014-01-09 08:06:01 +00:00
//fixme: resize preview panel
2014-01-07 08:24:00 +00:00
},
resizeend: function(data) {
// set to 0 so that UI.set registers a change of the value
ui.documentSize = 0;
pandora.UI.set({documentSize: data.size});
2014-01-09 08:06:01 +00:00
//fixme: resize preview panel instead
selectDocuments();
2014-01-07 08:24:00 +00:00
},
2014-01-07 14:29:12 +00:00
toggle: function(data) {
2014-01-07 08:24:00 +00:00
pandora.UI.set({showDocument: !data.collapsed});
}
}),
that = Ox.SplitPanel({
elements: [
{
element: $listPanel
},
{
collapsible: isItemView,
2014-01-07 14:29:12 +00:00
collapsed: isItemView && !ui.showDocument,
2014-01-07 08:24:00 +00:00
element: $itemPanel,
2014-01-07 08:37:03 +00:00
size: ui.documentSize,
2014-01-07 11:38:19 +00:00
resizable: true,
2014-01-07 14:29:12 +00:00
resize: [192, 256, 320, 384],
tooltip: 'document <span class="OxBright">'
+ Ox.SYMBOLS.SHIFT + 'D</span>'
2014-01-07 08:24:00 +00:00
}
],
orientation: 'horizontal'
})
.bindEvent({
pandora_documentssort: function(data) {
updateSortElement();
$list.options({sort: data.value});
2014-01-07 11:38:19 +00:00
},
pandora_documentsview: function(data) {
$listPanel.replaceElement(1, $list = renderList());
2014-01-07 14:29:12 +00:00
},
pandora_showdocument: function(data) {
isItemView && that.toggle(1);
2014-01-07 08:24:00 +00:00
}
});
that.bindEvent(
2014-01-07 11:38:19 +00:00
'pandora_documentsselection.' + (isItemView ? ui.item.toLowerCase() : ''),
2014-01-07 08:24:00 +00:00
selectDocuments
2014-01-07 08:37:03 +00:00
);
2014-01-07 08:24:00 +00:00
function addDocuments() {
2014-01-07 11:38:19 +00:00
pandora.$ui.documentsDialog = pandora.ui.documentsDialog().open();
2014-01-07 08:24:00 +00:00
}
2014-01-09 08:06:01 +00:00
function addToItem() {
pandora.api.addDocument({
item: ui.item,
ids: ui.documentsSelection['']
}, function() {
Ox.Request.clearCache();
if (ui.itemView == 'documents') {
//fixme just upload list here
//self.$documentsList.reloadList();
pandora.$ui.contentPanel.replaceElement(1,
pandora.$ui.item = pandora.ui.item());
}
});
}
function addToList() {
pandora.api.addDocument({
list: ui._list,
ids: ui.documentsSelection['']
}, function() {
Ox.Request.clearCache();
if (ui.item && ui.itemView == 'documents') {
//fixme just upload list here
//self.$documentsList.reloadList();
pandora.$ui.contentPanel.replaceElement(1,
pandora.$ui.item = pandora.ui.item());
}
});
}
2014-01-07 12:40:33 +00:00
function closeDocuments() {
if (pandora.$ui.documentDialog) {
pandora.$ui.documentDialog.close();
}
}
2014-01-07 08:24:00 +00:00
function deleteDocuments() {
pandora.ui.deleteDocumentDialog($list.options('selected'), function() {
Ox.Request.clearCache();
// ...
$list.reloadList();
}).open();
}
2014-01-07 11:38:19 +00:00
function editDocuments() {
2014-01-08 08:35:02 +00:00
pandora.UI.set('documentsSelection.', $list.options('selected'));
2014-01-07 11:38:19 +00:00
pandora.$ui.documentsDialog = pandora.ui.documentsDialog().open();
}
2014-01-07 08:24:00 +00:00
function getOrderButtonTitle() {
return ui.documentsSort[0].operator == '+' ? 'up' : 'down';
}
function getOrderButtonTooltip() {
2014-01-07 12:40:33 +00:00
return Ox._(ui.documentsSort[0].operator == '+' ? 'Ascending' : 'Descending');
2014-01-07 08:24:00 +00:00
}
function getPreviewSize() {
2014-01-07 11:38:19 +00:00
var ratio = $list.value($list.options('selected')[0], 'ratio'),
2014-01-07 08:24:00 +00:00
size = ui.documentSize - 16 - Ox.UI.SCROLLBAR_SIZE,
height = ratio > 1 ? size / ratio : size,
width = ratio > 1 ? size : size * ratio,
left = Math.floor((size - width) / 2);
return {
height: height,
// fixme: CSS gets applied twice, to image and enclosing element
margin: [8, 8, 8, 8 + left].map(function(px) {
return Math.round(px / 2) + 'px';
}).join(' '),
width: width
};
}
2014-01-07 12:40:33 +00:00
function openDocuments() {
if (!pandora.$ui.documentDialog) {
pandora.$ui.documentDialog = pandora.ui.documentDialog({
index: 0,
items: $list.options('selected').map(function(id) {
return $list.value(id);
})
})
.bindEvent({
close: function() {
$list.closePreview();
}
})
.open();
} else {
pandora.$ui.documentDialog.update({
index: 0,
items: $list.options('selected').map(function(id) {
return $list.value(id);
})
});
}
}
2014-01-09 08:06:01 +00:00
function replaceDocument(file) {
var id = $list.options('selected')[0];
}
2014-01-07 08:24:00 +00:00
function removeDocuments() {
pandora.api.removeDocument({
item: ui.item,
ids: $list.options('selected')
}, function() {
Ox.Request.clearCache();
// ...
$list.reloadList();
});
}
function renderForm() {
2014-01-07 11:38:19 +00:00
var item = $list.value($list.options('selected')[0]),
2014-01-07 08:24:00 +00:00
editable = item.user == pandora.user.username
|| pandora.site.capabilities.canEditDocuments[pandora.user.level],
inputWidth = ui.documentSize - 16 - Ox.UI.SCROLLBAR_SIZE,
labelWidth = 80;
return Ox.Form({
items: [
Ox.Input({
disabled: !editable,
id: 'name',
label: Ox._('Name'),
labelWidth: labelWidth,
value: item.name,
width: inputWidth
}),
Ox.Input({
disabled: true,
id: 'extension',
label: Ox._('Extension'),
labelWidth: labelWidth,
value: item.extension,
width: inputWidth
}),
Ox.Input({
disabled: true,
id: 'dimensions',
label: Ox._('Dimensions'),
labelWidth: labelWidth,
2014-01-07 11:38:19 +00:00
value: Ox.isArray(item.dimensions)
? Ox.formatDimensions(item.dimensions, 'px')
: Ox.formatCount(item.dimensions, 'page'),
2014-01-07 08:24:00 +00:00
width: inputWidth
}),
Ox.Input({
disabled: true,
id: 'size',
label: Ox._('Size'),
labelWidth: labelWidth,
value: Ox.formatValue(item.size, 'B'),
width: inputWidth
}),
Ox.Input({
disabled: true,
id: 'matches',
label: Ox._('Matches'),
labelWidth: labelWidth,
value: item.matches,
width: inputWidth
}),
Ox.Input({
disabled: true,
id: 'username',
label: Ox._('Username'),
labelWidth: labelWidth,
value: item.user,
width: inputWidth
}),
Ox.Input({
disabled: !editable,
id: 'type',
label: Ox._('Type'),
labelWidth: labelWidth,
value: item.type,
width: inputWidth
}),
Ox.Input({
disabled: !editable,
height: 256,
id: 'description',
placeholder: Ox._('Description'),
type: 'textarea',
value: item.description,
width: inputWidth
})
],
width: 240
})
.css({margin: '12px 8px 8px 8px'})
.bindEvent({
change: function(event) {
var data = Ox.extend({id: item.id}, event.id, event.data.value);
2014-01-08 04:32:57 +00:00
if (isItemView) {
data.item = ui.item;
}
2014-01-07 08:24:00 +00:00
pandora.api.editDocument(data, function(result) {
$list.value(result.data.id, event.id, result.data[event.id]);
if (event.id == 'name') {
$list.value(item.id, 'id', result.data.id);
}
Ox.Request.clearCache('findDocuments');
$list.reloadList();
});
}
});
}
function renderList() {
var options = {
items: pandora.api.findDocuments,
2014-01-07 12:40:33 +00:00
keys: ['dimensions', 'extension', 'id', 'name', 'ratio', 'size'],
2014-01-07 15:54:20 +00:00
query: {
2014-01-08 04:32:57 +00:00
conditions: isItemView ? [{ key: 'item', value: ui.item, operator: '==' }] : [],
2014-01-07 15:54:20 +00:00
operator: '&'
},
2014-01-08 08:35:02 +00:00
selected: ui.documentsSelection[isItemView ? ui.item : ''] || [],
2014-01-07 08:24:00 +00:00
sort: ui.documentsSort.concat([
{key: 'extension', operator: '+'},
2014-01-07 11:38:19 +00:00
{key: 'name', operator: '+'}
2014-01-07 08:24:00 +00:00
]),
unique: 'id'
};
return (ui.documentsView == 'list' ? Ox.TableList(Ox.extend(options, {
columns: columns,
columnsVisible: true,
scrollbarVisible: true,
})) : Ox.IconList(Ox.extend(options, {
item: function(data, sort, size) {
var sortKey = sort[0].key,
infoKey = sortKey == 'name' ? 'extension' : sortKey,
info = (
Ox.getObjectById(columns, infoKey).format || Ox.identity
)(data[infoKey]),
size = size || 128;
return {
2014-01-07 11:38:19 +00:00
height: Math.round(data.ratio > 1 ? size / data.ratio : size),
2014-01-07 08:24:00 +00:00
id: data.id,
info: info,
title: data.name,
url: '/documents/' + data.id + '/256p.jpg',
2014-01-07 11:38:19 +00:00
width: Math.round(data.ratio > 1 ? size : size * data.ratio)
2014-01-07 08:24:00 +00:00
};
},
size: 128
})))
.bindEvent({
add: uploadDocuments,
2014-01-07 12:40:33 +00:00
closepreview: closeDocuments,
2014-01-07 08:24:00 +00:00
'delete': deleteDocuments,
init: function(data) {
2014-01-07 11:38:19 +00:00
$listStatus.html(
2014-01-07 08:24:00 +00:00
Ox.toTitleCase(Ox.formatCount(data.items, 'document'))
+ ', ' + Ox.formatValue(data.size, 'B')
);
},
2014-01-07 14:29:12 +00:00
key_escape: function() {
pandora.UI.set({document: ''});
},
2014-01-07 12:40:33 +00:00
open: openDocuments,
openpreview: openDocuments,
2014-01-07 11:38:19 +00:00
select: function(data) {
2014-01-07 08:24:00 +00:00
pandora.UI.set(
'documentsSelection.' + (isItemView ? ui.item : ''),
data.ids
);
},
2014-01-07 11:38:19 +00:00
sort: function(data) {
pandora.UI.set({documentsSort: [data]});
2014-01-07 08:24:00 +00:00
}
2014-01-07 15:54:20 +00:00
})
.bindEventOnce({
load: function() {
selectDocuments();
}
2014-01-07 08:24:00 +00:00
});
}
function renderPreview() {
2014-01-07 11:38:19 +00:00
var selected = $list.options('selected')[0],
size = getPreviewSize(),
2014-01-07 08:24:00 +00:00
src = '/documents/' + selected + '/256p.jpg';
return Ox.ImageElement({
height: size.height,
src: src,
width: size.width
})
.css({
2014-01-07 11:38:19 +00:00
borderRadius: '8px',
2014-01-07 08:24:00 +00:00
margin: size.margin,
2014-01-07 11:38:19 +00:00
cursor: 'pointer'
2014-01-07 08:24:00 +00:00
})
.on({
2014-01-07 12:40:33 +00:00
click: openDocuments
// FIXME
/*
var item = $list.value(selected);
window.open(
'/documents/' + selected + '/' + item.name + '.' + item.extension,
'_blank'
);
*/
2014-01-07 08:24:00 +00:00
});
}
function selectDocuments() {
2014-01-07 11:38:19 +00:00
var selected = ui.documentsSelection[isItemView ? ui.item : ''] || [],
string = selected.length < 2 ? 'Document'
: selected.length + ' Documents';
$list.options({selected: selected});
2014-01-07 08:24:00 +00:00
$itemMenu.setItemTitle('open', Ox._('Open ' + string));
if (isItemView) {
2014-01-07 11:38:19 +00:00
$itemMenu.setItemTitle('edit', Ox._('Edit ' + string + '...'))
.setItemTitle('remove', Ox._('Remove ' + string));
2014-01-07 08:24:00 +00:00
} else {
$itemMenu.setItemTitle('addtoitem', Ox._(
2014-01-07 08:37:03 +00:00
'Add ' + string + ' to Current '
2014-01-07 08:24:00 +00:00
+ pandora.site.itemName.singular
))
.setItemTitle('addtolist', Ox._(
'Add ' + string + ' to All Items in Current List'
))
.setItemTitle('delete', Ox._('Delete ' + string + '...'));
}
2014-01-07 11:38:19 +00:00
$itemMenu[selected.length ? 'show' : 'hide']();
$selectButton[selected.length > 1 ? 'show' : 'hide']();
$deselectButton[selected.length ? 'show' : 'hide']();
2014-01-07 08:24:00 +00:00
$item.empty();
2014-01-07 11:38:19 +00:00
if (selected.length) {
2014-01-07 08:24:00 +00:00
$preview = renderPreview().appendTo($item);
$form = renderForm().appendTo($item);
}
2014-01-07 14:29:12 +00:00
$itemStatus.html(
selected.length
? Ox.formatCount(selected.length, 'Document')
: Ox._('No document selected')
);
2014-01-07 08:24:00 +00:00
}
function updateList() {
var key = $findSelect.value(),
value = $findInput.value(),
query = {
2014-01-07 15:54:20 +00:00
conditions: [].concat(
isItemView
2014-01-08 04:32:57 +00:00
? [{ key: 'item', value: ui.item, operator: '==' }]
2014-01-07 08:24:00 +00:00
: [],
2014-01-07 15:54:20 +00:00
value
? {
conditions: [].concat(
key != 'user'
? [{key: 'name', value: value, operator: '='}]
: [],
key == 'all'
? [{key: 'description', value: value, operator: '='}]
: [],
key != 'name'
? [{key: 'user', value: value, operator: '='}]
: []
),
operator: '|'
}
: []
),
operator: '&'
2014-01-07 08:24:00 +00:00
};
$list.options({query: query});
}
function updateSortElement() {
$sortSelect.value(ui.documentsSort[0].key);
$orderButton.options({
title: getOrderButtonTitle(),
tooltip: getOrderButtonTooltip()
});
}
function uploadDocuments(data) {
pandora.ui.uploadDocumentDialog(data.files, function(files) {
if (files) {
Ox.Request.clearCache('findDocuments');
$list.bindEventOnce({
load: function() {
$list.options({selected: [files.ids]});
}
})
.reloadList();
}
}).open();
}
return that;
2014-01-07 15:54:20 +00:00
}