update embed panel
This commit is contained in:
parent
9da8d9a0a6
commit
106c0f7218
1 changed files with 37 additions and 21 deletions
|
@ -16,29 +16,11 @@ pandora.ui.embedPanel = function() {
|
||||||
'rightslevel', 'size', 'title', 'videoRatio'
|
'rightslevel', 'size', 'title', 'videoRatio'
|
||||||
]}, function(result) {
|
]}, function(result) {
|
||||||
|
|
||||||
var innerHeight,
|
var sizes = getSizes();
|
||||||
maxHeight = window.innerHeight
|
options.height = sizes.videoHeight;
|
||||||
- (options.title ? 32 : 0)
|
|
||||||
- (options.showTimeline ? 80 : 0)
|
|
||||||
- (options.showAnnotations ? 128 : 0);
|
|
||||||
|
|
||||||
video = Ox.extend(result.data, pandora.getVideoOptions(result.data));
|
video = Ox.extend(result.data, pandora.getVideoOptions(result.data));
|
||||||
|
|
||||||
if (options.matchRatio || options.showAnnotations) {
|
|
||||||
options.height = Math.round(window.innerWidth / video.videoRatio);
|
|
||||||
options.matchRatio = options.height <= maxHeight;
|
|
||||||
if (!options.matchRatio) {
|
|
||||||
options.height = maxHeight;
|
|
||||||
}
|
|
||||||
} 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) {
|
if (options.title) {
|
||||||
$title = Ox.Element()
|
$title = Ox.Element()
|
||||||
.css({position: 'absolute'})
|
.css({position: 'absolute'})
|
||||||
|
@ -210,7 +192,7 @@ pandora.ui.embedPanel = function() {
|
||||||
|
|
||||||
$outerPanel = Ox.SplitPanel({
|
$outerPanel = Ox.SplitPanel({
|
||||||
elements: [
|
elements: [
|
||||||
{element: $innerPanel, size: innerHeight},
|
{element: $innerPanel, size: sizes.innerHeight},
|
||||||
{element: $annotations}
|
{element: $annotations}
|
||||||
],
|
],
|
||||||
orientation: 'vertical'
|
orientation: 'vertical'
|
||||||
|
@ -307,6 +289,30 @@ pandora.ui.embedPanel = function() {
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getSizes() {
|
||||||
|
var innerHeight,
|
||||||
|
maxVideoHeight = window.innerHeight
|
||||||
|
- (options.title ? 32 : 0)
|
||||||
|
- (options.showTimeline ? 80 : 0)
|
||||||
|
- (options.showAnnotations ? 128 : 0),
|
||||||
|
videoHeight,
|
||||||
|
if (options.matchRatio || options.showAnnotations) {
|
||||||
|
videoHeight = Math.round(window.innerWidth / video.videoRatio);
|
||||||
|
options.matchRatio = options.height <= maxVideoHeight;
|
||||||
|
if (!options.matchRatio) {
|
||||||
|
videoHeight = maxVideoHeight;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
videoHeight = window.innerHeight
|
||||||
|
- (options.title ? 32 : 0)
|
||||||
|
- (options.showTimeline ? 80 : 0);
|
||||||
|
}
|
||||||
|
innerHeight = options.height
|
||||||
|
+ (options.title ? 32 : 0)
|
||||||
|
+ (options.showTimeline ? 80 : 0);
|
||||||
|
return {innerHeight: innerHeight, videoHeight: videoHeight};
|
||||||
|
}
|
||||||
|
|
||||||
function selectAnnotation(data) {
|
function selectAnnotation(data) {
|
||||||
if (data.id) {
|
if (data.id) {
|
||||||
setPosition(Math.max(data['in'], options['in'] || 0));
|
setPosition(Math.max(data['in'], options['in'] || 0));
|
||||||
|
@ -330,6 +336,16 @@ pandora.ui.embedPanel = function() {
|
||||||
return that;
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$(window).on({
|
||||||
|
resize: function() {
|
||||||
|
var sizes = getSizes();
|
||||||
|
$player.options({height: sizes.videoHeight});
|
||||||
|
$outerPanel.size(0, sizes.innerHeight);
|
||||||
|
options.showTimeline && $timeline.options({width: window.innerWidth - 16});
|
||||||
|
options.showAnnotations && $annotations.options({width: window.innerWidth});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue