2011-05-15 16:18:58 +00:00
|
|
|
Ox.SmallVideoTimeline = function(options, self) {
|
|
|
|
|
|
|
|
self = self || {};
|
|
|
|
var that = Ox.Element({}, self)
|
|
|
|
.defaults({
|
2011-05-16 11:29:26 +00:00
|
|
|
_offset: 0, // hack for cases where all these position: absolute elements have to go into a float: left
|
2011-05-15 16:18:58 +00:00
|
|
|
duration: 0,
|
|
|
|
editing: false,
|
|
|
|
getTimelineURL: null,
|
|
|
|
'in': 0,
|
|
|
|
out: 0,
|
2011-05-15 18:50:05 +00:00
|
|
|
paused: false,
|
|
|
|
showMilliseconds: 0,
|
|
|
|
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-15 18:50:05 +00:00
|
|
|
self.$interface = Ox.Element()
|
|
|
|
.addClass('OxInterface')
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: self.interfaceLeft + 'px',
|
|
|
|
top: self.interfaceTop + 'px',
|
|
|
|
width: self.interfaceWidth + 'px',
|
|
|
|
height: '20px',
|
|
|
|
zIndex: 11
|
|
|
|
})
|
|
|
|
.bind({
|
|
|
|
mousedown: mousedown,
|
|
|
|
mouseleave: mouseleave,
|
|
|
|
mousemove: mousemove
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
drag: function(event, e) {
|
|
|
|
mousedown(e);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.appendTo(that);
|
2011-05-15 16:18:58 +00:00
|
|
|
|
2011-05-15 18:50:05 +00:00
|
|
|
if (self.options.type == 'player') {
|
|
|
|
self.$positionMarker = $('<div>')
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
width: '14px',
|
|
|
|
height: '14px',
|
|
|
|
border: '1px solid rgba(0, 0, 0, 0.5)',
|
|
|
|
borderRadius: '8px'
|
|
|
|
})
|
|
|
|
.append(
|
|
|
|
self.$positionMarkerRing = $('<div>')
|
|
|
|
.css({
|
|
|
|
width: '10px',
|
|
|
|
height: '10px',
|
|
|
|
border: '2px solid rgba(255, 255, 255, ' + (self.options.paused ? 0.5 : 1) + ')',
|
|
|
|
borderRadius: '7px',
|
|
|
|
})
|
|
|
|
.append(
|
|
|
|
$('<div>')
|
|
|
|
.css({
|
|
|
|
width: '8px',
|
|
|
|
height: '8px',
|
|
|
|
border: '1px solid rgba(0, 0, 0, 0.5)',
|
|
|
|
borderRadius: '5px',
|
|
|
|
})
|
|
|
|
)
|
|
|
|
)
|
|
|
|
.appendTo(that.$element);
|
|
|
|
} else {
|
|
|
|
self.$positionMarker = $('<img>')
|
2011-05-15 16:18:58 +00:00
|
|
|
.attr({
|
2011-05-15 18:50:05 +00:00
|
|
|
src: Ox.UI.PATH + 'png/videoMarkerPlay.png'
|
2011-05-15 16:18:58 +00:00
|
|
|
})
|
|
|
|
.css({
|
2011-05-15 18:50:05 +00:00
|
|
|
position: 'absolute',
|
|
|
|
top: '2px',
|
|
|
|
width: '9px',
|
|
|
|
height: '5px',
|
|
|
|
zIndex: 10
|
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) {
|
|
|
|
var titleCase = Ox.toTitleCase(point);
|
|
|
|
self.$pointMarker[point] = $('<img>')
|
|
|
|
.addClass('OxPointMarker' + titleCase)
|
|
|
|
.attr({
|
|
|
|
src: Ox.UI.PATH + 'png/videoMarker' + titleCase + '.png'
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
top: '16px',
|
|
|
|
width: '6px',
|
|
|
|
height: '6px',
|
|
|
|
marginLeft: (point == 'in' ? -1 : 4) + 'px',
|
|
|
|
zIndex: 10
|
|
|
|
})
|
|
|
|
.appendTo(that.$element);
|
|
|
|
setPointMarker(point);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
self.$tooltip = Ox.Tooltip({
|
|
|
|
animate: false
|
|
|
|
}).css({
|
|
|
|
textAlign: 'center'
|
2011-05-15 16:18:58 +00:00
|
|
|
});
|
|
|
|
|
2011-05-15 18:50:05 +00:00
|
|
|
function getPosition(e) {
|
|
|
|
var position =
|
|
|
|
(
|
|
|
|
(e.offsetX ? e.offsetX : e.clientX - $(e.target).offset().left) -
|
|
|
|
(self.options.type == 'player' ? 8 : 0)
|
|
|
|
) * 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,
|
|
|
|
editing: self.options.editing,
|
|
|
|
getTimelineURL: self.options.getTimelineURL,
|
|
|
|
'in': self.options['in'],
|
|
|
|
out: self.options.out,
|
|
|
|
results: self.options.results,
|
|
|
|
subtitles: self.options.subtitles,
|
|
|
|
width: self.imageWidth,
|
|
|
|
type: self.options.type
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: self.imageLeft + 'px',
|
|
|
|
width: self.imageWidth + 'px'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-05-15 18:50:05 +00:00
|
|
|
function mousedown(e) {
|
|
|
|
if ($(e.target).is('.OxInterface')) {
|
|
|
|
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 mouseleave() {
|
|
|
|
self.$tooltip.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
function mousemove(e) {
|
|
|
|
var position, subtitle;
|
|
|
|
if ($(e.target).is('.OxInterface')) {
|
|
|
|
position = getPosition(e);
|
|
|
|
subtitle = getSubtitle(position);
|
|
|
|
self.$tooltip.options({
|
|
|
|
title: 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)
|
|
|
|
})
|
|
|
|
.show(e.clientX, e.clientY);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
self.$tooltip.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setPointMarker(point) {
|
|
|
|
self.$pointMarker[point].css({
|
|
|
|
left: self.imageLeft + Math.round(
|
|
|
|
self.options[point] * self.imageWidth / self.options.duration
|
|
|
|
) + 'px'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function setPositionMarker() {
|
|
|
|
Ox.print(self.interfaceLeft + Math.round(
|
|
|
|
self.options.position * self.imageWidth / self.options.duration
|
|
|
|
));
|
|
|
|
self.$positionMarker.css({
|
|
|
|
left: self.interfaceLeft + Math.round(
|
|
|
|
self.options.position * self.imageWidth / self.options.duration
|
2011-05-16 11:29:26 +00:00
|
|
|
) - (self.options.type == 'editor' ? 4 : 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') {
|
|
|
|
self.$image.options({
|
|
|
|
duration: value
|
|
|
|
});
|
|
|
|
} else if (key == 'paused') {
|
2011-05-15 18:50:05 +00:00
|
|
|
self.$positionMarkerRing.css({
|
|
|
|
borderColor: 'rgba(255, 255, 255, ' + (self.options.paused ? 0.5 : 1) + ')'
|
|
|
|
})
|
2011-05-16 11:29:26 +00:00
|
|
|
} else if (key == 'position') {
|
|
|
|
setPositionMarker();
|
|
|
|
} else if (key == 'results') {
|
|
|
|
self.$image.options({
|
|
|
|
results: value
|
|
|
|
});
|
|
|
|
} else if (key == 'subtitles') {
|
|
|
|
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;
|
|
|
|
|
|
|
|
};
|