pandora/static/js/pandora/viewSelect.js

41 lines
1.4 KiB
JavaScript
Raw Normal View History

2011-07-29 18:37:11 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2011-11-05 17:04:10 +00:00
'use strict';
2011-05-25 19:42:45 +00:00
pandora.ui.viewSelect = function() {
var ui = pandora.user.ui,
sortKey = !ui.item ? 'listSort' : 'itemSort',
viewKey = !ui.item ? 'listView' : 'itemView',
that = Ox.Select({
2011-12-21 15:34:28 +00:00
id: 'viewSelect',
items: Ox.map(pandora.site[viewKey + 's'], function(view) {
return viewKey == 'listView'
|| ['data', 'files'].indexOf(view.id) == -1
|| pandora.site.capabilities.canSeeExtraItemViews[pandora.user.level]
? Ox.extend(Ox.clone(view), {
title: 'View ' + view.title
})
: null;
}),
2011-12-22 07:27:48 +00:00
value: ui[viewKey],
2011-12-21 15:34:28 +00:00
width: !ui.item ? 144 : 128
})
.css({
float: 'left',
margin: '4px 0 0 4px'
})
.bindEvent({
change: function(data) {
pandora.UI.set(viewKey, data.value);
},
pandora_listview: function(data) {
!ui.item && that.value(data.value);
2011-12-21 15:34:28 +00:00
},
pandora_itemview: function(data) {
ui.item && that.value(data.value);
2011-12-21 15:34:28 +00:00
}
});
2011-05-25 19:42:45 +00:00
return that;
};