forked from 0x2620/pandora
handle copy from edit list
This commit is contained in:
parent
3b395eae15
commit
262402305a
1 changed files with 21 additions and 20 deletions
|
@ -14,7 +14,7 @@ pandora.ui.editPanel = function() {
|
||||||
smallTimelineContext,
|
smallTimelineContext,
|
||||||
that = Ox.Element();
|
that = Ox.Element();
|
||||||
|
|
||||||
ui.edit ? render() : renderOverview();
|
ui.edit ? renderEdit() : renderEdits();
|
||||||
|
|
||||||
function editPointsKey(key) {
|
function editPointsKey(key) {
|
||||||
return 'editPoints.' + ui.edit.replace(/\./g, '\\.') + '.' + key;
|
return 'editPoints.' + ui.edit.replace(/\./g, '\\.') + '.' + key;
|
||||||
|
@ -39,7 +39,7 @@ pandora.ui.editPanel = function() {
|
||||||
return videos;
|
return videos;
|
||||||
}
|
}
|
||||||
|
|
||||||
function render() {
|
function renderEdit() {
|
||||||
pandora.api.getEdit({id: ui.edit}, function(result) {
|
pandora.api.getEdit({id: ui.edit}, function(result) {
|
||||||
edit = result.data;
|
edit = result.data;
|
||||||
// fixme: duration should come from backend
|
// fixme: duration should come from backend
|
||||||
|
@ -98,10 +98,12 @@ pandora.ui.editPanel = function() {
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
copy: function(data) {
|
copy: function(data) {
|
||||||
|
Ox.Clipboard.copy(data.ids.map(function(id) {
|
||||||
|
return Ox.getObjectById(edit.clips, id);
|
||||||
|
}), 'clip');
|
||||||
},
|
},
|
||||||
cut: function(data) {
|
cut: function(data) {
|
||||||
|
// ...
|
||||||
},
|
},
|
||||||
edit: function(data) {
|
edit: function(data) {
|
||||||
var args = {id: data.id},
|
var args = {id: data.id},
|
||||||
|
@ -255,7 +257,8 @@ pandora.ui.editPanel = function() {
|
||||||
updateSmallTimelineURL();
|
updateSmallTimelineURL();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function renderOverview() {
|
|
||||||
|
function renderEdits() {
|
||||||
that = Ox.IconList({
|
that = Ox.IconList({
|
||||||
borderRadius: 16,
|
borderRadius: 16,
|
||||||
defaultRatio: 1,
|
defaultRatio: 1,
|
||||||
|
@ -312,23 +315,8 @@ pandora.ui.editPanel = function() {
|
||||||
video: getVideos()
|
video: getVideos()
|
||||||
});
|
});
|
||||||
updateSmallTimelineURL();
|
updateSmallTimelineURL();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateVideos() {
|
|
||||||
edit.duration = 0;
|
|
||||||
edit.clips.forEach(function(clip) {
|
|
||||||
clip.position = edit.duration;
|
|
||||||
edit.duration += clip.duration;
|
|
||||||
});
|
|
||||||
that.options({
|
|
||||||
smallTimelineURL: getSmallTimelineURL(),
|
|
||||||
video: getVideos()
|
|
||||||
});
|
|
||||||
updateSmallTimelineURL();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function updateSmallTimelineURL() {
|
function updateSmallTimelineURL() {
|
||||||
var fps = 25;
|
var fps = 25;
|
||||||
Ox.serialForEach(edit.clips, function(clip) {
|
Ox.serialForEach(edit.clips, function(clip) {
|
||||||
|
@ -349,6 +337,19 @@ pandora.ui.editPanel = function() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateVideos() {
|
||||||
|
edit.duration = 0;
|
||||||
|
edit.clips.forEach(function(clip) {
|
||||||
|
clip.position = edit.duration;
|
||||||
|
edit.duration += clip.duration;
|
||||||
|
});
|
||||||
|
that.options({
|
||||||
|
smallTimelineURL: getSmallTimelineURL(),
|
||||||
|
video: getVideos()
|
||||||
|
});
|
||||||
|
updateSmallTimelineURL();
|
||||||
|
}
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue