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

246 lines
7.8 KiB
JavaScript
Raw Normal View History

2011-11-05 17:46:53 +01:00
'use strict';
2012-01-10 20:19:28 +05:30
/*@
Ox.SmallVideoTimeline <f> Small Video Timeline
@*/
2011-05-15 18:18:58 +02:00
Ox.SmallVideoTimeline = function(options, self) {
self = self || {};
var that = Ox.Element({}, self)
.defaults({
2012-01-10 20:19:28 +05:30
// _offset is a hack for cases where all these position: absolute
// elements have to go into a float: left
2012-01-13 00:34:32 +05:30
// FIXME: possible unused and unneeded
2012-01-10 20:19:28 +05:30
_offset: 0,
2011-12-19 21:13:11 +00:00
disabled: false,
2011-05-15 18:18:58 +02:00
duration: 0,
2011-05-17 20:04:26 +02:00
find: '',
2011-05-15 18:18:58 +02:00
'in': 0,
out: 0,
2011-05-15 20:50:05 +02:00
paused: false,
results: [],
2011-05-15 20:50:05 +02:00
showMilliseconds: 0,
2012-01-10 01:55:38 +05:30
state: 'default',
subtitles: [],
2011-05-17 11:43:54 +02:00
timeline: '',
2011-05-15 20:50:05 +02:00
type: 'player',
width: 256
2011-05-15 18:18:58 +02:00
})
.options(options || {})
.addClass('OxSmallVideoTimeline')
2011-05-15 20:50:05 +02:00
.css(Ox.extend({
2011-05-15 18:18:58 +02:00
width: self.options.width + 'px'
2011-05-15 20:50:05 +02:00
}, self.options.type == 'player' ? {
background: 'rgb(0, 0, 0)',
borderRadius: '8px'
} : {}));
2011-05-15 18:18:58 +02:00
self.height = self.options.type == 'player' ? 16 : 24;
2011-05-15 20:50:05 +02:00
self.imageLeft = self.options.type == 'player' ? 8 : 4;
self.imageWidth = self.options.width -
(self.options.type == 'player' ? 16 : 8)
2011-05-15 18:18:58 +02:00
self.imageHeight = self.options.type == 'player' ? 16 : 18;
2011-05-15 20:50:05 +02:00
self.interfaceLeft = self.options.type == 'player' ? 0 : 4;
self.interfaceTop = self.options.type == 'player' ? 0 : 2;
self.interfaceWidth = self.options.type == 'player' ? self.options.width : self.imageWidth;
2011-05-15 18:18:58 +02:00
that.css({
height: self.height + 'px'
});
self.$image = getTimelineImage().appendTo(that);
2011-05-15 18:18:58 +02:00
2011-05-17 20:44:53 +02:00
self.$interface = Ox.Element({
tooltip: getTooltip
})
2011-05-15 20:50:05 +02:00
.addClass('OxInterface')
.css({
left: self.interfaceLeft + 'px',
top: self.interfaceTop + 'px',
width: self.interfaceWidth + 'px',
height: '20px',
})
.bindEvent({
2011-09-17 11:49:29 +00:00
drag: function(data) {
mousedown(data);
},
2011-09-17 11:49:29 +00:00
dragend: function(data) {
self.triggered = false;
2011-09-17 11:49:29 +00:00
mousedown(data);
2012-01-10 20:19:28 +05:30
},
mousedown: mousedown
2011-05-15 20:50:05 +02:00
})
.appendTo(that);
2011-05-15 18:18:58 +02:00
2011-05-17 20:44:53 +02:00
self.$interface.$tooltip.css({
textAlign: 'center'
});
2011-05-15 20:50:05 +02:00
if (self.options.type == 'player') {
self.$positionMarker = $('<div>')
.addClass('OxMarkerPlay' + (self.options.paused ? ' OxPaused' : ''))
.append($('<div>').append($('<div>')))
2011-05-15 20:50:05 +02:00
.appendTo(that.$element);
} else {
self.$positionMarker = $('<img>')
.addClass('OxMarkerPosition')
2011-05-15 18:18:58 +02:00
.attr({
src: Ox.UI.getImageURL('markerPosition')
2011-05-15 18:18:58 +02:00
})
.appendTo(that.$element);
2011-05-15 20:50:05 +02:00
}
setPositionMarker();
2011-05-15 18:18:58 +02:00
2011-05-15 20:50:05 +02:00
if (self.options.type == 'editor') {
self.$pointMarker = {};
['in', 'out'].forEach(function(point) {
2011-09-02 00:32:23 +00:00
var titlecase = Ox.toTitleCase(point);
2011-05-15 20:50:05 +02:00
self.$pointMarker[point] = $('<img>')
.addClass('OxMarkerPoint' + titlecase)
2011-05-15 20:50:05 +02:00
.attr({
2011-09-02 00:32:23 +00:00
src: Ox.UI.getImageURL('marker' + titlecase)
2011-05-15 20:50:05 +02:00
})
.appendTo(that.$element);
setPointMarker(point);
});
}
2011-05-15 18:18:58 +02:00
2011-05-15 20:50:05 +02:00
function getPosition(e) {
2011-11-03 16:42:41 +01:00
var position = (
2012-01-17 23:26:26 +05:30
(e.offsetX ? e.offsetX : e.clientX - $(e.target).offset().left)
- (self.options.type == 'player' ? 8 : 0)
2011-05-15 20:50:05 +02:00
) * self.options.duration / self.imageWidth;
return Ox.limit(position, 0, self.options.duration);
}
function getSubtitle(position) {
var subtitle = '';
Ox.forEach(self.options.subtitles, function(v) {
if (v['in'] <= position && v.out > position) {
subtitle = v;
return false;
}
});
return subtitle;
}
function getTimelineImage() {
return Ox.SmallVideoTimelineImage({
duration: self.options.duration,
'in': self.options['in'],
out: self.options.out,
results: self.options.results,
subtitles: self.options.subtitles,
2012-01-10 01:55:38 +05:30
state: self.options.state,
2011-05-17 11:43:54 +02:00
timeline: self.options.timeline,
width: self.imageWidth,
type: self.options.type
})
.css({
position: 'absolute',
left: self.imageLeft + 'px',
width: self.imageWidth + 'px'
});
}
2011-05-17 20:44:53 +02:00
function getTooltip(e) {
var position = getPosition(e),
subtitle = getSubtitle(position);
2012-01-17 23:26:26 +05:30
return subtitle
? '<span class=\'OxBright\'>' + Ox.highlight(
subtitle.text, self.options.find, 'OxHighlight'
).replace(/\n/g, '<br/>') + '</span><br/>'
+ Ox.formatDuration(
subtitle['in'], self.options.showMilliseconds
) + ' - ' + Ox.formatDuration(
subtitle['out'], self.options.showMilliseconds
)
: Ox.formatDuration(position, self.options.showMilliseconds);
2011-05-17 20:44:53 +02:00
}
2011-05-15 20:50:05 +02:00
function mousedown(e) {
2011-12-19 21:13:11 +00:00
if (!self.options.disabled && $(e.target).is('.OxInterface')) {
2011-05-15 20:50:05 +02:00
self.options.position = getPosition(e);
setPositionMarker();
if (!self.triggered) {
that.triggerEvent('position', {
position: self.options.position
});
self.triggered = true;
setTimeout(function() {
self.triggered = false;
}, 250);
}
}
}
function setPointMarker(point) {
self.$pointMarker[point].css({
left: self.imageLeft + Math.round(
self.options[point] * self.imageWidth / self.options.duration
) + 'px'
});
}
function setPositionMarker() {
self.$positionMarker.css({
left: self.interfaceLeft + Math.round(
self.options.position * self.imageWidth / self.options.duration
) - (self.options.type == 'editor' ? 5 : 0) + self.options._offset + 'px'
2011-05-15 20:50:05 +02:00
});
}
function setWidth() {
self.imageWidth = self.options.width -
(self.options.type == 'player' ? 16 : 8);
self.interfaceWidth = self.options.type == 'player' ?
self.options.width : self.imageWidth;
2011-05-15 20:50:05 +02:00
that.css({
width: self.options.width + 'px'
});
self.$image.options({
width: self.imageWidth
}).css({
2011-05-15 20:50:05 +02:00
width: self.imageWidth + 'px'
});
self.$interface.css({
width: self.interfaceWidth + 'px'
});
setPositionMarker();
if (self.options.type == 'editor') {
setPointMarker('in');
setPointMarker('out');
}
}
self.setOption = function(key, value) {
if (key == 'duration') {
2012-01-10 01:55:38 +05:30
self.$image.options({duration: value});
2011-05-18 20:30:58 +02:00
} else if (key == 'in') {
2012-01-10 01:55:38 +05:30
self.$image.options({'in': value});
self.options.type == 'editor' && setPointMarker('in');
2011-05-18 20:30:58 +02:00
} else if (key == 'out') {
2012-01-10 01:55:38 +05:30
self.$image.options({out: value});
self.options.type == 'editor' && setPointMarker('out');
} else if (key == 'paused') {
self.$positionMarker[
self.options.paused ? 'addClass' : 'removeClass'
]('OxPaused');
} else if (key == 'position') {
setPositionMarker();
} else if (key == 'results') {
2012-01-10 01:55:38 +05:30
self.$image.options({results: value});
} else if (key == 'state') {
self.$image.options({state: value});
} else if (key == 'subtitles') {
2012-01-10 01:55:38 +05:30
self.$image.options({subtitles: value});
2011-05-15 20:50:05 +02:00
} else if (key == 'width') {
setWidth();
}
};
2011-05-15 18:18:58 +02:00
return that;
};