57 lines
2.3 KiB
JavaScript
57 lines
2.3 KiB
JavaScript
'use strict';
|
|
|
|
pandora.ui.documentContentPanel = function() {
|
|
var that = Ox.SplitPanel({
|
|
elements: !pandora.user.ui.document ? [
|
|
{
|
|
collapsed: !pandora.user.ui.showDocumentFilters,
|
|
collapsible: true,
|
|
element: pandora.$ui.documentBrowser = pandora.ui.documentBrowser(),
|
|
resizable: true,
|
|
resize: [96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 256],
|
|
size: pandora.user.ui.documentFiltersSize,
|
|
tooltip: Ox._('filters') + ' <span class="OxBright">'
|
|
+ Ox.SYMBOLS.shift + 'F</span>'
|
|
},
|
|
{
|
|
element: pandora.$ui.list = pandora.ui.collection()
|
|
},
|
|
{
|
|
element: pandora.$ui.statusbar = pandora.ui.statusbar(),
|
|
size: 16
|
|
}
|
|
] : [
|
|
{
|
|
collapsed: !pandora.user.ui.showBrowser,
|
|
collapsible: true,
|
|
element: pandora.$ui.documentBrowser = pandora.ui.documentBrowser(),
|
|
size: 112 + Ox.UI.SCROLLBAR_SIZE,
|
|
tooltip: Ox._('{0} browser', [Ox._('document')])
|
|
+ ' <span class="OxBright">'
|
|
+ Ox.SYMBOLS.shift + 'B</span>'
|
|
},
|
|
{
|
|
element: pandora.$ui.document = pandora.ui.document()
|
|
}
|
|
],
|
|
orientation: 'vertical'
|
|
})
|
|
.bindEvent({
|
|
pandora_document: function(data) {
|
|
if (data.value && data.previousValue) {
|
|
that.replaceElement(1, pandora.$ui.document = pandora.ui.document());
|
|
}
|
|
},
|
|
pandora_documentview: function(data) {
|
|
that.replaceElement(1, pandora.$ui.document = pandora.ui.document());
|
|
},
|
|
pandora_collectionview: function() {
|
|
!pandora.user.ui.document && that.replaceElement(1,
|
|
pandora.$ui.list = pandora.ui.collection());
|
|
},
|
|
pandora_showbrowser: function(data) {
|
|
data.value == that.options('elements')[0].collapsed && that.toggleElement(0);
|
|
},
|
|
});
|
|
return that;
|
|
};
|