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