159 lines
6.4 KiB
JavaScript
159 lines
6.4 KiB
JavaScript
'use strict';
|
|
|
|
oml.ui.list = function() {
|
|
|
|
var ui = oml.user.ui,
|
|
|
|
that = oml.ui[ui.listView + 'View']()
|
|
.bindEvent({
|
|
closepreview: function() {
|
|
oml.$ui.previewButton.options({value: false});
|
|
oml.$ui.previewDialog.close();
|
|
delete oml.$ui.previewDialog;
|
|
},
|
|
copy: function(data) {
|
|
oml.clipboard.copy(data.ids, 'book');
|
|
},
|
|
copyadd: function(data) {
|
|
oml.clipboard.copy(data.ids, 'book');
|
|
},
|
|
cut: function(data) {
|
|
var listData = oml.getListData();
|
|
if (listData.editable && listData.type == 'static') {
|
|
oml.clipboard.copy(data.ids, 'book');
|
|
oml.doHistory('cut', data.ids, ui._list, function() {
|
|
oml.UI.set({listSelection: []});
|
|
oml.$ui.folders.updateElement();
|
|
oml.$ui.list.updateElement();
|
|
});
|
|
}
|
|
},
|
|
cutadd: function(data) {
|
|
var listData = oml.getListData();
|
|
if (listData.editable && listData.type == 'static') {
|
|
oml.clipboard.add(data.ids, 'book');
|
|
oml.doHistory('cut', data.ids, ui._list, function() {
|
|
oml.UI.set({listSelection: []});
|
|
oml.$ui.folders.updateElement();
|
|
oml.$ui.list.updateElement();
|
|
});
|
|
}
|
|
},
|
|
'delete': function(data) {
|
|
var listData = oml.getListData();
|
|
if (listData.editable && listData.type == 'static') {
|
|
oml.doHistory('delete', data.ids, ui._list, function() {
|
|
oml.UI.set({listSelection: []});
|
|
oml.$ui.folders.updateItems();
|
|
oml.$ui.list.updateElement();
|
|
});
|
|
}
|
|
},
|
|
init: function(data) {
|
|
if (ui.find.conditions.length == 0 || (
|
|
ui.find.conditions.length == 1
|
|
&& ui.find.conditions[0].key == 'list'
|
|
&& ui.find.conditions[0].operator == '=='
|
|
)) {
|
|
oml.$ui.folders.updateItems(data.items);
|
|
}
|
|
oml.$ui.statusbar.set('total', data);
|
|
},
|
|
key_control_delete: function() {
|
|
var listData = oml.getListData();
|
|
if (listData.own) {
|
|
oml.ui.deleteItemsDialog().open();
|
|
}
|
|
},
|
|
key_shift_enter: function() {
|
|
var selected = that.options('selected');
|
|
if (selected.length) {
|
|
oml.UI.set({
|
|
item: selected[0],
|
|
itemView: 'book'
|
|
});
|
|
}
|
|
},
|
|
open: function(data) {
|
|
oml.UI.set({
|
|
item: data.ids[0],
|
|
itemView: 'info'
|
|
});
|
|
},
|
|
openpreview: function() {
|
|
if (!oml.$ui.previewDialog) {
|
|
oml.$ui.previewButton.options({value: true});
|
|
oml.$ui.previewDialog = oml.ui.previewDialog()
|
|
.open()
|
|
.bindEvent({
|
|
close: function() {
|
|
that.closePreview();
|
|
delete oml.$ui.previewDialog;
|
|
}
|
|
});
|
|
} else {
|
|
oml.$ui.previewDialog.updateElement();
|
|
}
|
|
},
|
|
paste: function(data) {
|
|
var items = oml.clipboard.paste();
|
|
if (items.length && oml.clipboard.type() == 'book' && oml.getListData().editable) {
|
|
oml.doHistory('paste', items, ui._list, function() {
|
|
oml.UI.set({listSelection: items});
|
|
oml.reloadList();
|
|
});
|
|
}
|
|
},
|
|
resize: function(data) {
|
|
// this is the resize event of the split panel
|
|
that.size();
|
|
},
|
|
select: function(data) {
|
|
oml.UI.set({listSelection: data.ids});
|
|
},
|
|
oml_find: function() {
|
|
if (ui.listView == oml.UI.getPrevious().listView) {
|
|
if (JSON.stringify(ui.listSort) == JSON.stringify(oml.UI.getPrevious().listSort)) {
|
|
that.reloadList();
|
|
} else {
|
|
//fixme: this reloads list twice.
|
|
//just setting sort will not update number of items
|
|
that.options({
|
|
sort: Ox.clone(ui.listSort, true)
|
|
});
|
|
that.reloadList();
|
|
}
|
|
}
|
|
},
|
|
oml_item: function() {
|
|
if (!ui.item) {
|
|
that.gainFocus();
|
|
} else {
|
|
that.options({selected: [ui.item]});
|
|
}
|
|
},
|
|
oml_listselection: function(data) {
|
|
if (ui._list == oml.UI.getPrevious()._list) {
|
|
that.options({selected: data.value});
|
|
}
|
|
},
|
|
oml_listsort: function(data) {
|
|
if (ui._list == oml.UI.getPrevious()._list) {
|
|
that.options({sort: data.value});
|
|
}
|
|
},
|
|
oml_sidebarsize: function(data) {
|
|
that.size();
|
|
}
|
|
});
|
|
|
|
oml.enableDragAndDrop(that);
|
|
|
|
that.updateElement = function() {
|
|
Ox.Request.clearCache('find');
|
|
that.reloadList(true);
|
|
};
|
|
|
|
return that;
|
|
|
|
};
|