oxjs/source/UI/js/Video/ClipPanel.js

752 lines
26 KiB
JavaScript
Raw Normal View History

2013-07-13 23:07:25 +00:00
'use strict';
Ox.ClipPanel = function(options, self) {
self = self || {};
var that = Ox.Element({}, self)
.defaults({
2014-01-22 18:22:12 +00:00
annotationsCalendarSize: 256,
annotationsMapSize: 256,
annotationsRange: 'all',
annotationsSort: 'position',
2014-02-06 10:27:57 +00:00
clipRatio: 16/9,
2013-07-13 23:07:25 +00:00
clips: [],
2014-01-22 18:22:12 +00:00
clickLink: null,
2013-07-14 18:58:31 +00:00
duration: 0,
2013-07-13 23:07:25 +00:00
editable: false,
formatTitle: function() {
return Ox.last(arguments);
},
getClipImageURL: null,
2013-07-13 23:07:25 +00:00
'in': 0,
2014-01-22 18:22:12 +00:00
layers: [],
2013-07-13 23:07:25 +00:00
out: 0,
position: 0,
selected: [],
2013-07-13 23:07:25 +00:00
sort: [],
sortOptions: [],
2014-01-22 18:22:12 +00:00
showAnnotationsCalendar: false,
showAnnotationsMap: false,
showLayers: {},
showUsers: false,
2013-07-13 23:07:25 +00:00
view: 'list',
width: 0
})
.options(options || {})
.update({
clips: function() {
var action = self.options.clips.length && self.options.view != 'annotations'
? 'enableItem' : 'disableItem';
2013-07-14 14:56:41 +00:00
self.$list.options({
items: Ox.clone(self.options.clips),
2014-02-06 10:27:57 +00:00
sort: getListSort(),
2013-07-14 14:56:41 +00:00
sortable: isSortable()
});
self.$menu[action]('selectclip');
self.$menu[action]('splitclip');
2013-07-14 18:58:31 +00:00
updateStatus();
2013-07-14 14:56:41 +00:00
},
2013-07-14 18:58:31 +00:00
duration: updateStatus,
height: function() {
self.$list.size();
},
2014-01-22 18:22:12 +00:00
position: function() {
if (self.options.view == 'annotations') {
self.$list.options({
position: self.options.position
});
}
},
2013-08-09 12:52:18 +00:00
selected: selectClips,
2015-03-23 11:56:41 +00:00
showLayers: function() {
if (self.options.view == 'annotations') {
self.$list.options({
showLayers: Ox.clone(self.options.showLayers)
});
}
},
2013-07-14 14:56:41 +00:00
sort: function() {
updateSortElement();
self.$list.options({
2014-02-06 10:27:57 +00:00
sort: getListSort(),
2013-07-14 14:56:41 +00:00
sortable: isSortable(),
});
2016-11-27 18:41:10 +00:00
},
view: function() {
updateView();
self.$menu.checkItem(self.options.view);
},
width: function() {
self.$list.options({
width: self.options.width
});
2013-07-13 23:07:25 +00:00
}
2013-07-15 12:03:31 +00:00
})
.bindEvent({
2014-02-06 10:27:57 +00:00
resize: function(data) {
self.$sortSelect.options({width: getSortSelectWidth(data.size)});
2013-07-15 12:03:31 +00:00
self.$list.size();
}
2013-07-13 23:07:25 +00:00
});
2014-02-06 10:27:57 +00:00
self.columns = [
{
align: 'right',
id: 'index',
operator: '+',
title: Ox._('Index'),
visible: false,
width: 60
},
{
id: 'id',
operator: '+',
title: Ox._('ID'),
format: function(value, data) {
return data.annotation ? data.annotation : data.item;
},
sort: function(value, data) {
return data.sort;
},
2014-02-06 10:27:57 +00:00
unique: true,
width: 60
2014-02-06 10:27:57 +00:00
},
{
addable: false,
2014-02-06 10:27:57 +00:00
id: 'item',
operator: '+',
sort: function(value, data) {
return data.sort;
},
},
{
id: 'title',
format: self.options.formatTitle,
operator: '+',
sort: function(value, data) {
return data.sort;
},
title: Ox._('Title'),
2014-02-06 10:27:57 +00:00
visible: true,
width: 120
2014-02-06 10:27:57 +00:00
},
{
align: 'right',
editable: isEditable,
format: function(value, data) {
return (
isEditable(data) ? ['', '']
: ['<span class="OxLight">', '</span>']
).join(Ox.formatDuration(value, 3));
},
id: 'in',
operator: '+',
sort: function(value, data) {
return data.sort;
},
2014-02-06 10:27:57 +00:00
title: Ox._('In'),
visible: true,
width: 90
},
{
align: 'right',
editable: isEditable,
format: function(value, data) {
return (
isEditable(data) ? ['', '']
: ['<span class="OxLight">', '</span>']
).join(Ox.formatDuration(value, 3));
},
id: 'out',
title: Ox._('Out'),
visible: true,
width: 90
},
{
align: 'right',
editable: isEditable,
format: function(value, data) {
return (
isEditable(data) ? ['', '']
: ['<span class="OxLight">', '</span>']
).join(Ox.formatDuration(value, 3));
},
id: 'duration',
operator: '+',
sort: function(value, data) {
return data.sort;
},
2014-02-06 10:27:57 +00:00
title: Ox._('Duration'),
visible: true,
width: 90
},
2017-04-15 11:45:01 +00:00
{
align: 'right',
editable: self.options.editable,
format: function(value, data) {
return Ox.formatNumber(value, 2);
},
id: 'volume',
operator: '+',
sort: function(value, data) {
return data.sort;
},
title: Ox._('Volume'),
visible: false,
width: 45
},
2014-02-06 10:27:57 +00:00
{
addable: false,
2014-02-06 10:27:57 +00:00
id: 'sort',
operator: '+',
// title: Ox._('Sort'),
visible: false
2014-02-06 10:27:57 +00:00
}
];
2013-07-13 23:07:25 +00:00
self.$menubar = Ox.Bar({
size: 24
})
.bindEvent({
doubleclick: function(e) {
if ($(e.target).is('.OxBar')) {
(
self.options.view == 'list'
? self.$list.$body
: self.$list
).animate({
scrollTop: 0
}, 250);
2013-07-13 23:07:25 +00:00
}
}
});
2013-07-14 10:24:38 +00:00
self.$menu = Ox.MenuButton({
items: [
{group: 'view', min: 1, max: 1, items: [
2014-02-03 05:22:25 +00:00
{id: 'list', title: Ox._('View Clips as List'), checked: self.options.view == 'list'},
{id: 'grid', title: Ox._('View Clips as Grid'), checked: self.options.view == 'grid'},
2014-01-22 18:22:12 +00:00
{id: 'annotations', title: Ox._('View Annotations'), checked: self.options.view == 'annotations'},
2013-07-14 10:24:38 +00:00
]},
{},
{id: 'selectclip', title: 'Select Clip at Current Position', keyboard: '\\', disabled: self.options.clips.length == 0 || self.options.view == 'annotations'},
{id: 'splitclip', title: 'Split Clip at Current Position', keyboard: 'shift \\', disabled: self.options.clips.length == 0 || self.options.view == 'annotations'},
{},
2014-02-12 08:09:50 +00:00
{id: 'split', title: Ox._('Split Selected Clips at Cuts'), disabled: !self.options.editable || self.options.selected.length == 0 || self.options.view == 'annotations'},
{id: 'join', title: Ox._('Join Selected Clips at Cuts'), disabled: !self.options.editable || self.options.selected.length < 2 || self.options.view == 'annotations'},
2014-02-12 08:09:50 +00:00
{id: 'replace', title: Ox._('Make Selected Clips Editable'), disabled: !self.options.editable || self.options.selected.length == 0 || self.options.view == 'annotations'}
2013-07-13 23:07:25 +00:00
],
2013-07-14 10:24:38 +00:00
title: 'set',
tooltip: Ox._('Options'),
type: 'image'
2013-07-13 23:07:25 +00:00
})
.css({
float: 'left',
margin: '4px 2px 4px 4px'
})
.bindEvent({
change: function(data) {
2013-07-14 10:24:38 +00:00
if (data.id == 'view') {
2013-07-14 11:39:20 +00:00
self.options.view = data.checked[0].id;
2016-11-27 18:41:10 +00:00
updateView();
that.triggerEvent('view', {view: self.options.view});
2013-07-14 10:24:38 +00:00
}
},
click: function(data) {
if (data.id == 'selectclip') {
that.selectClip();
self.$list.gainFocus();
} else if (data.id == 'splitclip') {
2015-10-04 15:08:44 +00:00
splitClip();
} else if (data.id == 'split') {
2013-08-10 11:09:12 +00:00
splitClips();
2013-08-09 12:52:18 +00:00
} else if (data.id == 'join') {
2013-08-10 11:09:12 +00:00
joinClips();
2013-08-09 12:52:18 +00:00
}
2013-07-13 23:07:25 +00:00
}
})
2013-07-14 10:24:38 +00:00
.appendTo(self.$menubar),
2013-07-13 23:07:25 +00:00
self.$sortSelect = Ox.Select({
items: self.options.sortOptions,
value: self.options.sort[0].key,
2014-02-06 10:27:57 +00:00
width: getSortSelectWidth(self.options.width)
2013-07-13 23:07:25 +00:00
})
.bindEvent({
change: function(data) {
2013-07-14 14:56:41 +00:00
self.options.sort = [{
2013-07-13 23:07:25 +00:00
key: data.value,
operator: Ox.getObjectById(
self.options.sortOptions, data.value
).operator
2013-07-14 14:56:41 +00:00
}];
updateSortElement();
that.triggerEvent('sort', self.options.sort);
2013-07-13 23:07:25 +00:00
}
});
self.$orderButton = Ox.Button({
overlap: 'left',
title: getButtonTitle(),
tooltip: getButtonTooltip(),
type: 'image'
})
.bindEvent({
click: function() {
2013-07-14 14:56:41 +00:00
self.options.sort = [{
2013-07-13 23:07:25 +00:00
key: self.options.sort[0].key,
operator: self.options.sort[0].operator == '+' ? '-' : '+'
2013-07-14 14:56:41 +00:00
}];
updateSortElement();
that.triggerEvent('sort', self.options.sort);
2013-07-13 23:07:25 +00:00
}
});
self.$sortElement = Ox.FormElementGroup({
elements: [self.$sortSelect, self.$orderButton],
float: 'right'
})
.css({
float: 'right',
margin: '4px 4px 4px 2px'
})
.appendTo(self.$menubar);
2013-07-14 10:24:38 +00:00
self.$list = getList();
self.$statusbar = Ox.Bar({
size: 16
});
2013-07-14 18:58:31 +00:00
self.$status = Ox.Element()
.css({
marginTop: '2px',
fontSize: '9px',
textAlign: 'center',
textOverflow: 'ellipsis'
})
.appendTo(self.$statusbar);
2013-07-14 10:24:38 +00:00
that.setElement(
2013-07-14 11:39:20 +00:00
self.$panel = Ox.SplitPanel({
2013-07-14 10:24:38 +00:00
elements: [
{
element: self.$menubar,
size: 24
},
{
element: self.$list
},
{
element: self.$statusbar,
size: 16
}
],
orientation: 'vertical'
})
);
2013-07-14 18:58:31 +00:00
updateStatus();
2013-07-14 10:24:38 +00:00
function editClip(data) {
var value = self.$list.value(data.id, data.key);
if (data.value != value && !(data.value === '' && value === null)) {
self.$list.value(data.id, data.key, data.value || null);
that.triggerEvent('edit', data);
}
}
function getButtonTitle() {
return self.options.sort[0].operator == '+' ? 'up' : 'down';
}
function getButtonTooltip() {
return Ox._(self.options.sort[0].operator == '+' ? 'Ascending' : 'Descending');
}
2013-08-09 12:52:18 +00:00
function getEditable(ids) {
return ids.filter(function(id) {
return isEditable(Ox.getObjectById(self.options.clips, id));
});
}
2013-07-14 10:24:38 +00:00
function getList() {
var $list;
if (self.options.view == 'list') {
$list = Ox.TableList({
2014-02-06 10:27:57 +00:00
columns: self.columns,
columnsMovable: true,
columnsRemovable: true,
columnsResizable: true,
columnsVisible: true,
items: Ox.clone(self.options.clips),
keys: ['director', 'year', 'annotation'],
2014-02-07 10:23:04 +00:00
pageLength: 1000,
scrollbarVisible: true,
2013-08-11 07:44:35 +00:00
selected: self.options.selected,
2014-02-06 10:27:57 +00:00
sort: getListSort(),
sortable: isSortable(),
unique: 'id'
});
} else if (self.options.view == 'grid') {
$list = Ox.IconList({
draggable: true,
2014-02-06 10:27:57 +00:00
fixedRatio: self.options.clipRatio,
item: function(data, sort, size) {
size = size || 128; // fixme: is this needed?
var ratio = data.videoRatio,
2014-02-06 10:27:57 +00:00
fixedRatio = self.options.clipRatio,
width = ratio > fixedRatio ? size : Math.round(size * ratio / fixedRatio),
height = Math.round(width / ratio),
info,
title = self.options.formatTitle(data),
url = self.options.getClipImageURL(data.id, width, height);
if (['text', 'position', 'duration', 'random'].indexOf(sort[0].key) > -1) {
info = Ox.formatDuration(data['in']) + ' - '
+ Ox.formatDuration(data.out);
} else {
info = Ox.formatDuration(data['in']) + ' - '
+ Ox.formatDuration(data.out);
}
return {
height: height,
id: data.id,
info: info,
title: title,
url: url,
width: width
};
},
items: self.options.clips,
keys: ['annotation', 'id', 'in', 'out'],
orientation: 'both',
selected: self.options.selected,
2014-02-06 10:27:57 +00:00
sort: getListSort(),
unique: 'id'
});
} else if (self.options.view == 'annotations') {
$list = Ox.AnnotationPanel({
calendarSize: self.options.annotationsCalendarSize,
clickLink: self.options.clickLink,
editable: false,
//highlight: self.options.find,
//'in': self.options['in'],
layers: self.options.layers,
mapSize: self.options.annotationsMapSize,
//out: self.options.out,
position: self.options.position,
range: self.options.annotationsRange,
showCalendar: self.options.showAnnotationsCalendar,
showLayers: Ox.clone(self.options.showLayers),
showMap: self.options.showAnnotationsMap,
showUsers: self.options.showUsers,
sort: self.options.annotationsSort,
width: self.options.width
}).bindEvent({
select: function(data) {
that.triggerEvent('selectannotation', data);
},
open: function(data) {
// ..
}
});
$list.size = function() {
$list.options({
width: self.options.width
});
};
return $list;
}
2013-07-14 11:39:20 +00:00
$list.bindEvent({
copy: function(data) {
that.triggerEvent('copy', data);
},
copyadd: function(data) {
that.triggerEvent('copyadd', data);
2013-07-14 11:39:20 +00:00
},
cut: function(data) {
if (self.options.editable) {
that.triggerEvent('cut', data);
self.options.selected = [];
selectClips();
that.triggerEvent('select', {ids: []});
}
},
cutadd: function(data) {
if (self.options.editable) {
that.triggerEvent('cutadd', data);
self.options.selected = [];
selectClips();
that.triggerEvent('select', {ids: []});
}
},
2013-07-14 11:39:20 +00:00
'delete': function(data) {
2013-08-09 12:52:18 +00:00
self.options.editable && that.triggerEvent('delete', data);
2013-07-14 11:39:20 +00:00
},
2015-10-04 15:08:44 +00:00
key_backslash: function(data) {
that.selectClip();
self.$list.gainFocus();
},
key_shift_backslash: function(data) {
splitClip();
},
2013-07-14 11:39:20 +00:00
move: function(data) {
data.ids.forEach(function(id, index) {
self.$list.value(id, 'index', index);
});
that.triggerEvent('move', data);
},
open: function(data) {
that.triggerEvent('open', data);
},
paste: function() {
2013-08-09 12:52:18 +00:00
self.options.editable && that.triggerEvent('paste');
2013-07-14 11:39:20 +00:00
},
select: function(data) {
2013-08-09 12:52:18 +00:00
self.options.selected = data.ids;
selectClips();
2013-07-14 11:39:20 +00:00
that.triggerEvent('select', data);
},
sort: function(data) {
2014-02-07 12:26:07 +00:00
if (data.key == 'in') {
data.key = 'position';
}
2013-07-14 14:56:41 +00:00
self.options.sort = [data];
updateSortElement();
2013-07-14 11:39:20 +00:00
self.$list.options({sortable: isSortable()});
2013-07-14 14:56:41 +00:00
that.triggerEvent('sort', self.options.sort);
2013-07-14 11:39:20 +00:00
},
submit: function(data) {
var value = self.$list.value(data.id);
2017-04-15 11:45:01 +00:00
if (data.key == 'volume') {
data.value = parseFloat(data.value);
if (data.value >= 1 || Ox.isNaN(data.value)) {
data.value = 1;
} else if (data.value < 0) {
data.value = 0;
}
2017-04-15 11:45:01 +00:00
self.$list.value(data.id, data.key, data.value);
that.triggerEvent('edit', data);
} else {
2017-04-15 11:45:01 +00:00
data.value = Ox.parseDuration(data.value);
if (
(data.key == 'in' && data.value < value.out)
|| (data.key == 'out' && data.value > value['in'])
|| (data.key == 'duration' && data.value > 0)
) {
self.$list.value(data.id, data.key, data.value);
if (data.key == 'in') {
self.$list.value(data.id, 'duration', value.out - data.value);
} else if (data.key == 'out') {
self.$list.value(data.id, 'duration', data.value - value['in']);
} else if (data.key == 'duration') {
self.$list.value(data.id, 'out', value['in'] + data.value);
}
that.triggerEvent('edit', data);
} else {
self.$list.value(data.id, data.key, value[data.key]);
}
}
2013-07-14 11:39:20 +00:00
}
});
return $list;
2013-07-13 23:07:25 +00:00
}
2014-02-06 10:27:57 +00:00
function getListSort() {
2014-02-09 07:46:56 +00:00
var sort = [{key: 'index', operator: '+'}];
2014-02-06 10:27:57 +00:00
if (self.options.sort && self.options.sort.length) {
sort[0].operator = self.options.sort[0].operator;
sort[0].key = Ox.getObjectById(self.columns, self.options.sort[0].key)
? self.options.sort[0].key
: 'sort';
if (self.options.sort[0].key == 'position') {
sort[0].key = 'in';
}
2014-02-06 10:27:57 +00:00
}
return sort;
}
function getSortSelectWidth(width) {
return Math.min(144, width - 52 + Ox.UI.SCROLLBAR_SIZE);
}
2013-07-13 23:07:25 +00:00
function isEditable(data) {
return self.options.editable && !data.annotation;
}
function isSortable() {
2013-07-14 13:48:41 +00:00
return self.options.editable
&& self.options.sort && self.options.sort.length
&& self.options.sort[0].key == 'index'
&& self.options.sort[0].operator == '+';
2013-07-13 23:07:25 +00:00
}
2013-08-10 11:09:12 +00:00
function joinClips() {
var clips = getEditable(self.options.selected).map(function(id) {
return Ox.clone(Ox.getObjectById(self.options.clips, id));
}),
ids = [], join = [], joined;
do {
joined = false;
Ox.forEach(clips, function(outClip) {
var outPoint = outClip.item + '/' + outClip.out;
Ox.forEach(clips, function(inClip, index) {
var inPoint = inClip.item + '/' + inClip['in'];
if (inPoint == outPoint) {
2013-08-10 11:22:38 +00:00
ids = Ox.unique(ids.concat([outClip.id, inClip.id]));
join = Ox.unique(join.concat([outClip.id]));
2013-08-10 11:09:12 +00:00
outClip.out = inClip.out;
2013-08-10 11:22:38 +00:00
if (Ox.contains(join, inClip.id)) {
join.splice(join.indexOf(inClip.id), 1);
}
2013-08-10 11:09:12 +00:00
clips.splice(index, 1);
joined = true;
return false; // break
}
});
if (joined) {
2014-02-12 08:09:50 +00:00
return false; // break;
2013-08-10 11:09:12 +00:00
}
});
} while (joined);
2013-08-10 11:22:38 +00:00
join = join.map(function(id) {
2013-08-10 11:09:12 +00:00
var clip = Ox.getObjectById(clips, id);
return {'in': clip['in'], item: clip.item, out: clip.out};
});
if (ids.length) {
that.triggerEvent('join', {ids: ids, join: join});
}
}
2013-08-09 12:52:18 +00:00
function selectClips() {
if (self.options.editable) {
self.$menu[
self.options.selected.length > 0 ? 'enableItem' : 'disableItem'
]('split');
self.$menu[
self.options.selected.length > 1 ? 'enableItem' : 'disableItem'
]('join');
self.$menu[
self.options.selected.length > 0 ? 'enableItem' : 'disableItem'
]('replace');
2013-08-09 12:52:18 +00:00
}
self.$list.options({selected: self.options.selected});
}
2015-10-04 15:08:44 +00:00
function splitClip() {
that.selectClip();
var index;
Ox.forEach(self.options.clips, function(clip, i) {
if (clip.position <= self.options.position) {
index = i
} else {
return false; // break
}
});
var clip = self.options.clips[index];
if (clip) {
var position = self.options.position - clip.position + clip['in'];
if (position != clip['in'] && position != clip['out']) {
var ids = [clip.id];
var split = [
{'in': clip['in'], 'out': position, 'item': clip.item},
{'in': position, 'out': clip['out'], 'item': clip.item}
];
that.triggerEvent('split', {ids: ids, split: split});
}
}
}
2013-08-10 11:09:12 +00:00
function splitClips() {
var ids = getEditable(self.options.selected).filter(function(id) {
var clip = Ox.getObjectById(self.options.clips, id);
return clip.cuts.length;
}),
split = Ox.flatten(ids.map(function(id) {
var clip = Ox.getObjectById(self.options.clips, id),
cuts = [clip['in']].concat(clip.cuts).concat([clip.out]);
return Ox.range(0, cuts.length - 1).map(function(i) {
return {'in': cuts[i], item: clip.item, out: cuts[i + 1]};
});
}));
if (split.length > ids.length) {
that.triggerEvent('split', {ids: ids, split: split});
}
}
2013-07-13 23:07:25 +00:00
function updateSortElement() {
2013-07-14 14:56:41 +00:00
self.$sortSelect.options({
value: self.options.sort[0].key,
});
self.$orderButton.options({
title: getButtonTitle(),
tooltip: getButtonTooltip(),
});
2013-07-13 23:07:25 +00:00
}
2013-07-14 18:58:31 +00:00
function updateStatus() {
self.$status.html(
Ox.toTitleCase(Ox.formatCount(self.options.clips.length, 'Clip'))
+ ', ' + Ox.formatDuration(self.options.duration, 3)
);
}
2016-11-27 18:41:10 +00:00
function updateView() {
var action = self.options.editable
&& self.options.selected.length
&& self.options.view != 'annotations'
? 'enableItem' : 'disableItem';
self.$menu[action]('split');
self.$menu[
self.options.editable
&& self.options.selected.length > 1
&& self.options.view != 'annotations'
? 'enableItem' : 'disableItem'
]('join');
self.$menu[action]('replace');
self.$panel.replaceElement(1, self.$list = getList());
}
that.getPasteIndex = function() {
return self.$list.getPasteIndex();
};
that.invertSelection = function() {
self.$list.invertSelection();
};
that.selectAll = function() {
self.$list.selectAll();
};
that.selectClip = function() {
var index;
Ox.forEach(self.options.clips, function(clip, i) {
Ox.print('CLIP', i, clip.position, clip.duration, self.options.position)
if (clip.position <= self.options.position) {
index = i
} else {
return false; // break
}
});
self.options.selected = [self.options.clips[index].id];
selectClips();
that.triggerEvent('select', {ids: self.options.selected});
return that;
};
2013-07-13 23:07:25 +00:00
that.updateItem = function(id, data) {
2013-08-09 12:52:18 +00:00
self.options.clips[Ox.getIndexById(self.options.clips, id)] = data;
2014-02-13 09:31:06 +00:00
self.$list.value(id, {
duration: data.duration,
'in': data['in'],
out: data.out,
sort: data.sort
2013-07-13 23:07:25 +00:00
});
return that;
2013-07-13 23:07:25 +00:00
};
return that;
};