update sequences dialog
This commit is contained in:
parent
bc7e7c4f88
commit
b331137054
1 changed files with 141 additions and 48 deletions
|
@ -9,6 +9,7 @@ pandora.ui.sequencesDialog = function() {
|
||||||
dialogWidth = Math.round(window.innerWidth * 0.9),
|
dialogWidth = Math.round(window.innerWidth * 0.9),
|
||||||
mode = pandora.user.ui.sequenceMode,
|
mode = pandora.user.ui.sequenceMode,
|
||||||
sidebarWidth = 144,
|
sidebarWidth = 144,
|
||||||
|
$list,
|
||||||
$tabPanel = Ox.TabPanel({
|
$tabPanel = Ox.TabPanel({
|
||||||
content: function(mode) {
|
content: function(mode) {
|
||||||
var $splitPanel = Ox.SplitPanel({
|
var $splitPanel = Ox.SplitPanel({
|
||||||
|
@ -23,11 +24,15 @@ pandora.ui.sequencesDialog = function() {
|
||||||
],
|
],
|
||||||
orientation: 'horizontal'
|
orientation: 'horizontal'
|
||||||
});
|
});
|
||||||
pandora.api.getSequence({id: data.id, mode: mode, position: data.position}, function(result) {
|
pandora.api.getSequence({
|
||||||
|
id: data.id,
|
||||||
|
mode: mode,
|
||||||
|
position: data.position
|
||||||
|
}, function(result) {
|
||||||
// result.data: {hash, in, out}
|
// result.data: {hash, in, out}
|
||||||
var fixedRatio = 16/9,
|
var fixedRatio = 16/9,
|
||||||
hash = result.data.hash,
|
hash = result.data.hash,
|
||||||
$sidebar = Ox.Element(), // add video player
|
$sidebar = Ox.Element(); // add video player
|
||||||
$list = Ox.IconList({
|
$list = Ox.IconList({
|
||||||
fixedRatio: fixedRatio,
|
fixedRatio: fixedRatio,
|
||||||
item: function(data, sort, size) {
|
item: function(data, sort, size) {
|
||||||
|
@ -62,14 +67,17 @@ pandora.ui.sequencesDialog = function() {
|
||||||
unique: 'id'
|
unique: 'id'
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
open: function(data) {
|
init: function(data) {
|
||||||
// ...
|
$status.html(
|
||||||
},
|
Ox.formatNumber(data.items) + ' Clip'
|
||||||
openpreview: function(data) {
|
+ (data.items == 1 ? '' : 's')
|
||||||
// ...
|
);
|
||||||
},
|
},
|
||||||
|
open: openClip,
|
||||||
select: function(data) {
|
select: function(data) {
|
||||||
// ...
|
$dialog[
|
||||||
|
data.ids.length ? 'enableButton' : 'disableButton'
|
||||||
|
]('open');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$splitPanel.replaceElement(0, $sidebar);
|
$splitPanel.replaceElement(0, $sidebar);
|
||||||
|
@ -82,12 +90,20 @@ pandora.ui.sequencesDialog = function() {
|
||||||
{id: 'color', title: 'Similar Colors'}
|
{id: 'color', title: 'Similar Colors'}
|
||||||
]
|
]
|
||||||
}),
|
}),
|
||||||
|
|
||||||
$dialog = Ox.Dialog({
|
$dialog = Ox.Dialog({
|
||||||
buttons: [
|
buttons: [
|
||||||
|
Ox.Button({
|
||||||
|
disabled: true,
|
||||||
|
id: 'open',
|
||||||
|
title: 'Open Selected Clip',
|
||||||
|
width: 128
|
||||||
|
}).bindEvent({
|
||||||
|
click: openClip
|
||||||
|
}),
|
||||||
Ox.Button({
|
Ox.Button({
|
||||||
id: 'close',
|
id: 'close',
|
||||||
title: 'Close'
|
title: 'Close',
|
||||||
|
width: 64
|
||||||
}).bindEvent({
|
}).bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
$dialog.close();
|
$dialog.close();
|
||||||
|
@ -103,7 +119,84 @@ pandora.ui.sequencesDialog = function() {
|
||||||
removeOnClose: true,
|
removeOnClose: true,
|
||||||
title: 'Similar Clips',
|
title: 'Similar Clips',
|
||||||
width: dialogWidth
|
width: dialogWidth
|
||||||
|
}),
|
||||||
|
$toolbar = $tabPanel.children('.OxBar'),
|
||||||
|
$orderButton = Ox.Button({
|
||||||
|
title: getTitle(),
|
||||||
|
tooltip: getTooltip(),
|
||||||
|
type: 'image'
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
click: function() {
|
||||||
|
pandora.UI.set({sequenceSort: [{
|
||||||
|
key: pandora.user.ui.sequenceSort[0].key,
|
||||||
|
operator: pandora.user.ui.sequenceSort[0].operator == '+' ? '-' : '+'
|
||||||
|
}]});
|
||||||
|
updateButton();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.css({float: 'right', margin: '4px 4px 4px 2px'})
|
||||||
|
.appendTo($toolbar),
|
||||||
|
$sortSelect = Ox.Select({
|
||||||
|
items: ['title', 'director', 'position', 'duration'].map(function(id) {
|
||||||
|
return {id: id, title: 'Sort by ' + Ox.toTitleCase(id)};
|
||||||
|
}),
|
||||||
|
width: 128
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
change: function(data) {
|
||||||
|
var key = data.value;
|
||||||
|
pandora.UI.set({sequenceSort: [{
|
||||||
|
key: key,
|
||||||
|
operator: pandora.getSortOperator(key)
|
||||||
|
}]});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.css({float: 'right', margin: '4px 2px'})
|
||||||
|
.appendTo($toolbar),
|
||||||
|
$statusbar = $dialog.children('.OxButtonsbar'),
|
||||||
|
$status = Ox.Element()
|
||||||
|
.css({
|
||||||
|
margin: '6px 0 0 204px', // 4 + 128 + 4 + 64 + 4
|
||||||
|
fontSize: '9px',
|
||||||
|
textAlign: 'center'
|
||||||
|
})
|
||||||
|
.appendTo($statusbar);
|
||||||
|
|
||||||
|
function getTitle() {
|
||||||
|
return pandora.user.ui.sequenceSort[0].operator == '+' ? 'up' : 'down';
|
||||||
|
}
|
||||||
|
function getTooltip() {
|
||||||
|
return pandora.user.ui.sequenceSort[0].operator == '+' ? 'Ascending' : 'Descending';
|
||||||
|
}
|
||||||
|
function openClip() {
|
||||||
|
var selected = $list.options('selected')[0],
|
||||||
|
split = selected.replace('-', '/').split('/'),
|
||||||
|
item = split[0],
|
||||||
|
// FIXME: should be split[1] and split[2],
|
||||||
|
// but API currently returns 'id/mode/in-out'
|
||||||
|
inPoint = parseFloat(split[2]),
|
||||||
|
outPoint = parseFloat(split[3]),
|
||||||
|
set = {
|
||||||
|
item: split[0],
|
||||||
|
itemView: pandora.user.ui.videoView
|
||||||
|
};
|
||||||
|
set['videoPoints.' + split[0]] = {
|
||||||
|
annotation: '',
|
||||||
|
'in': inPoint,
|
||||||
|
out: outPoint,
|
||||||
|
position: inPoint
|
||||||
|
};
|
||||||
|
Ox.print(selected, '???', set);
|
||||||
|
$dialog.close();
|
||||||
|
pandora.UI.set(set)
|
||||||
|
}
|
||||||
|
function updateButton() {
|
||||||
|
that.options({
|
||||||
|
title: getTitle(),
|
||||||
|
tooltip: getTooltip()
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return $dialog;
|
return $dialog;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue