poster keys

This commit is contained in:
j 2015-09-21 18:31:44 +01:00
parent 8bb7ae436f
commit 1ce1ca7d89
3 changed files with 14 additions and 4 deletions

View File

@ -28,6 +28,7 @@ pandora.ui.infoView = function(data) {
listKeys = nameKeys.concat([
'country', 'language', 'color', 'sound', 'genre', 'keyword', 'links'
]),
posterKeys = ['title', 'director', 'year'],
// these may contain commas, and are thus separated by semicolons
specialListKeys = ['alternativeTitles', 'productionCompany'],
descriptions = {
@ -491,10 +492,7 @@ pandora.ui.infoView = function(data) {
}
pandora.updateItemContext();
pandora.$ui.browser.value(result.data.id, key, result.data[key]);
if (
Ox.contains(['title', 'director', 'year'], key)
&& ui.icons == 'posters'
) {
if (Ox.contains(posterKeys, key) && ui.icons == 'posters') {
src = pandora.getMediaURL('/' + data.id + '/poster512.jpg?' + Ox.uid());
$icon.attr({src: src});
$reflectionIcon.attr({src: src});

View File

@ -20,6 +20,7 @@ pandora.ui.infoView = function(data) {
margin = 16,
nameKeys = ['director'],
listKeys = nameKeys.concat(['country', 'groups']),
posterKeys = nameKeys.concat(['title', 'year']),
statisticsWidth = 128,
$bar = Ox.Bar({size: 16})
@ -361,6 +362,11 @@ pandora.ui.infoView = function(data) {
}
pandora.updateItemContext();
pandora.$ui.browser.value(result.data.id, key, result.data[key]);
if (Ox.contains(posterKeys, key) && ui.icons == 'posters') {
src = pandora.getMediaURL('/' + data.id + '/poster512.jpg?' + Ox.uid());
$icon.attr({src: src});
$reflectionIcon.attr({src: src});
}
pandora.$ui.itemTitle
.options({
title: '<b>' + result.data.title

View File

@ -20,6 +20,7 @@ pandora.ui.infoView = function(data) {
margin = 16,
nameKeys = ['director', 'cinematographer', 'featuring'],
listKeys = nameKeys.concat(['language', 'topic', 'license', 'groups']),
posterKeys = ['title', 'date'],
statisticsWidth = 128,
$bar = Ox.Bar({size: 16})
@ -529,6 +530,11 @@ pandora.ui.infoView = function(data) {
}
pandora.updateItemContext();
pandora.$ui.browser.value(result.data.id, key, result.data[key]);
if (Ox.contains(posterKeys, key) && ui.icons == 'posters') {
src = pandora.getMediaURL('/' + data.id + '/poster512.jpg?' + Ox.uid());
$icon.attr({src: src});
$reflectionIcon.attr({src: src});
}
pandora.$ui.itemTitle
.options({
title: '<b>' + result.data.title