update info embed
This commit is contained in:
parent
128eea602b
commit
c832690bd1
1 changed files with 53 additions and 38 deletions
|
@ -4,9 +4,6 @@ pandora.ui.embedInfo = function() {
|
||||||
|
|
||||||
var data,
|
var data,
|
||||||
item = pandora.user.ui.item,
|
item = pandora.user.ui.item,
|
||||||
poster = {
|
|
||||||
size: 256
|
|
||||||
},
|
|
||||||
textCSS = {
|
textCSS = {
|
||||||
marginTop: '8px',
|
marginTop: '8px',
|
||||||
fontWeight: 'bold',
|
fontWeight: 'bold',
|
||||||
|
@ -14,7 +11,8 @@ pandora.ui.embedInfo = function() {
|
||||||
textAlign: 'center'
|
textAlign: 'center'
|
||||||
},
|
},
|
||||||
that = Ox.Element(),
|
that = Ox.Element(),
|
||||||
$icon, $reflection, $text;
|
$icon, $reflection, $reflectionIcon, $reflectionGradient,
|
||||||
|
$text;
|
||||||
|
|
||||||
pandora.api.get({
|
pandora.api.get({
|
||||||
id: item,
|
id: item,
|
||||||
|
@ -23,26 +21,11 @@ pandora.ui.embedInfo = function() {
|
||||||
|
|
||||||
data = result.data;
|
data = result.data;
|
||||||
|
|
||||||
poster.width = Math.round(
|
|
||||||
data.posterRatio > 1
|
|
||||||
? poster.size
|
|
||||||
: poster.size * data.posterRatio
|
|
||||||
);
|
|
||||||
poster.height = Math.round(
|
|
||||||
data.posterRatio > 1
|
|
||||||
? poster.size / data.posterRatio
|
|
||||||
: poster.size
|
|
||||||
);
|
|
||||||
poster.left = Math.floor((window.innerWidth - poster.width) / 2);
|
|
||||||
|
|
||||||
$icon = Ox.$('<img>')
|
$icon = Ox.$('<img>')
|
||||||
.attr({src: '/' + item + '/poster256.jpg'})
|
.attr({src: '/' + item + '/poster512.jpg'})
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
left: poster.left + 'px',
|
|
||||||
top: '8px',
|
top: '8px',
|
||||||
width: poster.width + 'px',
|
|
||||||
height: poster.height + 'px',
|
|
||||||
cursor: 'pointer'
|
cursor: 'pointer'
|
||||||
})
|
})
|
||||||
.appendTo(that);
|
.appendTo(that);
|
||||||
|
@ -51,28 +34,20 @@ pandora.ui.embedInfo = function() {
|
||||||
.addClass('OxReflection')
|
.addClass('OxReflection')
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
left: poster.left + 'px',
|
|
||||||
top: poster.height + 8 + 'px',
|
|
||||||
width: '256px',
|
|
||||||
height: '128px',
|
|
||||||
overflow: 'hidden'
|
overflow: 'hidden'
|
||||||
})
|
})
|
||||||
.appendTo(that);
|
.appendTo(that);
|
||||||
|
|
||||||
Ox.$('<img>')
|
$reflectionIcon = Ox.$('<img>')
|
||||||
.attr({src: '/' + item + '/poster256.jpg'})
|
.attr({src: '/' + item + '/poster512.jpg'})
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute'
|
||||||
width: poster.width + 'px',
|
|
||||||
height: poster.height + 'px'
|
|
||||||
})
|
})
|
||||||
.appendTo($reflection);
|
.appendTo($reflection);
|
||||||
|
|
||||||
Ox.$('<div>')
|
$reflectionGradient = Ox.$('<div>')
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute'
|
||||||
width: '256px',
|
|
||||||
height: '128px'
|
|
||||||
})
|
})
|
||||||
.appendTo($reflection);
|
.appendTo($reflection);
|
||||||
|
|
||||||
|
@ -80,7 +55,6 @@ pandora.ui.embedInfo = function() {
|
||||||
.css({
|
.css({
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
left: '8px',
|
left: '8px',
|
||||||
top: 8 + 8 + poster.height + 'px',
|
|
||||||
right: '8px'
|
right: '8px'
|
||||||
})
|
})
|
||||||
.appendTo(that);
|
.appendTo(that);
|
||||||
|
@ -93,16 +67,57 @@ pandora.ui.embedInfo = function() {
|
||||||
if (data.director) {
|
if (data.director) {
|
||||||
Ox.$('<div>')
|
Ox.$('<div>')
|
||||||
.css(textCSS)
|
.css(textCSS)
|
||||||
.html(data.director.join(', '))
|
.html(data.director.map(function(director) {
|
||||||
|
// fixme: there should be a utils method for this
|
||||||
|
return '<a href="/name='
|
||||||
|
+ director.replace('_', '\t').replace(' ', '_')
|
||||||
|
+ '" target="_blank">' + director + '</a>'
|
||||||
|
}).join(', '))
|
||||||
.appendTo($text);
|
.appendTo($text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
that.resizePanel();
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
that.resizePanel = function() {
|
that.resizePanel = function() {
|
||||||
poster.left = Math.floor((window.innerWidth - poster.width) / 2);
|
var posterSize = Math.floor(
|
||||||
$icon.css({left: poster.left + 'px'});
|
(Math.min(window.innerWidth, window.innerHeight) - 16) * 2/3
|
||||||
$reflection.css({left: poster.left + 'px'});
|
),
|
||||||
|
posterWidth = Math.round(
|
||||||
|
data.posterRatio > 1
|
||||||
|
? posterSize
|
||||||
|
: posterSize * data.posterRatio
|
||||||
|
),
|
||||||
|
posterHeight = Math.round(
|
||||||
|
data.posterRatio > 1
|
||||||
|
? posterSize / data.posterRatio
|
||||||
|
: posterSize
|
||||||
|
),
|
||||||
|
posterLeft = Math.floor((window.innerWidth - posterWidth) / 2);
|
||||||
|
$icon.css({
|
||||||
|
left: posterLeft + 'px',
|
||||||
|
width: posterWidth + 'px',
|
||||||
|
height: posterHeight + 'px'
|
||||||
|
});
|
||||||
|
$reflection.css({
|
||||||
|
left: posterLeft + 'px',
|
||||||
|
top: posterHeight + 8 + 'px',
|
||||||
|
width: posterWidth + 'px',
|
||||||
|
height: Math.round(posterHeight / 2) + 'px'
|
||||||
|
});
|
||||||
|
$reflectionIcon.css({
|
||||||
|
width: posterWidth + 'px',
|
||||||
|
height: posterHeight + 'px'
|
||||||
|
});
|
||||||
|
$reflectionGradient.css({
|
||||||
|
width: posterSize + 'px',
|
||||||
|
height: Math.round(posterHeight / 2) + 'px'
|
||||||
|
});
|
||||||
|
$text.css({
|
||||||
|
top: 8 + 8 + posterHeight + 'px'
|
||||||
|
});
|
||||||
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
Loading…
Reference in a new issue