cablegates/static/js/pandora/ui/group.js

180 lines
7 KiB
JavaScript
Raw Normal View History

2011-07-29 18:37:11 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
pandora.ui.group = function(id) {
2011-06-06 15:48:11 +00:00
var i = pandora.user.ui.groups.indexOf(id),
panelWidth = pandora.$ui.document.width() - (pandora.user.ui.showSidebar * pandora.user.ui.sidebarSize) - 1,
title = Ox.getObjectById(pandora.site.groups, id).title,
//width = pandora.getGroupWidth(i, panelWidth),
2011-06-19 17:49:25 +00:00
that = Ox.TextList({
2011-05-25 19:42:45 +00:00
columns: [
{
align: 'left',
id: 'name',
operator: id == 'year' ? '-' : '+',
title: title,
unique: true,
visible: true,
width: pandora.user.ui.groupsSizes[i] - 40 - Ox.UI.SCROLLBAR_SIZE
2011-05-25 19:42:45 +00:00
},
{
align: 'right',
id: 'items',
operator: '-',
title: '#',
visible: true,
width: 40
}
],
columnsVisible: true,
id: 'group_' + id,
items: function(data, callback) {
2011-08-18 11:32:47 +00:00
//if (pandora.user.ui.showGroups) {
delete data.keys;
return pandora.api.find($.extend(data, {
group: id,
query: pandora.user.ui.groupsData[i].query
2011-08-18 11:32:47 +00:00
}), callback);
//} else {
// callback({data: {items: data.keys ? [] : 0}});
//}
2011-05-25 19:42:45 +00:00
},
scrollbarVisible: true,
selected: pandora.user.ui.groupsData[i].selected,
sort: [{
key: id == 'year' ? 'name' : 'items',
operator: '-'
}]
2011-05-25 19:42:45 +00:00
})
.bindEvent({
paste: function(event, data) {
2011-06-06 15:48:11 +00:00
pandora.$ui.list.triggerEvent('paste', data);
2011-05-25 19:42:45 +00:00
},
select: function(event, data) {
var conditions = data.ids.map(function(value) {
return {
key: id,
value: value,
operator: '='
};
}),
index = pandora.user.ui.groupsData[i].index;
if (Ox.isArray(index)) {
// this group had multiple selections and the | query
// was on the top level, i.e. not bracketed
pandora.user.ui.query = {
conditions: conditions,
operator: conditions.length > 1 ? '|' : ''
}
} else {
if (index == -1) {
// this group had no selection, i.e. no query
index = pandora.user.ui.query.conditions.length;
if (pandora.user.ui.query.operator == '|') {
pandora.user.ui.query = {
conditions: [pandora.user.ui.query],
operator: '&'
};
index = 1;
} else {
pandora.user.ui.query.operator = index ? '&' : '';
}
}
if (conditions.length == 0) {
pandora.user.ui.query.conditions.splice(index, 1);
if (pandora.user.ui.query.conditions.length == 1) {
pandora.user.ui.query.operator = '';
}
} else if (conditions.length == 1) {
pandora.user.ui.query.conditions[index] = conditions[0];
} else {
pandora.user.ui.query.conditions[index].conditions = conditions;
pandora.user.ui.query.conditions[index].operator = '|';
delete pandora.user.ui.query.conditions[index].key;
delete pandora.user.ui.query.conditions[index].value;
}
}
pandora.Query.updateGroups();
pandora.URL.push(pandora.Query.toString());
2011-05-25 19:50:04 +00:00
pandora.reloadGroups(i);
2011-05-25 19:42:45 +00:00
}
});
2011-06-19 17:49:25 +00:00
Ox.Select({
2011-06-06 16:08:33 +00:00
items: $.map(pandora.site.groups, function(v) {
2011-05-25 19:42:45 +00:00
return {
checked: v.id == id,
id: v.id,
title: v.title
}
}),
max: 1,
min: 1,
type: 'image'
})
.bindEvent('change', function(event, data) {
var id_ = data.selected[0].id,
2011-06-06 15:48:11 +00:00
i_ = pandora.user.ui.groups.indexOf(id_);
2011-05-25 19:42:45 +00:00
if (i_ == -1) {
// new group was not part of old group set
2011-08-24 08:25:08 +00:00
if (pandora.user.ui.groupsData[i].selected.length) {
2011-05-25 19:42:45 +00:00
// if group with selection gets replaced, reload
2011-08-24 08:25:08 +00:00
pandora.user.ui.query.conditions.splice(pandora.user.ui.groupsData[i].index, 1);
pandora.Query.updateGroups();
pandora.URL.push(pandora.Query.toString());
2011-05-25 19:50:04 +00:00
pandora.reloadGroups(i);
2011-05-25 19:42:45 +00:00
}
2011-06-06 15:48:11 +00:00
pandora.user.ui.groups[i] = id_;
pandora.UI.set({groups: pandora.user.ui.groups});
2011-05-25 19:42:45 +00:00
replaceGroup(i, id_);
} else {
// swap two existing groups
2011-08-24 08:25:08 +00:00
var groupsData = Ox.clone(pandora.user.ui.groupsData[i]);
pandora.user.ui.groupsData[i] = pandora.user.ui.groupsData[i_];
pandora.user.ui.groupsData[i_] = groupsData;
2011-06-06 15:48:11 +00:00
pandora.user.ui.groups[i] = id_;
pandora.user.ui.groups[i_] = id;
pandora.UI.set({groups: pandora.user.ui.groups});
2011-08-24 08:25:08 +00:00
replaceGroup(i, id_);
replaceGroup(i_, id);
2011-05-25 19:42:45 +00:00
}
function replaceGroup(i, id, query) {
// if query is passed, selected items will be derived from it
var isOuter = i % 4 == 0;
2011-06-06 15:48:11 +00:00
pandora.$ui[isOuter ? 'browser' : 'groupsInnerPanel'].replaceElement(
2011-05-25 19:42:45 +00:00
isOuter ? i / 2 : i - 1,
2011-08-24 08:25:08 +00:00
pandora.$ui.groups[i] = pandora.ui.group(id)
2011-05-25 19:42:45 +00:00
);
}
})
.appendTo(that.$bar.$element);
return that;
};
pandora.ui.groups = function() {
var $groups = [];
2011-06-06 15:48:11 +00:00
pandora.user.queryGroups = [];
pandora.user.ui.groups.forEach(function(id, i) {
2011-05-25 19:42:45 +00:00
$groups[i] = pandora.ui.group(id);
});
return $groups;
};
pandora.ui.groupsInnerPanel = function() {
2011-06-19 17:49:25 +00:00
var that = Ox.SplitPanel({
2011-05-25 19:42:45 +00:00
elements: [
{
2011-06-06 15:48:11 +00:00
element: pandora.$ui.groups[1],
size: pandora.user.ui.groupsSizes[1]
2011-05-25 19:42:45 +00:00
},
{
2011-06-06 15:48:11 +00:00
element: pandora.$ui.groups[2],
2011-05-25 19:42:45 +00:00
},
{
2011-06-06 15:48:11 +00:00
element: pandora.$ui.groups[3],
size: pandora.user.ui.groupsSizes[3]
2011-05-25 19:42:45 +00:00
}
],
orientation: 'horizontal'
});
return that;
};