forked from 0x2620/pandora
add some support for undo/redo join/split; fix type test
This commit is contained in:
parent
1f592758ee
commit
e7cbb9cf82
1 changed files with 22 additions and 7 deletions
|
@ -293,20 +293,21 @@ pandora.createLinks = function($element) {
|
||||||
addItems(items, targets[0], addToHistory);
|
addItems(items, targets[0], addToHistory);
|
||||||
} else if (action == 'cut' || action == 'delete') {
|
} else if (action == 'cut' || action == 'delete') {
|
||||||
removeItems(items, targets[0], addToHistory);
|
removeItems(items, targets[0], addToHistory);
|
||||||
|
} else if (action == 'join' || action == 'split') {
|
||||||
|
removeItems(items[0], targets[0], function() {
|
||||||
|
addItems(items[1], targets[0], addToHistory);
|
||||||
|
});
|
||||||
} else if (action == 'move') {
|
} else if (action == 'move') {
|
||||||
removeItems(items, targets[0], function() {
|
removeItems(items, targets[0], function() {
|
||||||
addItems(items, targets[1], addToHistory);
|
addItems(items, targets[1], addToHistory);
|
||||||
});
|
});
|
||||||
} else if (action == 'split' || action == 'join') {
|
}
|
||||||
removeItems(items[0], targets[0], function() {
|
|
||||||
addItems(items[1], targets[0], addToHistory);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
function addToHistory(result, addedItems) {
|
function addToHistory(result, addedItems) {
|
||||||
var actions = {
|
var actions = {
|
||||||
copy: 'Copying',
|
copy: 'Copying',
|
||||||
cut: 'Cutting',
|
cut: 'Cutting',
|
||||||
'delete': 'Deleting',
|
'delete': 'Deleting',
|
||||||
|
edit: 'Editing',
|
||||||
join: 'Joining',
|
join: 'Joining',
|
||||||
move: 'Moving',
|
move: 'Moving',
|
||||||
paste: 'Pasting',
|
paste: 'Pasting',
|
||||||
|
@ -339,6 +340,10 @@ pandora.createLinks = function($element) {
|
||||||
addItems(object.items[0], object.targets[0], done);
|
addItems(object.items[0], object.targets[0], done);
|
||||||
} else if (object.action == 'cut' || object.action == 'delete') {
|
} else if (object.action == 'cut' || object.action == 'delete') {
|
||||||
removeItems(object.items[0], object.targets[0], done);
|
removeItems(object.items[0], object.targets[0], done);
|
||||||
|
} else if (object.action == 'join' || object.action == 'split') {
|
||||||
|
removeItems(object.items[0], object.targets[0], function() {
|
||||||
|
addItems(object.items[1], object.targets[0], done);
|
||||||
|
});
|
||||||
} else if (object.action == 'move') {
|
} else if (object.action == 'move') {
|
||||||
removeItems(object.items[0], object.targets[0], function() {
|
removeItems(object.items[0], object.targets[0], function() {
|
||||||
addItems(object.items[1], object.targets[1], done);
|
addItems(object.items[1], object.targets[1], done);
|
||||||
|
@ -357,6 +362,10 @@ pandora.createLinks = function($element) {
|
||||||
removeItems(object.items[0], object.targets[0], done);
|
removeItems(object.items[0], object.targets[0], done);
|
||||||
} else if (object.action == 'cut' || object.action == 'delete') {
|
} else if (object.action == 'cut' || object.action == 'delete') {
|
||||||
addItems(object.items[0], object.targets[0], done);
|
addItems(object.items[0], object.targets[0], done);
|
||||||
|
} else if (object.action == 'join' || object.action == 'split') {
|
||||||
|
removeItems(object.items[1], object.targets[0], function() {
|
||||||
|
addItems(object.items[0], object.targets[0], done);
|
||||||
|
});
|
||||||
} else if (object.action == 'move') {
|
} else if (object.action == 'move') {
|
||||||
removeItems(object.items[1], object.targets[1], function() {
|
removeItems(object.items[1], object.targets[1], function() {
|
||||||
addItems(object.items[0], object.targets[0], done);
|
addItems(object.items[0], object.targets[0], done);
|
||||||
|
@ -423,7 +432,11 @@ pandora.createLinks = function($element) {
|
||||||
setTimeout(pandora.reloadList, 250);
|
setTimeout(pandora.reloadList, 250);
|
||||||
}
|
}
|
||||||
} else if (type == 'clip' && ui.section == 'edits') {
|
} else if (type == 'clip' && ui.section == 'edits') {
|
||||||
// FIXME: update edit list and reload clip list
|
// FIXME: update edit list (once it has item count)
|
||||||
|
Ox.Request.clearCache('getEdit');
|
||||||
|
if (Ox.contains(object.targets, ui.edit)) {
|
||||||
|
pandora.$ui.editPanel.updatePanel();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
callback && callback();
|
callback && callback();
|
||||||
}
|
}
|
||||||
|
@ -459,7 +472,9 @@ pandora.createLinks = function($element) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getType(items) {
|
function getType(items) {
|
||||||
return items[0] && Ox.contains(items[0], '/') ? 'clip' : 'item';
|
return items[0] && (
|
||||||
|
Ox.contains(items[0], '/') || Ox.contains(items[0][0], '/')
|
||||||
|
) ? 'clip' : 'item';
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeItems(items, target, callback) {
|
function removeItems(items, target, callback) {
|
||||||
|
|
Loading…
Reference in a new issue