oxjs/source/Ox.UI/js/Video/Ox.VideoPanel.js

460 lines
15 KiB
JavaScript
Raw Normal View History

2011-07-29 18:48:43 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2011-05-16 08:24:46 +00:00
2011-11-05 22:18:26 +00:00
'use strict';
2011-05-16 08:24:46 +00:00
/*@
Ox.VideoPanelPlayer <f:Ox.Element> VideoPanelPlayer Object
() -> <f> VideoPanelPlayer Object
(options) -> <f> VideoPanelPlayer Object
(options, self) -> <f> VideoPanelPlayer Object
options <o> Options object
self <o> shared private variable
@*/
2012-01-12 10:39:05 +00:00
Ox.VideoPanel = function(options, self) {
2011-04-22 22:03:10 +00:00
self = self || {};
var that = Ox.Element({}, self)
2011-04-22 22:03:10 +00:00
.defaults({
annotationsCalendarSize: 256,
2012-01-12 10:39:05 +00:00
annotationsFont: 'small',
annotationsMapSize: 256,
2012-01-12 10:39:05 +00:00
annotationsRange: 'all',
2011-04-22 22:03:10 +00:00
annotationsSize: 256,
2012-01-12 10:39:05 +00:00
annotationsSort: 'position',
2011-10-22 21:03:42 +00:00
censored: [],
2012-01-17 15:43:46 +00:00
clickLink: null,
2012-01-12 10:39:05 +00:00
cuts: [],
2011-04-22 22:03:10 +00:00
duration: 0,
2011-12-22 15:47:46 +00:00
enableSubtitles: false,
find: '',
fullscreen: false,
2011-04-22 22:03:10 +00:00
height: 0,
'in': 0,
2012-01-12 10:39:05 +00:00
layers: [],
loop: false, // fixme: used?
2011-04-22 22:03:10 +00:00
muted: false,
out: 0,
2011-04-22 22:03:10 +00:00
paused: false,
playInToOut: false,
position: 0,
poster: '',
resolution: 0,
2011-08-17 19:34:34 +00:00
scaleToFill: false,
selected: '',
2012-01-12 10:39:05 +00:00
showAnnotations: false,
showAnnotationsCalendar: false,
showAnnotationsMap: false,
2012-01-12 19:04:32 +00:00
showLayers: {},
showTimeline: true,
2012-01-12 19:04:32 +00:00
showUsers: false,
2011-04-22 22:03:10 +00:00
subtitles: [],
tooltips: false,
2011-08-17 19:34:34 +00:00
video: '',
volume: 1,
2011-04-22 22:03:10 +00:00
width: 0
})
.options(options || {})
.css({
height: self.options.height + 'px',
width: self.options.width + 'px'
})
.bindEvent({
resize: resizeElement,
key_0: toggleMuted,
key_space: togglePaused
2011-04-22 22:03:10 +00:00
});
2011-08-17 19:34:34 +00:00
self.fullscreen = false;
2011-04-22 22:03:10 +00:00
self.$player = Ox.Element()
2011-04-22 22:03:10 +00:00
.css({
overflowX: 'hidden',
overflowY: 'hidden'
});
2011-08-17 19:34:34 +00:00
self.$video = Ox.VideoPlayer({
annotations: getAnnotations(),
2011-10-22 21:03:42 +00:00
censored: self.options.censored,
2011-08-28 06:23:15 +00:00
controlsTop: ['fullscreen', 'title', 'find'],
2011-12-22 15:47:46 +00:00
controlsBottom: ['play', 'volume', 'scale', 'timeline', 'position', 'settings'],
2011-08-17 19:34:34 +00:00
enableFind: true,
enableKeyboard: true,
2011-08-18 14:03:48 +00:00
enableMouse: true,
2011-12-19 21:13:11 +00:00
enablePosition: true,
2011-12-22 15:47:46 +00:00
enableSubtitles: self.options.enableSubtitles,
2011-12-19 21:13:11 +00:00
enableTimeline: true,
find: self.options.find,
fullscreen: self.options.fullscreen,
2011-08-17 19:34:34 +00:00
height: getPlayerHeight(),
'in': self.options['in'],
2011-08-17 19:34:34 +00:00
muted: self.options.muted,
out: self.options.out,
2011-04-22 22:03:10 +00:00
paused: true,
position: self.options.position,
resolution: self.options.resolution,
2011-08-17 19:34:34 +00:00
scaleToFill: self.options.scaleToFill,
subtitles: self.options.subtitles,
timeline: self.options.timeline,
video: self.options.video,
volume: self.options.volume,
width: getPlayerWidth()
2011-04-22 22:03:10 +00:00
})
.bindEvent({
find: function(data) {
self.$timeline.options({find: data.find});
self.$annotationPanel.options({highlight: data.find});
that.triggerEvent('find', data);
},
fullscreen: function(data) {
self.options.fullscreen = data.fullscreen;
},
2011-08-17 19:34:34 +00:00
muted: function(data) {
that.triggerEvent('muted', data);
},
paused: function(data) {
that.triggerEvent('paused', data);
},
2012-01-12 19:04:32 +00:00
playing: function(data) {
setPosition(data.position, true);
},
position: function(data) {
2012-01-12 19:04:32 +00:00
setPosition(data.position);
that.triggerEvent('position', data);
},
resolution: function(data) {
that.triggerEvent('resolution', data);
},
2011-08-17 19:34:34 +00:00
scale: function(data) {
that.triggerEvent('scale', data);
},
select: selectAnnotation,
2011-12-22 15:47:46 +00:00
subtitles: function(data) {
that.triggerEvent('subtitles', data);
},
2011-08-17 19:34:34 +00:00
volume: function(data) {
that.triggerEvent('volume', data);
}
2011-04-22 22:03:10 +00:00
})
.appendTo(self.$player);
self.$controls = Ox.Element()
2011-04-22 22:03:10 +00:00
.bindEvent({
toggle: toggleControls
});
2011-08-17 19:34:34 +00:00
self.$timeline = Ox.LargeVideoTimeline({
duration: self.options.duration,
find: self.options.find,
2011-08-17 19:34:34 +00:00
getImageURL: self.options.getTimelineImageURL,
position: self.options.position,
subtitles: self.options.subtitles,
videoId: self.options.videoId,
width: getTimelineWidth()
2011-04-22 22:03:10 +00:00
})
2011-08-17 19:34:34 +00:00
.css({left: '4px', top: '4px'})
.bindEvent({
mousedown: that.gainFocus,
2011-08-17 19:34:34 +00:00
position: changeTimeline
2011-04-22 22:03:10 +00:00
})
.appendTo(self.$controls);
2012-01-12 10:39:05 +00:00
self.$videoPanel = Ox.SplitPanel({
2011-04-22 22:03:10 +00:00
elements: [
{
element: self.$player
},
{
collapsed: !self.options.showTimeline,
2011-04-22 22:03:10 +00:00
collapsible: true,
element: self.$controls,
size: 80,
tooltip: self.options.tooltips ? 'timeline' : false
2011-04-22 22:03:10 +00:00
}
],
orientation: 'vertical'
});
2012-01-12 10:39:05 +00:00
self.$annotationPanel = Ox.AnnotationPanel({
2012-01-17 09:25:58 +00:00
calendarSize: self.options.annotationsCalendarSize,
2012-01-17 15:43:46 +00:00
clickLink: self.options.clickLink,
2012-01-17 09:25:58 +00:00
editable: false,
2012-01-12 10:39:05 +00:00
font: self.options.annotationsFont,
highlight: self.options.find,
2012-01-12 19:04:32 +00:00
'in': self.options['in'],
2012-01-12 10:39:05 +00:00
layers: self.options.layers,
2012-01-17 09:25:58 +00:00
mapSize: self.options.annotationsMapSize,
2012-01-12 19:04:32 +00:00
out: self.options.out,
position: self.options.position,
2012-01-12 10:39:05 +00:00
range: self.options.annotationsRange,
2012-01-17 09:25:58 +00:00
selected: self.options.selected,
showCalendar: self.options.showAnnotationsCalendar,
2012-01-12 10:39:05 +00:00
showFonts: true,
showLayers: self.options.showLayers,
2012-01-17 09:25:58 +00:00
showMap: self.options.showAnnotationsMap,
2012-01-12 19:04:32 +00:00
showUsers: self.options.showUsers,
2012-01-17 09:25:58 +00:00
sort: self.options.annotationsSort,
width: self.options.annotationsSize
2012-01-12 10:39:05 +00:00
})
2011-04-22 22:03:10 +00:00
.bindEvent({
2012-01-17 09:25:58 +00:00
annotationsfont: function(data) {
self.options.annotationsFont = data.font;
that.triggerEvent('annotationsfont', data);
},
annotationsrange: function(data) {
self.options.annotationsRange = data.range;
that.triggerEvent('annotationsrange', data);
},
annotationssort: function(data) {
self.options.annotationsSort = data.sort;
that.triggerEvent('annotationssort', data);
},
open: function() {
setPosition(self.options['in']);
},
2011-04-22 22:03:10 +00:00
resize: resizeAnnotations,
resizeend: resizeendAnnotations,
2012-01-17 09:25:58 +00:00
resizecalendar: function(data) {
that.triggerEvent('resizecalendar', data);
},
resizemap: function(data) {
that.triggerEvent('resizemap', data);
},
2012-01-12 19:04:32 +00:00
select: selectAnnotation,
2012-01-17 09:25:58 +00:00
toggle: toggleAnnotations,
togglecalendar: function(data) {
self.options.showAnnotationsCalendar = !data.collapsed;
that.triggerEvent('togglecalendar', data);
},
togglelayer: function(data) {
that.triggerEvent('togglelayer', {
collapsed: data.collapsed,
layer: data.layer
});
},
togglemap: function(data) {
self.options.showAnnotationsMap = !data.collapsed;
that.triggerEvent('togglemap', data);
}
2011-04-22 22:03:10 +00:00
});
[
'0', 'b', 'backslash', 'closebracket', 'comma', 'dot',
'f', 'g', 'i', 'n', 'o', 'openbracket', 'p',
'shift_0', 'shift_g', 'shift_i', 'shift_o', 'slash', 'space'
].forEach(function(key) {
key = 'key_' + key;
self.$annotationPanel.bindEvent(key, function() {
that.triggerEvent(key);
});
});
that.$element = Ox.SplitPanel({
2011-04-22 22:03:10 +00:00
elements: [
{
2012-01-12 10:39:05 +00:00
element: self.$videoPanel
2011-04-22 22:03:10 +00:00
},
{
collapsed: !self.options.showAnnotations,
collapsible: true,
2012-01-12 10:39:05 +00:00
element: self.$annotationPanel,
2011-04-22 22:03:10 +00:00
resizable: true,
resize: [192, 256, 320, 384],
size: self.options.annotationsSize,
tooltip: self.options.tooltips ? 'annotations' : false
2011-04-22 22:03:10 +00:00
}
],
orientation: 'horizontal'
});
2011-08-17 19:34:34 +00:00
function changeTimeline(data) {
2011-04-22 22:03:10 +00:00
self.options.position = data.position;
2011-08-17 19:34:34 +00:00
self.$video.options({position: self.options.position});
2012-01-12 19:04:32 +00:00
self.$annotationPanel.options({position: self.options.position});
that.triggerEvent('position', {position: self.options.position});
2011-04-22 22:03:10 +00:00
}
function getAnnotations() {
return Ox.flatten(Ox.merge(self.options.layers.map(function(layer) {
return layer.items.map(function(item) {
return {id: item.id, 'in': item['in'], out: item.out, text: item.value};
});
}))).sort(sortAnnotations);
}
2011-04-22 22:03:10 +00:00
function getPlayerHeight() {
return self.options.height -
self.options.showTimeline * 80 - 1;
2011-04-22 22:03:10 +00:00
}
function getPlayerWidth() {
return self.options.width -
2011-08-17 19:34:34 +00:00
(self.options.showAnnotations && !self.fullscreen)
* self.options.annotationsSize - 1;
2011-04-22 22:03:10 +00:00
}
function getTimelineWidth() {
return self.options.width -
(self.options.showAnnotations && !self.fullscreen) *
2011-08-17 19:34:34 +00:00
self.options.annotationsSize - 16 - 1;
2011-04-22 22:03:10 +00:00
}
function resizeAnnotations(data) {
2011-08-19 20:37:58 +00:00
// called on annotations resize
self.options.annotationsSize = data.size;
2011-08-19 20:37:58 +00:00
self.$video.options({
width: getPlayerWidth()
});
self.$timeline.options({
width: getTimelineWidth()
});
2012-01-17 09:25:58 +00:00
self.$annotationPanel.options({width: data.size});
2011-04-22 22:03:10 +00:00
}
function resizeendAnnotations(data) {
2012-01-17 09:25:58 +00:00
that.triggerEvent('annotationssize', data.size);
2011-04-22 22:03:10 +00:00
}
function resizeElement(data) {
2011-04-22 22:03:10 +00:00
// called on browser toggle
self.options.height = data.size;
2011-08-17 19:34:34 +00:00
self.$video.options({
height: getPlayerHeight()
});
2011-04-22 22:03:10 +00:00
}
2012-01-17 09:25:58 +00:00
/*
function resizePanel(data) {
2012-01-17 09:25:58 +00:00
// called on annotations toggle <-- FIXME: NOT TRUE
Ox.print('RESIZEPANEL----------')
2011-08-17 19:34:34 +00:00
self.$video.options({
width: getPlayerWidth()
});
self.$timeline.options({
width: getTimelineWidth()
});
2011-04-22 22:03:10 +00:00
}
2012-01-17 09:25:58 +00:00
*/
2011-04-22 22:03:10 +00:00
2012-01-12 19:04:32 +00:00
function selectAnnotation(data) {
self.options.selected = data.id;
if (self.options.selected) {
setPosition(data['in']);
setPoint('in', data['in']);
setPoint('out', data.out);
}
self.$annotationPanel.options({selected: self.options.selected});
that.triggerEvent('select', {id: self.options.selected});
2012-01-12 19:04:32 +00:00
}
function setPoint(point, position) {
self.options[point] = position;
self.$video.options(point, position);
self.$timeline.options(point, position);
self.$annotationPanel.options(point, position);
}
function setPosition(position, playing) {
self.options.position = position;
!playing && self.$video.options({position: self.options.position});
self.$timeline.options({position: self.options.position});
self.$annotationPanel.options({position: self.options.position});
2011-04-22 22:03:10 +00:00
}
function sortAnnotations(a, b) {
var ret = 0;
if (a['in'] < b['in']) {
ret = -1;
} else if (a['in'] > b['in']) {
ret = 1;
} else if (a.out < b.out) {
ret = -1;
} else if (a.out > b.out) {
ret = 1;
} else if (a.value < b.value) {
ret = -1;
} else if (a.value > b.value) {
ret = 1;
}
return ret;
}
function toggleAnnotations(data) {
2011-04-22 22:03:10 +00:00
self.options.showAnnotations = !data.collapsed;
2011-08-17 19:34:34 +00:00
self.$video.options({
2012-01-17 09:25:58 +00:00
width: getPlayerWidth()
});
self.$timeline.options({
width: getTimelineWidth()
2011-08-17 19:34:34 +00:00
});
that.triggerEvent('toggleannotations', {
2011-04-22 22:03:10 +00:00
showAnnotations: self.options.showAnnotations
});
}
function toggleControls(data) {
self.options.showTimeline = !data.collapsed;
2011-08-17 19:34:34 +00:00
self.$video.options({
height: getPlayerHeight()
2011-04-22 22:03:10 +00:00
});
that.triggerEvent('toggletimeline', {
showTimeline: self.options.showTimeline
2011-04-22 22:03:10 +00:00
});
}
function toggleMuted() {
self.$video.toggleMuted();
}
function togglePaused() {
self.$video.togglePaused();
self.$video.options('paused') && that.triggerEvent('position', {
position: self.$video.options('position')
});
}
2011-04-29 12:40:51 +00:00
self.setOption = function(key, value) {
if (key == 'fullscreen') {
self.$video.options({fullscreen: value});
} else if (key == 'height') {
self.$video.options({height: getPlayerHeight()});
} else if (key == 'in' || key == 'out') {
setPoint(key, value);
2011-04-22 22:03:10 +00:00
} else if (key == 'position') {
self.$video.options({position: value});
self.$timeline.options({position: value});
self.$annotationPanel.options({position: value});
} else if (key == 'selected') {
self.$annotationPanel.options({selected: value});
} else if (key == 'showAnnotations') {
that.$element.toggle(1);
} else if (key == 'showTimeline') {
2012-01-12 10:39:05 +00:00
self.$videoPanel.toggle(1);
2011-04-22 22:03:10 +00:00
} else if (key == 'width') {
self.$video.options({width: getPlayerWidth()});
self.$timeline.options({width: getTimelineWidth()});
2011-04-22 22:03:10 +00:00
}
}
// fixme: can these be removed?
2011-09-14 14:34:33 +00:00
/*@
toggleAnnotations <f> toggle annotations
2011-11-03 15:42:41 +00:00
() -> <o> toggle visibility of annotations
2011-09-14 14:34:33 +00:00
@*/
2011-04-22 22:03:10 +00:00
that.toggleAnnotations = function() {
that.$element.toggle(1);
};
2011-09-14 14:34:33 +00:00
/*@
toggleTimeline <f> toggle timeline
() -> <o> toggle visibility of timeline
2011-09-14 14:34:33 +00:00
@*/
that.toggleTimeline = function() {
2012-01-12 10:39:05 +00:00
self.$videoPanel.toggle(1);
2011-04-22 22:03:10 +00:00
};
return that;
}