forked from 0x2620/pandora
merge
This commit is contained in:
commit
0c6574f5bd
1 changed files with 64 additions and 48 deletions
|
@ -451,6 +451,14 @@ var pandora = new Ox.App({
|
||||||
annotations: function() {
|
annotations: function() {
|
||||||
var that = new Ox.Element({
|
var that = new Ox.Element({
|
||||||
id: 'annotations'
|
id: 'annotations'
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
resize: function(event, data) {
|
||||||
|
app.user.ui.annotationsSize = data;
|
||||||
|
},
|
||||||
|
toggle: function(event, data) {
|
||||||
|
app.user.ui.showAnnotations = !data.collapsed;
|
||||||
|
}
|
||||||
}),
|
}),
|
||||||
$bins = [];
|
$bins = [];
|
||||||
$.each(app.config.layers, function(i, layer) {
|
$.each(app.config.layers, function(i, layer) {
|
||||||
|
@ -590,6 +598,7 @@ var pandora = new Ox.App({
|
||||||
URL.set(data.ids[0]);
|
URL.set(data.ids[0]);
|
||||||
},
|
},
|
||||||
toggle: function(event, data) {
|
toggle: function(event, data) {
|
||||||
|
app.user.ui.showMovies = !data.collapsed;
|
||||||
if (data.collapsed) {
|
if (data.collapsed) {
|
||||||
if (app.user.ui.itemView == 'timeline') {
|
if (app.user.ui.itemView == 'timeline') {
|
||||||
app.$ui.editor.gainFocus();
|
app.$ui.editor.gainFocus();
|
||||||
|
@ -607,10 +616,10 @@ var pandora = new Ox.App({
|
||||||
var that = new Ox.SplitPanel({
|
var that = new Ox.SplitPanel({
|
||||||
elements: app.user.ui.item == '' ? [
|
elements: app.user.ui.item == '' ? [
|
||||||
{
|
{
|
||||||
|
collapsed: !app.user.ui.showGroups,
|
||||||
collapsible: true,
|
collapsible: true,
|
||||||
element: app.$ui.browser = ui.browser()
|
element: app.$ui.browser = ui.browser()
|
||||||
.bindEvent('resize', function(event, data) {
|
.bindEvent('resize', function(event, data) {
|
||||||
Ox.print('resizing groups...')
|
|
||||||
$.each(app.$ui.groups, function(i, list) {
|
$.each(app.$ui.groups, function(i, list) {
|
||||||
list.size();
|
list.size();
|
||||||
});
|
});
|
||||||
|
@ -624,6 +633,7 @@ var pandora = new Ox.App({
|
||||||
}
|
}
|
||||||
] : [
|
] : [
|
||||||
{
|
{
|
||||||
|
collapsed: !app.user.ui.showMovies,
|
||||||
collapsible: true,
|
collapsible: true,
|
||||||
element: app.$ui.browser = ui.browser(),
|
element: app.$ui.browser = ui.browser(),
|
||||||
size: 112 + ($.browser.mozilla ? 16 : 12) // fixme: should be app.ui.scrollbarSize
|
size: 112 + ($.browser.mozilla ? 16 : 12) // fixme: should be app.ui.scrollbarSize
|
||||||
|
@ -953,8 +963,26 @@ var pandora = new Ox.App({
|
||||||
return that;
|
return that;
|
||||||
},
|
},
|
||||||
item: function() {
|
item: function() {
|
||||||
var that = new Ox.Element('div');
|
var that;
|
||||||
elements = [];
|
if (app.user.ui.itemView == 'info') {
|
||||||
|
that = new Ox.Element('div');
|
||||||
|
} else if (app.user.ui.itemView == 'timeline') {
|
||||||
|
that = new Ox.SplitPanel({
|
||||||
|
elements: [
|
||||||
|
{
|
||||||
|
element: new Ox.Element('div'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
collapsed: !app.user.ui.showAnnotations,
|
||||||
|
collapsible: true,
|
||||||
|
element: new Ox.Element('div'),
|
||||||
|
resizable: true,
|
||||||
|
resize: [256, 384],
|
||||||
|
size: app.user.ui.annotationsSize
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
}
|
||||||
getItem();
|
getItem();
|
||||||
function getItem() {
|
function getItem() {
|
||||||
pandora.api.getItem(app.user.ui.item, function(result) {
|
pandora.api.getItem(app.user.ui.item, function(result) {
|
||||||
|
@ -978,10 +1006,7 @@ var pandora = new Ox.App({
|
||||||
video.height = 96;
|
video.height = 96;
|
||||||
video.width = parseInt(video.height * video.aspectRatio / 2) * 2;
|
video.width = parseInt(video.height * video.aspectRatio / 2) * 2;
|
||||||
video.url = video.baseUrl + '/' + video.height + 'p.' + ($.support.video.webm ? 'webm' : 'mp4');
|
video.url = video.baseUrl + '/' + video.height + 'p.' + ($.support.video.webm ? 'webm' : 'mp4');
|
||||||
app.$ui.contentPanel.replace(1, app.$ui.item = new Ox.SplitPanel({
|
that.replace(0, app.$ui.editor = new Ox.VideoEditor({
|
||||||
elements: [
|
|
||||||
{
|
|
||||||
element: app.$ui.editor = new Ox.VideoEditor({
|
|
||||||
cuts: cuts,
|
cuts: cuts,
|
||||||
duration: video.duration,
|
duration: video.duration,
|
||||||
find: '',
|
find: '',
|
||||||
|
@ -1001,31 +1026,22 @@ var pandora = new Ox.App({
|
||||||
videoWidth: video.width,
|
videoWidth: video.width,
|
||||||
videoSize: 'small',
|
videoSize: 'small',
|
||||||
videoURL: video.url,
|
videoURL: video.url,
|
||||||
width: app.$ui.document.width() - app.$ui.mainPanel.size(0) - 1 - 256 - 1
|
width: app.$ui.document.width() - app.$ui.mainPanel.size(0) - 1 -
|
||||||
|
(app.user.ui.showAnnotations * app.user.ui.annotationsSize) - 1
|
||||||
}).bindEvent('resize', function(event, data) {
|
}).bindEvent('resize', function(event, data) {
|
||||||
Ox.print('resize editor', data)
|
Ox.print('resize editor', data)
|
||||||
app.$ui.editor.options({
|
app.$ui.editor.options({
|
||||||
width: data
|
width: data
|
||||||
});
|
});
|
||||||
Ox.print('resize done')
|
Ox.print('resize done')
|
||||||
}),
|
}));
|
||||||
},
|
that.replace(1, app.$ui.annotations = ui.annotations());
|
||||||
{
|
that.bindEvent('resize', function(event, data) {
|
||||||
collapsible: true,
|
|
||||||
element: app.$ui.annotations = ui.annotations(),
|
|
||||||
//.bindEvent('resize', function(event, data) { Ox.print('resize annotations', data); }),
|
|
||||||
resizable: true,
|
|
||||||
resize: [256, 384],
|
|
||||||
size: 256
|
|
||||||
}
|
|
||||||
],
|
|
||||||
orientation: 'horizontal'
|
|
||||||
}).bindEvent('resize', function(event, data) {
|
|
||||||
Ox.print('resize item', data)
|
Ox.print('resize item', data)
|
||||||
app.$ui.editor.options({
|
app.$ui.editor.options({
|
||||||
height: data
|
height: data
|
||||||
});
|
});
|
||||||
}));
|
});
|
||||||
/*
|
/*
|
||||||
app.$ui.rightPanel.bindEvent('resize', function(event, data) {
|
app.$ui.rightPanel.bindEvent('resize', function(event, data) {
|
||||||
Ox.print('... rightPanel resize', data, app.$ui.timelinePanel.size(1))
|
Ox.print('... rightPanel resize', data, app.$ui.timelinePanel.size(1))
|
||||||
|
@ -2039,7 +2055,7 @@ var pandora = new Ox.App({
|
||||||
} else {
|
} else {
|
||||||
app.$ui.browser.scrollToSelection();
|
app.$ui.browser.scrollToSelection();
|
||||||
app.user.ui.itemView == 'timeline' && app.$ui.editor.options({
|
app.user.ui.itemView == 'timeline' && app.$ui.editor.options({
|
||||||
width: data - app.$ui.item.size(1) - 1
|
width: data - (app.user.ui.showAnnotations * app.user.ui.annotationsSize) - 1
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue