forked from 0x2620/pandora
add 'Show Clips' entry, consolidate some checks
This commit is contained in:
parent
3c87a63420
commit
8ba6af3d90
1 changed files with 59 additions and 17 deletions
|
@ -122,36 +122,49 @@ pandora.ui.mainMenu = function() {
|
||||||
{
|
{
|
||||||
id: 'showsidebar',
|
id: 'showsidebar',
|
||||||
title: Ox._((ui.showSidebar ? 'Hide' : 'Show') + ' Sidebar'),
|
title: Ox._((ui.showSidebar ? 'Hide' : 'Show') + ' Sidebar'),
|
||||||
keyboard: 'shift s' },
|
keyboard: 'shift s'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'showinfo',
|
id: 'showinfo',
|
||||||
title: Ox._((ui.showInfo ? 'Hide' : 'Show') + ' Info'),
|
title: Ox._((ui.showInfo ? 'Hide' : 'Show') + ' Info'),
|
||||||
disabled: !ui.showSidebar, keyboard: 'shift i' },
|
disabled: !ui.showSidebar, keyboard: 'shift i'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'showfilters',
|
id: 'showfilters',
|
||||||
title: Ox._((ui.showFilters ? 'Hide' : 'Show') + ' Filters'),
|
title: Ox._((ui.showFilters ? 'Hide' : 'Show') + ' Filters'),
|
||||||
disabled: !!ui.item, keyboard: 'shift f' },
|
disabled: !!ui.item, keyboard: 'shift f'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'showbrowser',
|
id: 'showbrowser',
|
||||||
title: Ox._((ui.showBrowser ? 'Hide': 'Show') + ' {0} Browser', [Ox._(pandora.site.itemName.singular)]),
|
title: Ox._((ui.showBrowser ? 'Hide': 'Show') + ' {0} Browser', [Ox._(pandora.site.itemName.singular)]),
|
||||||
disabled: !ui.item, keyboard: 'shift b' },
|
disabled: !ui.item, keyboard: 'shift b'
|
||||||
{
|
},
|
||||||
id: 'showannotations',
|
|
||||||
title: Ox._((ui.showAnnotations ? 'Hide' : 'Show') + ' Annotations'),
|
|
||||||
disabled: !ui.item || ['timeline', 'player', 'editor'].indexOf(ui.itemView) == -1, keyboard: 'shift a' },
|
|
||||||
{
|
{
|
||||||
id: 'showtimeline',
|
id: 'showtimeline',
|
||||||
title: Ox._((ui.showTimeline ? 'Hide' : 'Show') + ' Timeline'),
|
title: Ox._((ui.showTimeline ? 'Hide' : 'Show') + ' Timeline'),
|
||||||
disabled: !ui.item || ui.itemView != 'player', keyboard: 'shift t' },
|
disabled: !hasTimeline(), keyboard: 'shift t'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'showannotations',
|
||||||
|
title: Ox._((ui.showAnnotations ? 'Hide' : 'Show') + ' Annotations'),
|
||||||
|
disabled: !hasAnnotations(), keyboard: 'shift a'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'showclips',
|
||||||
|
title: Ox._((ui.showClips ? 'Hide' : 'Show') + ' Clips'),
|
||||||
|
disabled: !hasClips(), keyboard: 'shift c'
|
||||||
|
},
|
||||||
{},
|
{},
|
||||||
{
|
{
|
||||||
id: 'togglefullscreen',
|
id: 'togglefullscreen',
|
||||||
title: Ox._((fullscreenState ? 'Exit' : 'Enter') + ' Fullscreen'),
|
title: Ox._((fullscreenState ? 'Exit' : 'Enter') + ' Fullscreen'),
|
||||||
disabled: fullscreenState === void 0, keyboard: 'shift alt control f' },
|
disabled: fullscreenState === void 0, keyboard: 'shift alt control f'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'entervideofullscreen',
|
id: 'entervideofullscreen',
|
||||||
title: Ox._('Enter Video Fullscreen'),
|
title: Ox._('Enter Video Fullscreen'),
|
||||||
disabled: !ui.item || ui.itemView != 'player' },
|
disabled: !ui.item || ui.itemView != 'player'
|
||||||
|
},
|
||||||
{},
|
{},
|
||||||
{ id: 'theme', title: Ox._('Theme'), items: [
|
{ id: 'theme', title: Ox._('Theme'), items: [
|
||||||
{ group: 'settheme', min: 1, max: 1, items: pandora.site.themes.map(function(theme) {
|
{ group: 'settheme', min: 1, max: 1, items: pandora.site.themes.map(function(theme) {
|
||||||
|
@ -366,10 +379,12 @@ pandora.ui.mainMenu = function() {
|
||||||
pandora.UI.set({showFilters: !ui.showFilters});
|
pandora.UI.set({showFilters: !ui.showFilters});
|
||||||
} else if (data.id == 'showbrowser') {
|
} else if (data.id == 'showbrowser') {
|
||||||
pandora.UI.set({showBrowser: !ui.showBrowser});
|
pandora.UI.set({showBrowser: !ui.showBrowser});
|
||||||
} else if (data.id == 'showannotations') {
|
|
||||||
pandora.UI.set({showAnnotations: !ui.showAnnotations});
|
|
||||||
} else if (data.id == 'showtimeline') {
|
} else if (data.id == 'showtimeline') {
|
||||||
pandora.UI.set({showTimeline: !ui.showTimeline});
|
pandora.UI.set({showTimeline: !ui.showTimeline});
|
||||||
|
} else if (data.id == 'showannotations') {
|
||||||
|
pandora.UI.set({showAnnotations: !ui.showAnnotations});
|
||||||
|
} else if (data.id == 'showclips') {
|
||||||
|
pandora.UI.set({showClips: !ui.showClips});
|
||||||
} else if (data.id == 'togglefullscreen') {
|
} else if (data.id == 'togglefullscreen') {
|
||||||
Ox.Fullscreen.toggle();
|
Ox.Fullscreen.toggle();
|
||||||
} else if (data.id == 'entervideofullscreen') {
|
} else if (data.id == 'entervideofullscreen') {
|
||||||
|
@ -502,12 +517,14 @@ pandora.ui.mainMenu = function() {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
key_shift_a: function() {
|
key_shift_a: function() {
|
||||||
ui.item && ['timeline', 'player', 'editor'].indexOf(ui.itemView) > -1
|
hasAnnotations() && pandora.UI.set({showAnnotations: !ui.showAnnotations});
|
||||||
&& pandora.UI.set({showAnnotations: !ui.showAnnotations});
|
|
||||||
},
|
},
|
||||||
key_shift_b: function() {
|
key_shift_b: function() {
|
||||||
ui.item && pandora.UI.set({showBrowser: !ui.showBrowser});
|
ui.item && pandora.UI.set({showBrowser: !ui.showBrowser});
|
||||||
},
|
},
|
||||||
|
key_shift_c: function() {
|
||||||
|
hasClips && pandora.UI.set({showClips: !ui.showClips});
|
||||||
|
},
|
||||||
key_shift_backtick: function() {
|
key_shift_backtick: function() {
|
||||||
changeFocus(-1);
|
changeFocus(-1);
|
||||||
},
|
},
|
||||||
|
@ -521,8 +538,10 @@ pandora.ui.mainMenu = function() {
|
||||||
pandora.UI.set({showSidebar: !ui.showSidebar});
|
pandora.UI.set({showSidebar: !ui.showSidebar});
|
||||||
},
|
},
|
||||||
key_shift_t: function() {
|
key_shift_t: function() {
|
||||||
ui.item && ui.itemView == 'player'
|
hasTimeline() && pandora.UI.set({showTimeline: !ui.showTimeline});
|
||||||
&& pandora.UI.set({showTimeline: !ui.showTimeline});
|
},
|
||||||
|
pandora_edit: function() {
|
||||||
|
// ...
|
||||||
},
|
},
|
||||||
pandora_find: function() {
|
pandora_find: function() {
|
||||||
var list = ui._list,
|
var list = ui._list,
|
||||||
|
@ -621,12 +640,18 @@ pandora.ui.mainMenu = function() {
|
||||||
pandora.getItemIdAndPosition() ? 'enableItem' : 'disableItem'
|
pandora.getItemIdAndPosition() ? 'enableItem' : 'disableItem'
|
||||||
]('findsimilar');
|
]('findsimilar');
|
||||||
},
|
},
|
||||||
|
pandora_section: function() {
|
||||||
|
// ...
|
||||||
|
},
|
||||||
pandora_showannotations: function(data) {
|
pandora_showannotations: function(data) {
|
||||||
that.setItemTitle('showannotations', Ox._((data.value ? 'Hide' : 'Show') + ' Annotations'));
|
that.setItemTitle('showannotations', Ox._((data.value ? 'Hide' : 'Show') + ' Annotations'));
|
||||||
},
|
},
|
||||||
pandora_showbrowser: function(data) {
|
pandora_showbrowser: function(data) {
|
||||||
that.setItemTitle('showbrowser', Ox._((data.value ? 'Hide' : 'Show') + ' {0} Browser', [Ox._(pandora.site.itemName.singular)]));
|
that.setItemTitle('showbrowser', Ox._((data.value ? 'Hide' : 'Show') + ' {0} Browser', [Ox._(pandora.site.itemName.singular)]));
|
||||||
},
|
},
|
||||||
|
pandora_showclips: function(data) {
|
||||||
|
that.setItemTitle('showclips', Ox._((data.value ? 'Hide' : 'Show') + ' Clips'));
|
||||||
|
},
|
||||||
pandora_showfilters: function(data) {
|
pandora_showfilters: function(data) {
|
||||||
that.setItemTitle('showfilters', Ox._((data.value ? 'Hide' : 'Show') + ' Filters'));
|
that.setItemTitle('showfilters', Ox._((data.value ? 'Hide' : 'Show') + ' Filters'));
|
||||||
},
|
},
|
||||||
|
@ -814,6 +839,23 @@ pandora.ui.mainMenu = function() {
|
||||||
] };
|
] };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function hasAnnotations() {
|
||||||
|
return ui.section == 'items' && ui.item
|
||||||
|
&& Ox.contains(['player', 'editor', 'timeline'], ui.itemView);
|
||||||
|
}
|
||||||
|
|
||||||
|
function hasClips() {
|
||||||
|
return ui.section == 'edits' && ui.edit;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hasTimeline() {
|
||||||
|
return (
|
||||||
|
ui.section == 'items' && ui.item && ui.itemView == 'player'
|
||||||
|
) || (
|
||||||
|
ui.section == 'edits' && ui.edit
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// fixme: the sidebar makes (almost) the same requests.
|
// fixme: the sidebar makes (almost) the same requests.
|
||||||
// is it ok to make them twice, or should the sidebar trigger the menu replace?
|
// is it ok to make them twice, or should the sidebar trigger the menu replace?
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue