pandora/static/js/infoView.js

656 lines
23 KiB
JavaScript
Raw Normal View History

2011-11-05 17:04:10 +00:00
'use strict';
2011-08-05 18:26:27 +00:00
pandora.ui.infoView = function(data) {
2011-10-02 15:37:58 +00:00
var ui = pandora.user.ui,
2012-04-20 10:36:42 +00:00
descriptions = [],
canEdit = pandora.site.capabilities.canEditMetadata[pandora.user.level] || data.editable,
2013-07-11 12:38:19 +00:00
canRemove = pandora.site.capabilities.canRemoveItems[pandora.user.level],
2011-10-02 15:37:58 +00:00
css = {
2011-08-06 03:19:14 +00:00
marginTop: '4px',
textAlign: 'justify'
2011-08-06 03:19:14 +00:00
},
2012-04-20 10:36:42 +00:00
html,
iconRatio = ui.icons == 'posters' ? data.posterRatio : 1,
2011-10-02 15:37:58 +00:00
iconSize = ui.infoIconSize,
2011-08-07 22:15:08 +00:00
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,
borderRadius = ui.icons == 'posters' ? 0 : iconSize / 8,
2011-10-02 15:37:58 +00:00
margin = 16,
2015-10-20 17:13:38 +00:00
nameKeys = pandora.site.itemKeys.filter(function(key) {
return key.sortType == 'person';
}).map(function(key) {
return key.id;
}),
listKeys = pandora.site.itemKeys.filter(function(key) {
return Ox.isArray(key.type);
}).map(function(key){
return key.id;
}),
2015-09-21 17:31:44 +00:00
posterKeys = nameKeys.concat(['title', 'year']),
2011-10-02 15:37:58 +00:00
statisticsWidth = 128,
2013-07-11 12:38:19 +00:00
$bar = Ox.Bar({size: 16})
.bindEvent({
doubleclick: function(e) {
if ($(e.target).is('.OxBar')) {
$info.animate({scrollTop: 0}, 250);
}
}
}),
$options = Ox.MenuButton({
items: [
{
id: 'delete',
title: Ox._('Delete {0}...', [pandora.site.itemName.singular]),
disabled: !canRemove
}
],
style: 'square',
title: 'set',
tooltip: Ox._('Options'),
type: 'image',
})
2011-08-05 18:26:27 +00:00
.css({
2013-07-11 12:38:19 +00:00
float: 'left',
borderColor: 'rgba(0, 0, 0, 0)',
background: 'rgba(0, 0, 0, 0)'
})
.bindEvent({
click: function(data_) {
if (data_.id == 'delete') {
pandora.$ui.deleteItemDialog = pandora.ui.deleteItemDialog(data).open();
}
}
})
.appendTo($bar),
$edit = Ox.MenuButton({
items: [
{
id: 'insert',
title: Ox._('Insert HTML...'),
disabled: true
}
],
style: 'square',
title: 'edit',
tooltip: Ox._('Edit'),
type: 'image',
})
.css({
float: 'right',
borderColor: 'rgba(0, 0, 0, 0)',
background: 'rgba(0, 0, 0, 0)'
2011-08-05 18:26:27 +00:00
})
2013-07-11 12:38:19 +00:00
.bindEvent({
click: function(data) {
// ...
}
})
.appendTo($bar),
2011-10-02 15:37:58 +00:00
2013-07-11 12:38:19 +00:00
$info = Ox.Element().css({overflowY: 'auto'}),
that = Ox.SplitPanel({
elements: [
{element: $bar, size: 16},
{element: $info}
],
orientation: 'vertical'
}),
2011-10-02 15:37:58 +00:00
$icon = Ox.Element({
element: '<img>',
})
2011-08-05 18:26:27 +00:00
.attr({
2011-08-07 22:15:08 +00:00
src: '/' + data.id + '/' + (
2012-04-20 10:36:42 +00:00
ui.icons == 'posters' ? 'poster' : 'icon'
2013-07-11 12:38:19 +00:00
) + '512.jpg?' + data.modified
2011-08-05 18:26:27 +00:00
})
.css({
position: 'absolute',
2011-08-07 22:15:08 +00:00
left: margin + iconLeft + 'px',
2011-08-05 18:26:27 +00:00
top: margin + 'px',
2011-08-07 22:15:08 +00:00
width: iconWidth + 'px',
height: iconHeight + 'px',
borderRadius: borderRadius + 'px',
2011-08-06 01:34:07 +00:00
cursor: 'pointer'
})
.bindEvent({
2011-08-07 22:15:08 +00:00
singleclick: toggleIconSize
2011-08-05 18:26:27 +00:00
})
2013-07-11 12:38:19 +00:00
.appendTo($info),
2011-10-02 15:37:58 +00:00
2011-08-05 18:26:27 +00:00
$reflection = $('<div>')
2011-08-07 16:30:26 +00:00
.addClass('OxReflection')
2011-08-05 18:26:27 +00:00
.css({
position: 'absolute',
left: margin + 'px',
2011-08-07 22:15:08 +00:00
top: margin + iconHeight + 'px',
width: iconSize + 'px',
height: iconSize / 2 + 'px',
2011-08-05 18:26:27 +00:00
overflow: 'hidden'
})
2013-07-11 12:38:19 +00:00
.appendTo($info),
2011-10-02 15:37:58 +00:00
2011-08-07 22:15:08 +00:00
$reflectionIcon = $('<img>')
2011-08-05 18:26:27 +00:00
.attr({
2011-08-07 22:15:08 +00:00
src: '/' + data.id + '/' + (
2012-04-20 10:36:42 +00:00
ui.icons == 'posters' ? 'poster' : 'icon'
2013-07-11 12:38:19 +00:00
) + '512.jpg?' + data.modified
2011-08-05 18:26:27 +00:00
})
.css({
position: 'absolute',
2011-08-07 22:15:08 +00:00
left: iconLeft + 'px',
width: iconWidth + 'px',
height: iconHeight + 'px',
borderRadius: borderRadius + 'px'
2011-08-05 18:26:27 +00:00
})
.appendTo($reflection),
2011-10-02 15:37:58 +00:00
2011-08-05 18:26:27 +00:00
$reflectionGradient = $('<div>')
.css({
position: 'absolute',
2011-08-07 22:15:08 +00:00
width: iconSize + 'px',
height: iconSize / 2 + 'px'
2011-08-05 18:26:27 +00:00
})
.appendTo($reflection),
2011-10-02 15:37:58 +00:00
2013-07-11 12:38:19 +00:00
$text = Ox.Element()
.addClass('OxTextPage')
2011-08-05 18:26:27 +00:00
.css({
position: 'absolute',
2011-08-07 22:15:08 +00:00
left: margin + (iconSize == 256 ? 256 : iconWidth) + margin + 'px',
2011-08-05 18:26:27 +00:00
top: margin + 'px',
right: margin + statisticsWidth + margin + 'px',
2011-08-05 18:26:27 +00:00
})
2012-04-20 10:36:42 +00:00
.appendTo($info),
2011-10-02 15:37:58 +00:00
2013-07-11 12:38:19 +00:00
$statistics = $('<div>')
2011-10-02 15:37:58 +00:00
.css({
position: 'absolute',
width: statisticsWidth + 'px',
top: margin + 'px',
right: margin + 'px'
})
2012-04-20 10:36:42 +00:00
.appendTo($info),
$capabilities;
2013-07-11 12:38:19 +00:00
[$options, $edit].forEach(function($element) {
$element.find('input').css({
borderWidth: 0,
borderRadius: 0,
padding: '3px'
});
});
2012-04-20 10:36:42 +00:00
if (!canEdit) {
2015-10-20 17:13:38 +00:00
pandora.createLinks($info);
2012-04-20 10:36:42 +00:00
}
2011-10-02 15:37:58 +00:00
2011-10-24 21:30:45 +00:00
// Title -------------------------------------------------------------------
2011-08-06 03:19:14 +00:00
$('<div>')
.css({
2012-04-20 10:36:42 +00:00
marginTop: '-2px',
2011-08-06 03:19:14 +00:00
})
.append(
2013-07-11 12:38:19 +00:00
Ox.EditableContent({
2012-04-20 10:36:42 +00:00
editable: canEdit,
tooltip: canEdit ? pandora.getEditTooltip() : '',
2013-04-18 15:59:30 +00:00
value: data.title || ''
})
.css({
2011-11-03 17:11:10 +00:00
marginBottom: '-3px',
fontWeight: 'bold',
fontSize: '13px'
})
.bindEvent({
2011-10-24 21:30:45 +00:00
submit: function(event) {
editMetadata('title', event.value);
}
})
2011-08-06 03:19:14 +00:00
)
2013-07-11 12:38:19 +00:00
.appendTo($text);
2011-08-06 01:04:09 +00:00
2013-07-11 12:38:19 +00:00
// Director, Year and Country ----------------------------------------------
2011-08-06 01:04:09 +00:00
2013-07-11 12:38:19 +00:00
renderGroup(['director', 'year', 'country']);
2011-08-06 01:04:09 +00:00
2013-07-11 12:38:19 +00:00
// Summary -----------------------------------------------------------------
2011-08-05 18:26:27 +00:00
2013-07-11 12:38:19 +00:00
if (canEdit || data.summary) {
2011-08-05 18:26:27 +00:00
$('<div>')
.append(
2013-07-11 12:38:19 +00:00
Ox.EditableContent({
2012-04-20 10:36:42 +00:00
clickLink: pandora.clickLink,
editable: canEdit,
2013-07-11 12:38:19 +00:00
format: function(value) {
return value.replace(
/<img src=/g,
'<img style="float: left; max-width: 256px; max-height: 256px; margin: 0 16px 16px 0" src='
);
},
2012-04-20 10:36:42 +00:00
maxHeight: Infinity,
2013-07-11 12:38:19 +00:00
placeholder: formatLight(Ox._('No Summary')),
tooltip: canEdit ? pandora.getEditTooltip() : '',
2012-04-20 10:36:42 +00:00
type: 'textarea',
2013-07-11 12:38:19 +00:00
value: data.summary || ''
})
.css(css)
.css({
marginTop: '12px',
overflow: 'hidden'
2012-04-20 10:36:42 +00:00
})
.bindEvent({
submit: function(event) {
editMetadata('summary', event.value);
}
})
2011-08-05 18:26:27 +00:00
)
2013-07-11 12:38:19 +00:00
.appendTo($text);
2011-08-05 18:26:27 +00:00
}
// Duration, Aspect Ratio --------------------------------------------------
['duration', 'aspectratio'].forEach(function(key) {
var itemKey = Ox.getObjectById(pandora.site.itemKeys, key),
value = data[key] || 0;
$('<div>')
.css({marginBottom: '4px'})
2013-07-11 12:38:19 +00:00
.append(formatKey(itemKey.title, 'statistics'))
.append(
Ox.Theme.formatColor(null, 'gradient')
.css({textAlign: 'right'})
.html(
Ox['format' + Ox.toTitleCase(itemKey.format.type)]
.apply(null, [value].concat(itemKey.format.args))
)
)
2013-07-11 12:38:19 +00:00
.appendTo($statistics);
});
2011-10-25 13:59:27 +00:00
// Hue, Saturation, Lightness, Volume --------------------------------------
2011-10-24 10:04:41 +00:00
2011-10-23 09:13:57 +00:00
['hue', 'saturation', 'lightness', 'volume'].forEach(function(key) {
2011-10-02 15:37:58 +00:00
$('<div>')
2011-10-23 09:13:57 +00:00
.css({marginBottom: '4px'})
2013-07-11 12:38:19 +00:00
.append(formatKey(key, 'statistics'))
.append(
Ox.Theme.formatColor(
data[key] || 0, key == 'volume' ? 'lightness' : key
).css({textAlign: 'right'})
)
2013-07-11 12:38:19 +00:00
.appendTo($statistics);
2012-04-20 10:36:42 +00:00
});
// Cuts per Minute ---------------------------------------------------------
$('<div>')
.css({marginBottom: '4px'})
2013-07-11 12:38:19 +00:00
.append(formatKey('cuts per minute', 'statistics'))
.append(
Ox.Theme.formatColor(null, 'gradient')
.css({textAlign: 'right'})
.html(Ox.formatNumber(data['cutsperminute'] || 0, 3))
)
2013-07-11 12:38:19 +00:00
.appendTo($statistics);
2011-10-22 21:03:28 +00:00
2011-10-25 13:59:27 +00:00
// Rights Level ------------------------------------------------------------
2013-07-11 12:38:19 +00:00
var $rightsLevel = $('<div>');
$('<div>')
.css({marginBottom: '4px'})
.append(formatKey('Rights Level', 'statistics'))
.append($rightsLevel)
.appendTo($statistics);
renderRightsLevel();
2011-08-06 01:34:07 +00:00
2012-04-20 10:36:42 +00:00
// Notes --------------------------------------------------------------------
2011-10-25 13:59:27 +00:00
if (canEdit) {
$('<div>')
.css({marginBottom: '4px'})
.append(
2013-07-11 12:38:19 +00:00
formatKey('Notes', 'statistics').options({
tooltip: Ox._('Only {0} can see and edit these comments', [
Object.keys(pandora.site.capabilities.canEditMetadata).map(function(level, i) {
return (
i == 0 ? ''
: i < Ox.len(pandora.site.capabilities.canEditMetadata) - 1 ? ', '
: ' ' + Ox._('and') + ' '
) + Ox.toTitleCase(level)
}).join('')])
})
)
.append(
Ox.EditableContent({
2011-10-25 13:59:27 +00:00
height: 128,
2013-07-11 12:38:19 +00:00
placeholder: formatLight(Ox._('No notes')),
tooltip: pandora.getEditTooltip(),
2011-10-25 13:59:27 +00:00
type: 'textarea',
2013-04-18 15:59:30 +00:00
value: data.notes || '',
2011-10-25 13:59:27 +00:00
width: 128
})
.bindEvent({
submit: function(event) {
2012-04-20 10:36:42 +00:00
editMetadata('notes', event.value);
2011-10-25 13:59:27 +00:00
}
})
)
2013-07-11 12:38:19 +00:00
.appendTo($statistics);
2011-10-25 13:59:27 +00:00
}
2013-07-11 12:38:19 +00:00
$('<div>').css({height: '16px'}).appendTo($statistics);
2011-08-05 18:26:27 +00:00
2011-10-24 21:30:45 +00:00
function editMetadata(key, value) {
if (value != data[key]) {
var edit = {id: data.id};
if (key == 'title') {
2012-04-20 10:36:42 +00:00
edit[key] = value;
} else if (listKeys.indexOf(key) >= 0) {
edit[key] = value ? value.split(', ') : [];
} else {
2012-04-20 10:36:42 +00:00
edit[key] = value ? value : null;
2011-10-24 21:30:45 +00:00
}
pandora.api.edit(edit, function(result) {
2013-07-11 12:38:19 +00:00
var src;
data[key] = result.data[key];
2012-04-20 10:36:42 +00:00
descriptions[key] && descriptions[key].options({
value: result.data[key + 'description']
});
Ox.Request.clearCache(); // fixme: too much? can change filter/list etc
if (result.data.id != data.id) {
pandora.UI.set({item: result.data.id});
pandora.$ui.browser.value(data.id, 'id', result.data.id);
}
2013-02-11 12:14:15 +00:00
pandora.updateItemContext();
2013-07-11 12:38:19 +00:00
pandora.$ui.browser.value(result.data.id, key, result.data[key]);
2015-09-21 17:31:44 +00:00
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});
}
2012-04-20 10:36:42 +00:00
pandora.$ui.itemTitle
.options({
title: '<b>' + result.data.title
+ (Ox.len(result.data.director)
? ' (' + result.data.director.join(', ') + ')'
: '')
+ (result.data.year ? ' ' + result.data.year : '') + '</b>'
});
});
}
2011-10-24 21:30:45 +00:00
}
2013-07-11 12:38:19 +00:00
function formatKey(key, mode) {
var item = Ox.getObjectById(pandora.site.itemKeys, key);
key = Ox._(item ? item.title : key);
mode = mode || 'text';
return mode == 'text'
? '<span style="font-weight: bold">' + Ox.toTitleCase(key) + ':</span> '
: mode == 'description'
? Ox.toTitleCase(key)
: Ox.Element()
.css({marginBottom: '4px', fontWeight: 'bold'})
.html(Ox.toTitleCase(key)
.replace(' Per ', ' per '));
2011-08-05 18:26:27 +00:00
}
2011-08-06 03:19:14 +00:00
function formatLight(str) {
2013-07-11 12:38:19 +00:00
return '<span class="OxLight">' + str + '</span>';
2011-08-06 03:19:14 +00:00
}
2013-07-11 12:38:19 +00:00
function formatLink(value, key) {
2011-08-05 18:26:27 +00:00
return (Ox.isArray(value) ? value : [value]).map(function(value) {
2013-07-11 12:38:19 +00:00
return key
? '<a href="/' + key + '=' + value + '">' + value + '</a>'
2011-08-07 16:30:26 +00:00
: value;
2011-08-05 18:26:27 +00:00
}).join(', ');
}
2013-07-11 12:38:19 +00:00
function formatValue(key, value) {
var ret;
if (key == 'year') {
ret = formatLink(value, 'year');
} else if (nameKeys.indexOf(key) > -1) {
ret = formatLink(value.split(', '), 'name');
} else if (listKeys.indexOf(key) > -1) {
ret = formatLink(value.split(', '), key);
} else {
ret = value;
}
return ret;
}
2011-10-26 14:52:23 +00:00
function getRightsLevelElement(rightsLevel) {
return Ox.Theme.formatColorLevel(
rightsLevel,
pandora.site.rightsLevels.map(function(rightsLevel) {
return rightsLevel.name;
})
);
2011-10-24 10:04:41 +00:00
}
2013-07-11 12:38:19 +00:00
function getValue(key, value) {
return !value ? ''
: Ox.contains(listKeys, key) ? value.join(', ')
: value;
}
2011-10-24 10:04:41 +00:00
function renderCapabilities(rightsLevel) {
2012-05-24 08:22:56 +00:00
var capabilities = [].concat(
canEdit ? [{name: 'canSeeItem', symbol: 'Find'}] : [],
2011-10-24 10:04:41 +00:00
[
{name: 'canPlayClips', symbol: 'PlayInToOut'},
{name: 'canPlayVideo', symbol: 'Play'},
{name: 'canDownloadVideo', symbol: 'Download'}
]
),
userLevels = canEdit ? pandora.site.userLevels : [pandora.user.level];
$capabilities.empty();
2011-10-26 14:52:23 +00:00
userLevels.forEach(function(userLevel, i) {
var $element,
$line = $('<div>')
.css({
height: '16px',
marginBottom: '4px'
})
.appendTo($capabilities);
2011-10-25 13:59:27 +00:00
if (canEdit) {
2011-10-26 14:52:23 +00:00
$element = Ox.Theme.formatColorLevel(i, userLevels.map(function(userLevel) {
return Ox.toTitleCase(userLevel);
}), [0, 240]);
2011-10-25 13:59:27 +00:00
Ox.Label({
textAlign: 'center',
title: Ox.toTitleCase(userLevel),
2011-10-26 14:52:23 +00:00
width: 60
2011-10-25 13:59:27 +00:00
})
2011-10-26 14:52:23 +00:00
.addClass('OxColor OxColorGradient')
.css({
float: 'left',
height: '12px',
paddingTop: '2px',
background: $element.css('background'),
fontSize: '8px',
color: $element.css('color')
})
.data({OxColor: $element.data('OxColor')})
2011-10-25 13:59:27 +00:00
.appendTo($line);
}
2011-10-24 10:04:41 +00:00
capabilities.forEach(function(capability) {
2011-10-26 14:52:23 +00:00
var hasCapability = pandora.site.capabilities[capability.name][userLevel] >= rightsLevel,
$element = Ox.Theme.formatColorLevel(hasCapability, ['', '']);
2011-10-24 10:04:41 +00:00
Ox.Button({
tooltip: (canEdit ? Ox.toTitleCase(userLevel) : 'You') + ' '
+ (hasCapability ? 'can' : 'can\'t') + ' '
2012-05-22 15:07:34 +00:00
+ Ox.toSlashes(capability.name)
.split('/').slice(1).join(' ')
.toLowerCase(),
2011-10-24 10:04:41 +00:00
title: capability.symbol,
type: 'image'
})
2011-10-26 14:52:23 +00:00
.addClass('OxColor OxColorGradient')
.css({background: $element.css('background')})
2011-10-25 13:59:27 +00:00
.css('margin' + (canEdit ? 'Left' : 'Right'), '4px')
2011-10-26 14:52:23 +00:00
.data({OxColor: $element.data('OxColor')})
2011-10-24 10:04:41 +00:00
.appendTo($line);
});
2011-10-25 13:59:27 +00:00
if (!canEdit) {
Ox.Button({
2013-05-09 10:13:58 +00:00
title: Ox._('Help'),
tooltip: Ox._('About Rights'),
2011-10-25 13:59:27 +00:00
type: 'image'
})
.css({marginLeft: '52px'})
.bindEvent({
click: function() {
2011-11-11 16:53:05 +00:00
pandora.UI.set({page: 'rights'});
2011-10-25 13:59:27 +00:00
}
})
.appendTo($line);
}
2011-10-24 10:04:41 +00:00
});
}
2013-07-11 12:38:19 +00:00
function renderGroup(keys) {
var $element;
if (canEdit || keys.filter(function(key) {
return data[key];
}).length) {
$element = $('<div>').addClass('OxSelectable').css(css);
2013-07-11 12:38:19 +00:00
keys.forEach(function(key, i) {
if (canEdit || data[key]) {
if ($element.children().length) {
$('<span>').html('; ').appendTo($element);
}
$('<span>').html(formatKey(key)).appendTo($element);
Ox.EditableContent({
clickLink: pandora.clickLink,
format: function(value) {
return formatValue(key, value);
},
2014-04-01 13:54:13 +00:00
placeholder: formatLight(Ox._('unknown')),
2013-07-11 12:38:19 +00:00
tooltip: canEdit ? pandora.getEditTooltip() : '',
value: getValue(key, data[key])
})
.bindEvent({
submit: function(data) {
editMetadata(key, data.value);
}
})
.appendTo($element);
}
});
$element.appendTo($text);
}
}
2011-10-24 10:04:41 +00:00
function renderRightsLevel() {
2011-11-05 17:26:03 +00:00
var $rightsLevelElement = getRightsLevelElement(data.rightslevel),
2011-10-26 14:52:23 +00:00
$rightsLevelSelect;
2011-10-24 10:04:41 +00:00
$rightsLevel.empty();
if (canEdit) {
$rightsLevelSelect = Ox.Select({
items: pandora.site.rightsLevels.map(function(rightsLevel, i) {
2011-12-22 17:37:13 +00:00
return {id: i, title: rightsLevel.name};
2011-10-24 10:04:41 +00:00
}),
2011-12-22 17:37:13 +00:00
width: 128,
value: data.rightslevel
2011-10-24 10:04:41 +00:00
})
2011-10-26 14:52:23 +00:00
.addClass('OxColor OxColorGradient')
.css({
marginBottom: '4px',
background: $rightsLevelElement.css('background')
})
.data({OxColor: $rightsLevelElement.data('OxColor')})
2011-10-24 10:04:41 +00:00
.bindEvent({
change: function(event) {
2011-12-27 06:54:49 +00:00
var rightsLevel = event.value;
2011-10-26 14:52:23 +00:00
$rightsLevelElement = getRightsLevelElement(rightsLevel);
$rightsLevelSelect
.css({background: $rightsLevelElement.css('background')})
.data({OxColor: $rightsLevelElement.data('OxColor')})
2011-10-24 10:04:41 +00:00
renderCapabilities(rightsLevel);
2011-10-25 13:59:27 +00:00
pandora.api.edit({id: data.id, rightslevel: rightsLevel}, function(result) {
2011-10-24 10:04:41 +00:00
// ...
});
}
})
.appendTo($rightsLevel);
2011-10-25 13:59:27 +00:00
} else {
2011-11-05 17:21:49 +00:00
$rightsLevelElement
2011-10-26 14:52:23 +00:00
.css({
2011-10-25 13:59:27 +00:00
marginBottom: '4px'
2011-10-26 14:52:23 +00:00
})
2011-10-25 13:59:27 +00:00
.appendTo($rightsLevel);
2011-10-24 10:04:41 +00:00
}
$capabilities = $('<div>').appendTo($rightsLevel);
2011-10-25 13:59:27 +00:00
renderCapabilities(data.rightslevel);
2011-10-24 10:04:41 +00:00
}
2011-08-07 22:15:08 +00:00
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,
2011-10-02 15:37:58 +00:00
borderRadius = ui.icons == 'posters' ? 0 : iconSize / 8;
2011-08-07 22:15:08 +00:00
$icon.animate({
left: margin + iconLeft + 'px',
width: iconWidth + 'px',
height: iconHeight + 'px',
2011-10-29 17:46:46 +00:00
borderRadius: borderRadius + 'px'
2011-08-06 01:34:07 +00:00
}, 250);
$reflection.animate({
2011-08-07 22:15:08 +00:00
top: margin + iconHeight + 'px',
width: iconSize + 'px',
height: iconSize / 2 + 'px'
2011-08-06 01:34:07 +00:00
}, 250);
2011-08-07 22:15:08 +00:00
$reflectionIcon.animate({
left: iconLeft + 'px',
width: iconWidth + 'px',
height: iconHeight + 'px',
borderRadius: borderRadius + 'px'
2011-08-06 01:34:07 +00:00
}, 250);
$reflectionGradient.animate({
2011-08-07 22:15:08 +00:00
width: iconSize + 'px',
height: iconSize / 2 + 'px'
2011-08-06 01:34:07 +00:00
}, 250);
2013-07-11 12:38:19 +00:00
$text.animate({
2011-08-07 22:15:08 +00:00
left: margin + (iconSize == 256 ? 256 : iconWidth) + margin + 'px',
2011-08-06 01:34:07 +00:00
}, 250);
2011-08-07 22:15:08 +00:00
pandora.UI.set({infoIconSize: iconSize});
2011-08-06 01:34:07 +00:00
}
2011-08-07 22:15:08 +00:00
that.reload = function() {
var src = src = '/' + data.id + '/' + (
2012-04-20 10:36:42 +00:00
ui.icons == 'posters' ? 'poster' : 'icon'
) + '512.jpg?' + Ox.uid();
2011-08-07 22:15:08 +00:00
$icon.attr({src: src});
$reflectionIcon.attr({src: src});
iconSize = iconSize == 256 ? 512 : 256;
2011-10-02 15:37:58 +00:00
iconRatio = ui.icons == 'posters'
? (ui.showSitePosters ? pandora.site.posters.ratio : data.posterRatio) : 1;
2011-08-07 22:15:08 +00:00
toggleIconSize();
};
that.bindEvent({
mousedown: function() {
setTimeout(function() {
!Ox.Focus.focusedElementIsInput() && that.gainFocus();
});
},
pandora_icons: that.reload,
pandora_showsiteposters: function() {
2011-10-02 15:37:58 +00:00
ui.icons == 'posters' && that.reload();
2011-09-27 14:14:40 +00:00
}
});
2011-08-05 18:26:27 +00:00
return that;
2013-07-11 12:38:19 +00:00
};