511 lines
No EOL
18 KiB
JavaScript
511 lines
No EOL
18 KiB
JavaScript
pandora.ui.infoView = function(data) {
|
|
|
|
var css = {
|
|
marginTop: '4px',
|
|
textAlign: 'justify',
|
|
MozUserSelect: 'text',
|
|
WebkitUserSelect: 'text'
|
|
},
|
|
listWidth = 144 + Ox.UI.SCROLLBAR_SIZE,
|
|
margin = 16,
|
|
iconSize = pandora.user.ui.infoIconSize,
|
|
iconRatio = pandora.user.ui.icons == 'posters'
|
|
? data.poster.width / data.poster.height : 1,
|
|
iconWidth = iconRatio > 1 ? iconSize : Math.round(iconSize * iconRatio),
|
|
iconHeight = iconRatio < 1 ? iconSize : Math.round(iconSize / iconRatio),
|
|
iconLeft = iconSize == 256 ? Math.floor((iconSize - iconWidth) / 2) : 0,
|
|
edit = false,
|
|
that = Ox.Element(),
|
|
uid = Ox.uid(),
|
|
$list,
|
|
$info = $('<div>')
|
|
.css({
|
|
position: 'absolute',
|
|
left: pandora.user.level == 'admin' ? -listWidth + 'px' : 0,
|
|
top: 0,
|
|
right: 0,
|
|
})
|
|
.appendTo(that.$element),
|
|
$data = Ox.Container()
|
|
.css({
|
|
position: 'absolute',
|
|
left: (pandora.user.level == 'admin' ? listWidth : 0) + 'px',
|
|
top: 0,
|
|
right: 0,
|
|
height: pandora.$ui.contentPanel.size(1) + 'px'
|
|
})
|
|
.appendTo($info),
|
|
$icon = Ox.Element('<img>')
|
|
.attr({
|
|
src: '/' + data.id + '/' + (
|
|
pandora.user.ui.icons == 'posters' ? 'poster' : 'icon'
|
|
) + '512.jpg?' + uid
|
|
})
|
|
.css({
|
|
position: 'absolute',
|
|
left: margin + iconLeft + 'px',
|
|
top: margin + 'px',
|
|
width: iconWidth + 'px',
|
|
height: iconHeight + 'px',
|
|
cursor: 'pointer'
|
|
})
|
|
.bindEvent({
|
|
singleclick: toggleIconSize
|
|
})
|
|
.appendTo($data.$element),
|
|
$reflection = $('<div>')
|
|
.addClass('OxReflection')
|
|
.css({
|
|
position: 'absolute',
|
|
left: margin + 'px',
|
|
top: margin + iconHeight + 'px',
|
|
width: iconSize + 'px',
|
|
height: iconSize / 2 + 'px',
|
|
overflow: 'hidden'
|
|
})
|
|
.appendTo($data.$element),
|
|
$reflectionIcon = $('<img>')
|
|
.attr({
|
|
src: '/' + data.id + '/' + (
|
|
pandora.user.ui.icons == 'posters' ? 'poster' : 'icon'
|
|
) + '512.jpg?' + uid
|
|
})
|
|
.css({
|
|
position: 'absolute',
|
|
left: iconLeft + 'px',
|
|
width: iconWidth + 'px',
|
|
height: iconHeight + 'px'
|
|
})
|
|
.appendTo($reflection),
|
|
$reflectionGradient = $('<div>')
|
|
.css({
|
|
position: 'absolute',
|
|
width: iconSize + 'px',
|
|
height: iconSize / 2 + 'px'
|
|
})
|
|
.appendTo($reflection),
|
|
$text = $('<div>')
|
|
.css({
|
|
position: 'absolute',
|
|
left: margin + (iconSize == 256 ? 256 : iconWidth) + margin + 'px',
|
|
top: margin + 'px',
|
|
right: margin + 'px'
|
|
})
|
|
.bind({
|
|
click: function(e) {
|
|
var $target = $(e.target);
|
|
if ($target.is('a')) {
|
|
pandora.URL.set($target.attr('href'));
|
|
return false;
|
|
}
|
|
}
|
|
})
|
|
.appendTo($data.$element),
|
|
$browserImages = [];
|
|
|
|
var match = /(\(S\d{2}(E\d{2})?\))/.exec(data.title);
|
|
if (match) {
|
|
data.title = data.title.replace(match[0], formatLight(match[0]));
|
|
}
|
|
|
|
$('<div>')
|
|
.css({
|
|
marginTop: '-2px',
|
|
fontWeight: 'bold',
|
|
fontSize: '13px',
|
|
MozUserSelect: 'text',
|
|
WebkitUserSelect: 'text'
|
|
})
|
|
.html(
|
|
data.title + (
|
|
data.original_title && data.original_title != data.title
|
|
? ' ' + formatLight('(' + data.original_title + ')') : ''
|
|
)
|
|
)
|
|
.appendTo($text);
|
|
|
|
$('<div>')
|
|
.css({
|
|
marginTop: '2px',
|
|
fontWeight: 'bold',
|
|
fontSize: '13px',
|
|
MozUserSelect: 'text',
|
|
WebkitUserSelect: 'text'
|
|
})
|
|
.html(formatValue(data.director, 'name'))
|
|
.appendTo($text);
|
|
|
|
if (data.country || data.year || data.language || data.runtime || pandora.user.level == 'admin') {
|
|
var $div = $('<div>')
|
|
.css(css)
|
|
.appendTo($text);
|
|
var html = [];
|
|
['country', 'year', 'language', 'runtime'].forEach(function(key) {
|
|
if (data[key] || (['country', 'year'].indexOf(key) > -1 && pandora.user.level == 'admin')) {
|
|
var value = data[key] || formatLight('unknown');
|
|
html.push(
|
|
formatKey(key)
|
|
+ (key == 'runtime'
|
|
? Math.round(value / 60) + ' min'
|
|
: formatValue(value, key == 'runtime' || !data[key] ? null : key))
|
|
);
|
|
}
|
|
});
|
|
$div.html(html.join('; '));
|
|
}
|
|
|
|
// fixme: should be camelCase!
|
|
data.alternative_titles && $('<div>')
|
|
.css(css)
|
|
.html(
|
|
formatKey('Alternative Titles') + data.alternative_titles.map(function(value) {
|
|
return value[0] + (value[1] ? ' '
|
|
+ formatLight('(' + value[1] + ')') : '');
|
|
}).join(', ')
|
|
)
|
|
.appendTo($text);
|
|
|
|
if (data.creator || data.writer || data.producer || data.cinematographer || data.editor) {
|
|
$div = $('<div>')
|
|
.css(css)
|
|
.appendTo($text);
|
|
html = [];
|
|
['creator', 'writer', 'producer', 'cinematographer', 'editor'].forEach(function(key) {
|
|
data[key] && html.push(
|
|
formatKey(key) + formatValue(data[key], 'name')
|
|
);
|
|
});
|
|
$div.html(html.join('; '));
|
|
}
|
|
|
|
data.cast && $('<div>')
|
|
.css(css)
|
|
.html(
|
|
formatKey('cast') + data.cast.map(function(value) {
|
|
value.character = value.character.replace('(uncredited)', '').trim();
|
|
return formatValue(value.actor, 'name')
|
|
+ (value.character ? ' '
|
|
+ formatLight('(' + formatValue(value.character) + ')')
|
|
: '');
|
|
}).join(', ')
|
|
)
|
|
.appendTo($text);
|
|
|
|
if (data.genre || data.keyword) {
|
|
$div = $('<div>')
|
|
.css(css)
|
|
.appendTo($text);
|
|
html = [];
|
|
['genre', 'keyword'].forEach(function(key) {
|
|
data[key] && html.push(
|
|
formatKey(key == 'keyword' ? 'keywords' : key)
|
|
+ formatValue(data[key], key)
|
|
);
|
|
});
|
|
$div.html(html.join('; '));
|
|
}
|
|
|
|
data.summary && $('<div>')
|
|
.css(css)
|
|
.html(
|
|
formatKey('summary') + data.summary
|
|
)
|
|
.appendTo($text);
|
|
|
|
data.trivia && data.trivia.forEach(function(value) {
|
|
$('<div>')
|
|
.css({
|
|
display: 'table-row'
|
|
})
|
|
.append(
|
|
$('<div>')
|
|
.css({
|
|
display: 'table-cell',
|
|
width: '12px',
|
|
paddingTop: '4px'
|
|
})
|
|
.html('<span style="font-weight: bold">•</span>')
|
|
)
|
|
.append(
|
|
$('<div>')
|
|
.css({
|
|
display: 'table-cell',
|
|
paddingTop: '4px',
|
|
textAlign: 'justify',
|
|
MozUserSelect: 'text',
|
|
WebkitUserSelect: 'text'
|
|
})
|
|
.html(value)
|
|
)
|
|
.append(
|
|
$('<div>').css({clear: 'both'})
|
|
)
|
|
.appendTo($text);
|
|
});
|
|
|
|
data.filming_locations && $('<div>')
|
|
.css(css)
|
|
.html(
|
|
formatKey('Filming Locations') + data.filming_locations.join('; ')
|
|
)
|
|
.appendTo($text);
|
|
|
|
data.releasedate && $('<div>')
|
|
.css(css)
|
|
.html(
|
|
formatKey('Release Date') + Ox.formatDate(data.releasedate, '%A, %B %e, %Y')
|
|
)
|
|
.appendTo($text);
|
|
|
|
if (data.budget || data.gross || data.profit) {
|
|
$div = $('<div>')
|
|
.css(css)
|
|
.appendTo($text);
|
|
html = [];
|
|
['budget', 'gross', 'profit'].forEach(function(key) {
|
|
data[key] && html.push(
|
|
formatKey(key) + Ox.formatCurrency(data[key], '$')
|
|
);
|
|
});
|
|
$div.html(html.join('; '));
|
|
}
|
|
|
|
if (data.rating || data.votes) {
|
|
$div = $('<div>')
|
|
.css(css)
|
|
.appendTo($text);
|
|
html = [];
|
|
['rating', 'votes'].forEach(function(key) {
|
|
data[key] && html.push(
|
|
formatKey(key) + Ox.formatNumber(data[key])
|
|
);
|
|
});
|
|
$div.html(html.join('; '));
|
|
}
|
|
|
|
if (data.connections) {
|
|
$div = $('<div>')
|
|
.css(css)
|
|
.appendTo($text);
|
|
html = [];
|
|
[
|
|
'Edited from', 'Edited into',
|
|
'Features', 'Featured in',
|
|
'Follows', 'Followed by',
|
|
'References', 'Referenced in',
|
|
'Remake of', 'Remade as',
|
|
'Spin off from', 'Spin off',
|
|
'Spoofs', 'Spoofed in'
|
|
].forEach(function(key) {
|
|
data.connections[key] && html.push(
|
|
formatKey(key) + formatValue(data.connections[key])
|
|
);
|
|
});
|
|
$div.html(html.join('; '));
|
|
}
|
|
|
|
['reviews', 'links'].forEach(function(key) {
|
|
data[key] && $('<div>')
|
|
.css(css)
|
|
.html(
|
|
formatKey(key) + data[key].map(function(value) {
|
|
return '<a href="/?url=' + encodeURIComponent(value.url) + '">' + value.source + '</a>'
|
|
}).join(', ')
|
|
)
|
|
.appendTo($text);
|
|
});
|
|
|
|
$('<div>').css({height: '8px'}).appendTo($text);
|
|
|
|
if (pandora.user.level == 'admin') {
|
|
|
|
$icon.bindEvent({
|
|
doubleclick: function() {
|
|
if (!edit) {
|
|
$info.animate({
|
|
left: 0
|
|
}, 250);
|
|
edit = true;
|
|
} else {
|
|
$info.animate({
|
|
left: -listWidth + 'px'
|
|
}, 250);
|
|
edit = false;
|
|
}
|
|
}
|
|
});
|
|
|
|
renderList();
|
|
|
|
}
|
|
|
|
function formatKey(key) {
|
|
return '<span style="font-weight: bold">' + Ox.toTitleCase(key) + ':</span> ';
|
|
}
|
|
|
|
function formatLight(str) {
|
|
return '<span style="color: rgb(128, 128, 128)">' + str + '</span>';
|
|
}
|
|
|
|
function formatValue(value, key) {
|
|
return (Ox.isArray(value) ? value : [value]).map(function(value) {
|
|
return key ?
|
|
'<a href="/?find=' + key + ':' + value + '">' + value + '</a>'
|
|
: value;
|
|
//return key ? '<a href="/?find=' + key + ':' + value + '">' + value + '</a>' : value;
|
|
}).join(', ');
|
|
}
|
|
|
|
function renderList() {
|
|
pandora.api.get({
|
|
id: data.id,
|
|
keys: [pandora.user.ui.icons == 'posters' ? 'posters' : 'frames']
|
|
}, 0, function(result) {
|
|
Ox.print('RESULT', result.data)
|
|
var images = result.data[pandora.user.ui.icons == 'posters' ? 'posters' : 'frames'],
|
|
selectedImage = images.filter(function(image) {
|
|
return image.selected;
|
|
})[0];
|
|
$list = Ox.IconList({
|
|
defaultRatio: pandora.user.ui.icons == 'posters' ? 5/8 : data.stream.aspectRatio,
|
|
fixedRatio: pandora.user.ui.icons == 'posters' ? false : data.stream.aspectRatio,
|
|
item: function(data, sort, size) {
|
|
var ratio = data.width / data.height;
|
|
size = size || 128;
|
|
return {
|
|
height: ratio <= 1 ? size : size / ratio,
|
|
id: data['id'],
|
|
info: data.width + ' x ' + data.height + ' px',
|
|
title: pandora.user.ui.icons == 'posters' ? data.source : Ox.formatDuration(data.position),
|
|
url: data.url,
|
|
width: ratio >= 1 ? size : size * ratio
|
|
}
|
|
},
|
|
items: images,
|
|
keys: pandora.user.ui.icons == 'posters'
|
|
? ['index', 'source', 'width', 'height', 'url']
|
|
: ['index', 'position', 'width', 'height', 'url'],
|
|
max: 1,
|
|
min: 1,
|
|
orientation: 'vertical',
|
|
selected: [selectedImage['index']],
|
|
size: 128,
|
|
sort: [{key: 'index', operator: '+'}],
|
|
unique: 'index'
|
|
})
|
|
.css({
|
|
display: 'block',
|
|
position: 'absolute',
|
|
left: 0,
|
|
top: 0,
|
|
width: listWidth + 'px',
|
|
height: pandora.$ui.contentPanel.size(1) + 'px'
|
|
})
|
|
.bindEvent({
|
|
select: function(event) {
|
|
var index = event.ids[0];
|
|
selectedImage = images.filter(function(image) {
|
|
return image.index == index;
|
|
})[0];
|
|
var imageRatio = selectedImage.width / selectedImage.height,
|
|
src = selectedImage.url;
|
|
if ($browserImages.length == 0) {
|
|
$browserImages = pandora.$ui.browser.find('img[src*="/' + data.id + '/"]');
|
|
}
|
|
if (pandora.user.ui.icons == 'posters') {
|
|
$browserImages.each(function() {
|
|
var $this = $(this),
|
|
size = Math.max($this.width(), $this.height());
|
|
$this.attr({src: src});
|
|
pandora.user.ui.icons == 'posters' && $this.css(imageRatio < 1 ? {
|
|
width: Math.round(size * imageRatio) + 'px',
|
|
height: size + 'px'
|
|
} : {
|
|
width: size + 'px',
|
|
height: Math.round(size / imageRatio) + 'px'
|
|
});
|
|
});
|
|
$icon.attr({src: src});
|
|
$reflectionIcon.attr({src: src});
|
|
iconRatio = imageRatio;
|
|
iconSize = iconSize == 256 ? 512 : 256;
|
|
toggleIconSize();
|
|
}
|
|
pandora.api[pandora.user.ui.icons == 'posters' ? 'setPoster' : 'setPosterFrame'](Ox.extend({
|
|
id: data.id
|
|
}, pandora.user.ui.icons == 'posters' ? {
|
|
source: selectedImage.source
|
|
} : {
|
|
position: selectedImage.index // fixme: api slightly inconsistent
|
|
}), function() {
|
|
var src;
|
|
if (pandora.user.ui.icons == 'frames') {
|
|
src = '/' + data.id + '/icon512.jpg?' + Ox.uid()
|
|
$icon.attr({src: src});
|
|
$reflectionIcon.attr({src: src});
|
|
}
|
|
$browserImages.each(function() {
|
|
$(this).attr({src: '/' + data.id + '/' + (
|
|
pandora.user.ui.icons == 'posters' ? 'poster' : 'icon'
|
|
) + '64.jpg?' + Ox.uid()});
|
|
});
|
|
});
|
|
}
|
|
})
|
|
.appendTo($info);
|
|
});
|
|
|
|
}
|
|
|
|
function toggleIconSize() {
|
|
iconSize = iconSize == 256 ? 512 : 256;
|
|
iconWidth = iconRatio > 1 ? iconSize : Math.round(iconSize * iconRatio);
|
|
iconHeight = iconRatio < 1 ? iconSize : Math.round(iconSize / iconRatio);
|
|
iconLeft = iconSize == 256 ? Math.floor((iconSize - iconWidth) / 2) : 0,
|
|
$icon.animate({
|
|
left: margin + iconLeft + 'px',
|
|
width: iconWidth + 'px',
|
|
height: iconHeight + 'px'
|
|
}, 250);
|
|
$reflection.animate({
|
|
top: margin + iconHeight + 'px',
|
|
width: iconSize + 'px',
|
|
height: iconSize / 2 + 'px'
|
|
}, 250);
|
|
$reflectionIcon.animate({
|
|
left: iconLeft + 'px',
|
|
width: iconWidth + 'px',
|
|
height: iconHeight + 'px',
|
|
}, 250);
|
|
$reflectionGradient.animate({
|
|
width: iconSize + 'px',
|
|
height: iconSize / 2 + 'px'
|
|
}, 250);
|
|
$text.animate({
|
|
left: margin + (iconSize == 256 ? 256 : iconWidth) + margin + 'px',
|
|
}, 250);
|
|
pandora.UI.set({infoIconSize: iconSize});
|
|
}
|
|
|
|
that.reload = function() {
|
|
var src = src = '/' + data.id + '/' + (
|
|
pandora.user.ui.icons == 'posters' ? 'poster' : 'icon'
|
|
) + '512.jpg?' + Ox.uid()
|
|
$icon.attr({src: src});
|
|
$reflectionIcon.attr({src: src});
|
|
iconSize = iconSize == 256 ? 512 : 256;
|
|
iconRatio = pandora.user.ui.icons == 'posters'
|
|
? data.poster.width / data.poster.height : 1,
|
|
toggleIconSize();
|
|
pandora.user.level == 'admin' && $list.replaceWith($list = renderList());
|
|
};
|
|
|
|
that.resize = function() {
|
|
var height = pandora.$ui.contentPanel.size(1);
|
|
$list && $list.css({height: height + 'px'});
|
|
$data.css({height: height + 'px'});
|
|
};
|
|
|
|
return that;
|
|
|
|
} |