2014-05-04 17:26:43 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
oml.ui.list = function() {
|
|
|
|
|
|
|
|
var ui = oml.user.ui,
|
|
|
|
|
|
|
|
that = oml.ui[ui.listView + 'View']()
|
|
|
|
.bindEvent({
|
2016-01-17 10:13:36 +00:00
|
|
|
add: function(data) {
|
|
|
|
var keys = data.keys || '';
|
|
|
|
if (!index && (
|
|
|
|
keys != 'shift' || ui.listSelection
|
|
|
|
)) {
|
|
|
|
oml.addList(
|
|
|
|
Ox.contains(keys, 'alt'),
|
|
|
|
Ox.contains(keys, 'shift')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
2014-05-04 17:26:43 +00:00
|
|
|
closepreview: function() {
|
2016-01-18 05:45:33 +00:00
|
|
|
oml.$ui.mainMenu.setItemTitle('preview', Ox._('Show Preview'));
|
2014-05-04 17:26:43 +00:00
|
|
|
oml.$ui.previewButton.options({value: false});
|
|
|
|
oml.$ui.previewDialog.close();
|
|
|
|
delete oml.$ui.previewDialog;
|
|
|
|
},
|
2014-05-17 11:45:57 +00:00
|
|
|
copy: function(data) {
|
2014-05-19 15:00:33 +00:00
|
|
|
oml.clipboard.copy(data.ids, 'book');
|
2014-05-17 11:45:57 +00:00
|
|
|
},
|
|
|
|
copyadd: function(data) {
|
2014-05-19 15:00:33 +00:00
|
|
|
oml.clipboard.copy(data.ids, 'book');
|
2014-05-17 11:45:57 +00:00
|
|
|
},
|
|
|
|
cut: function(data) {
|
|
|
|
var listData = oml.getListData();
|
|
|
|
if (listData.editable && listData.type == 'static') {
|
2014-05-19 15:00:33 +00:00
|
|
|
oml.clipboard.copy(data.ids, 'book');
|
2014-05-17 11:45:57 +00:00
|
|
|
oml.doHistory('cut', data.ids, ui._list, function() {
|
|
|
|
oml.UI.set({listSelection: []});
|
2016-01-12 08:52:20 +00:00
|
|
|
oml.reloadLists();
|
2014-05-17 11:45:57 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
cutadd: function(data) {
|
|
|
|
var listData = oml.getListData();
|
|
|
|
if (listData.editable && listData.type == 'static') {
|
2014-05-19 15:00:33 +00:00
|
|
|
oml.clipboard.add(data.ids, 'book');
|
2014-05-17 11:45:57 +00:00
|
|
|
oml.doHistory('cut', data.ids, ui._list, function() {
|
|
|
|
oml.UI.set({listSelection: []});
|
2016-01-12 08:52:20 +00:00
|
|
|
oml.reloadLists();
|
2014-05-17 11:45:57 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2014-05-17 14:42:46 +00:00
|
|
|
'delete': function(data) {
|
2014-05-17 11:45:57 +00:00
|
|
|
var listData = oml.getListData();
|
|
|
|
if (listData.editable && listData.type == 'static') {
|
|
|
|
oml.doHistory('delete', data.ids, ui._list, function() {
|
|
|
|
oml.UI.set({listSelection: []});
|
2016-01-12 08:52:20 +00:00
|
|
|
oml.reloadLists();
|
2014-05-17 11:45:57 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2014-05-04 17:26:43 +00:00
|
|
|
init: function(data) {
|
2014-05-18 23:24:04 +00:00
|
|
|
if (ui.find.conditions.length == 0 || (
|
|
|
|
ui.find.conditions.length == 1
|
|
|
|
&& ui.find.conditions[0].key == 'list'
|
|
|
|
&& ui.find.conditions[0].operator == '=='
|
|
|
|
)) {
|
2019-01-31 16:34:56 +00:00
|
|
|
oml.$ui.folders.updateItems(ui.find.conditions.length ? ui.find.conditions[0].value : "", data.items);
|
2014-05-18 23:24:04 +00:00
|
|
|
}
|
2014-05-04 17:26:43 +00:00
|
|
|
oml.$ui.statusbar.set('total', data);
|
|
|
|
},
|
2016-01-17 10:26:54 +00:00
|
|
|
key_control_d: function(event) {
|
2016-01-17 10:18:03 +00:00
|
|
|
var items = ui.listSelection.filter(function(id) {
|
|
|
|
return oml.$ui.list.value(id, 'mediastate') == 'unavailable';
|
|
|
|
});
|
|
|
|
if (items.length) {
|
|
|
|
oml.api.addListItems({
|
|
|
|
items: items,
|
|
|
|
list: ':'
|
|
|
|
}, function(result) {
|
|
|
|
Ox.Request.clearCache();
|
|
|
|
// FIXME: reload?
|
|
|
|
});
|
|
|
|
}
|
2016-01-17 10:26:54 +00:00
|
|
|
event.preventDefault();
|
2016-01-17 10:18:03 +00:00
|
|
|
},
|
2014-05-17 11:45:57 +00:00
|
|
|
key_control_delete: function() {
|
2016-01-16 07:19:08 +00:00
|
|
|
if (that.options('selected').filter(function(id) {
|
|
|
|
return that.value(id, 'mediastate') == 'available';
|
|
|
|
}).length) {
|
2014-05-17 11:45:57 +00:00
|
|
|
oml.ui.deleteItemsDialog().open();
|
|
|
|
}
|
|
|
|
},
|
2014-05-18 23:24:04 +00:00
|
|
|
key_shift_enter: function() {
|
|
|
|
var selected = that.options('selected');
|
|
|
|
if (selected.length) {
|
|
|
|
oml.UI.set({
|
|
|
|
item: selected[0],
|
|
|
|
itemView: 'book'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2016-01-16 07:19:08 +00:00
|
|
|
load: function() {
|
|
|
|
if (oml._updateEditMenu) {
|
|
|
|
oml.$ui.mainMenu.updateElement('editMenu');
|
|
|
|
oml._udpateEditMenu = false;
|
|
|
|
}
|
|
|
|
},
|
2014-05-04 17:26:43 +00:00
|
|
|
open: function(data) {
|
|
|
|
oml.UI.set({
|
|
|
|
item: data.ids[0],
|
|
|
|
itemView: 'info'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
openpreview: function() {
|
|
|
|
if (!oml.$ui.previewDialog) {
|
2016-01-18 05:45:33 +00:00
|
|
|
oml.$ui.mainMenu.setItemTitle('preview', Ox._('Hide Preview'));
|
2014-05-04 17:26:43 +00:00
|
|
|
oml.$ui.previewButton.options({value: true});
|
|
|
|
oml.$ui.previewDialog = oml.ui.previewDialog()
|
|
|
|
.open()
|
|
|
|
.bindEvent({
|
|
|
|
close: function() {
|
|
|
|
that.closePreview();
|
|
|
|
delete oml.$ui.previewDialog;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2014-05-17 11:45:57 +00:00
|
|
|
oml.$ui.previewDialog.updateElement();
|
2014-05-04 17:26:43 +00:00
|
|
|
}
|
|
|
|
},
|
2014-05-19 15:00:33 +00:00
|
|
|
paste: function(data) {
|
|
|
|
var items = oml.clipboard.paste();
|
2016-01-08 04:11:22 +00:00
|
|
|
if (
|
|
|
|
items.length
|
|
|
|
&& oml.clipboard.type() == 'book'
|
|
|
|
&& oml.getListData().editable
|
|
|
|
) {
|
2014-05-19 15:00:33 +00:00
|
|
|
oml.doHistory('paste', items, ui._list, function() {
|
|
|
|
oml.UI.set({listSelection: items});
|
2016-01-12 08:52:20 +00:00
|
|
|
oml.reloadLists();
|
2014-05-19 15:00:33 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2014-05-04 17:26:43 +00:00
|
|
|
select: function(data) {
|
|
|
|
oml.UI.set({listSelection: data.ids});
|
|
|
|
},
|
|
|
|
oml_find: function() {
|
2017-07-13 08:49:34 +00:00
|
|
|
// list gets recreated in listPanel to avoid double reload if list and listSort changes
|
|
|
|
// that.reloadList();
|
2014-05-04 17:26:43 +00:00
|
|
|
},
|
|
|
|
oml_item: function() {
|
|
|
|
if (!ui.item) {
|
|
|
|
that.gainFocus();
|
|
|
|
} else {
|
|
|
|
that.options({selected: [ui.item]});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
oml_listselection: function(data) {
|
2016-01-16 08:06:26 +00:00
|
|
|
that.options({selected: data.value});
|
2014-05-04 17:26:43 +00:00
|
|
|
},
|
|
|
|
oml_listsort: function(data) {
|
2016-01-19 04:22:03 +00:00
|
|
|
that.options({sort: data.value});
|
2014-05-04 17:26:43 +00:00
|
|
|
},
|
|
|
|
oml_sidebarsize: function(data) {
|
|
|
|
that.size();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-05-12 12:57:47 +00:00
|
|
|
oml.enableDragAndDrop(that);
|
|
|
|
|
2014-05-17 11:45:57 +00:00
|
|
|
that.updateElement = function() {
|
2014-05-17 14:42:46 +00:00
|
|
|
Ox.Request.clearCache('find');
|
2014-05-17 11:45:57 +00:00
|
|
|
that.reloadList(true);
|
|
|
|
};
|
|
|
|
|
2014-05-04 17:26:43 +00:00
|
|
|
return that;
|
|
|
|
|
2014-05-19 18:12:02 +00:00
|
|
|
};
|