pandora/static/js/pandora/embedPanel.js

198 lines
6.7 KiB
JavaScript
Raw Normal View History

2013-02-18 10:17:19 +00:00
pandora.ui.embedPanel = function() {
2013-02-20 04:39:12 +00:00
2013-02-20 08:58:15 +00:00
var that = Ox.Element(),
data, options,
ui = pandora.user.ui,
$outerPanel, $innerPanel,
$title, $player, $controls, $timeline, $annotations,
$errorBox, $errorLogo, $errorText;
2013-02-20 04:39:12 +00:00
if (pandora.user.ui.item) {
2013-02-20 08:58:15 +00:00
options = getOptions();
2013-02-20 05:58:51 +00:00
2013-02-20 08:58:15 +00:00
pandora.api.get({id: ui.item, keys: [
2013-02-20 05:58:51 +00:00
'duration', 'layers', 'parts', 'posterFrame',
'rightslevel', 'size', 'title', 'videoRatio'
]}, function(result) {
2013-02-20 08:58:15 +00:00
data = result.data, innerHeight;
Ox.extend(data, pandora.getVideoOptions(data));
if (options.matchRatio || options.showAnnotations) {
options.height = Math.min(
Math.round(window.innerWidth / data.videoRatio),
window.innerHeight
- (options.title ? 32 : 0)
- (options.showTimeline ? 80 : 0)
- (options.showAnnotations ? 128 : 0)
);
} else {
options.height = window.innerHeight
- (options.title ? 32 : 0)
- (options.showTimeline ? 80 : 0);
}
innerHeight = options.height
+ (options.title ? 32 : 0)
+ (options.showTimeline ? 80 : 0);
if (options.title) {
$title = Ox.Element()
.css({position: 'absolute'})
.append(
$('<div>')
.css({
marginTop: !options.title.match(/\\n/) ? '8px' : '2px',
textAlign: 'center'
})
.html(options.title.replace(/\\n/g, '<br>'))
);
} else {
$title = Ox.Element();
}
$player = pandora.ui.embedPlayer(options, data)
.bindEvent({
playing: function(data) {
setPosition(data.position, true);
},
position: function(data) {
setPosition(data.position);
}
});
$controls = Ox.Element();
if (options.showTimeline) {
$timeline = Ox.LargeVideoTimeline({
duration: data.duration,
getImageURL: function(type, i) {
return '/' + ui.item + '/timeline' + type + '64p' + i + '.jpg';
},
position: options.position,
subtitles: data.subtitles || [],
type: ui.videoTimeline,
width: window.innerWidth - 16
})
.css({
top: '4px',
left: '4px'
})
.bindEvent({
mousedown: that.gainFocus,
position: changeTimeline
})
.appendTo($controls);
}
$annotations = Ox.Element().html('ANNOTATIONS');
$innerPanel = Ox.SplitPanel({
elements: [
{element: $title, size: options.title ? 32 : 0},
{element: $player},
{element: $controls, size: options.showTimeline ? 80 : 0}
],
orientation: 'vertical'
});
$outerPanel = Ox.SplitPanel({
elements: [
{element: $innerPanel, size: innerHeight},
{element: $annotations}
],
orientation: 'vertical'
});
that.setElement($outerPanel);
2013-02-20 05:58:51 +00:00
});
2013-02-20 04:39:12 +00:00
} else {
2013-02-20 08:58:15 +00:00
that.addClass('OxScreen')
2013-02-20 04:39:12 +00:00
.css({
position: 'absolute',
left: 0,
top: 0,
right: 0,
bottom: 0,
});
2013-02-20 05:22:37 +00:00
2013-02-20 04:39:12 +00:00
$errorBox = $('<div>')
.css({
position: 'absolute',
left: 0,
top: 0,
right: 0,
bottom: 0,
width: '96px',
height: '96px',
padding: '16px',
margin: 'auto'
})
.appendTo(that);
2013-02-20 05:22:37 +00:00
2013-02-20 04:39:12 +00:00
$errorLogo = $('<img>')
.css({width: '96px', opacity: 0})
.one({
load: function() {
$errorLogo.animate({opacity: 1}, 250);
}
})
.attr({src: '/static/png/logo.png'})
.appendTo($errorBox);
2013-02-20 05:22:37 +00:00
2013-02-20 04:39:12 +00:00
$errorText = $('<div>')
.css({marginTop: '4px', fontSize: '9px', textAlign: 'center'})
.html('This view cannot<br>be embedded.')
.appendTo($errorBox);
}
2013-02-20 08:58:15 +00:00
function changeTimeline(data) {
var position = options.playInToOut
? Ox.limit(data.position, options['in'], options.out)
: data.position;
Ox.print('PPP', position);
$player.options({position: position});
position != data.position && $timeline.options({position: position});
options.showAnnotations && $annotations.options({position: position});
}
function getOptions() {
var options = {},
defaults = {
invertHighlight: true,
paused: true,
playInToOut: true,
width: window.innerWidth
};
ui.hash.query.forEach(function(condition) {
if (condition.key != 'embed') {
options[condition.key] = condition.value;
}
});
options = Ox.extend(
{item: ui.item},
ui.videoPoints[ui.item] || {},
defaults,
options
);
if (!options.position) {
options.position = options['in'] || 0;
}
if (!options['in'] && !options.out) {
options.playInToOut = false;
}
return options;
}
function setPosition(position, playing) {
!playing && $player.options({position: position});
options.showTimeline && $timeline.options({position: position});
options.showAnnotations && $annotations.options({position: position});
}
2013-02-18 10:17:19 +00:00
that.display = function() {
// fixme: move animation into Ox.App
var animate = $('.OxScreen').length == 0;
Ox.Log('', 'ANIMATE?', animate)
animate && pandora.$ui.body.css({opacity: 0});
that.appendTo(pandora.$ui.body);
animate && pandora.$ui.body.animate({opacity: 1}, 1000);
return that;
};
2013-02-20 04:39:12 +00:00
2013-02-18 10:17:19 +00:00
return that;
2013-02-20 04:39:12 +00:00
2013-02-18 10:17:19 +00:00
};