forked from 0x2620/pandora
updating info view
This commit is contained in:
parent
b312e32afa
commit
8f5446e46b
5 changed files with 446 additions and 3 deletions
|
@ -439,6 +439,8 @@ class Item(models.Model):
|
||||||
|
|
||||||
if 'reviews' in i:
|
if 'reviews' in i:
|
||||||
i['reviews'] = self.reviews()
|
i['reviews'] = self.reviews()
|
||||||
|
if 'cast' in i and isinstance(i['cast'][0], list):
|
||||||
|
i['cast'] = map(lambda x: {'actor': x[0], 'character': x[1]}, i['cast'])
|
||||||
|
|
||||||
if not keys or 'poster' in keys:
|
if not keys or 'poster' in keys:
|
||||||
i['poster'] = self.get_poster()
|
i['poster'] = self.get_poster()
|
||||||
|
|
|
@ -153,6 +153,7 @@ Ox.load('Geo', function() {
|
||||||
} else {
|
} else {
|
||||||
//Ox.print('pandora.$ui.window.resize');
|
//Ox.print('pandora.$ui.window.resize');
|
||||||
pandora.$ui.browser.scrollToSelection();
|
pandora.$ui.browser.scrollToSelection();
|
||||||
|
pandora.user.ui.itemView == 'info' && pandora.$ui.item.resize();
|
||||||
pandora.user.ui.itemView == 'player' && pandora.$ui.player.options({
|
pandora.user.ui.itemView == 'player' && pandora.$ui.player.options({
|
||||||
// fixme: duplicated
|
// fixme: duplicated
|
||||||
height: pandora.$ui.contentPanel.size(1),
|
height: pandora.$ui.contentPanel.size(1),
|
||||||
|
@ -163,8 +164,8 @@ Ox.load('Geo', function() {
|
||||||
height: pandora.$ui.contentPanel.size(1),
|
height: pandora.$ui.contentPanel.size(1),
|
||||||
width: pandora.$ui.document.width() - pandora.$ui.mainPanel.size(0) - 1
|
width: pandora.$ui.document.width() - pandora.$ui.mainPanel.size(0) - 1
|
||||||
});
|
});
|
||||||
pandora.user.ui.itemView == 'frames' && pandora.$ui.item.resize();
|
//pandora.user.ui.itemView == 'frames' && pandora.$ui.item.resize();
|
||||||
pandora.user.ui.itemView == 'posters' && pandora.$ui.item.resize();
|
//pandora.user.ui.itemView == 'posters' && pandora.$ui.item.resize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
429
static/js/pandora/ui/infoView.js
Normal file
429
static/js/pandora/ui/infoView.js
Normal file
|
@ -0,0 +1,429 @@
|
||||||
|
pandora.ui.infoView = function(data) {
|
||||||
|
|
||||||
|
var listWidth = 144 + Ox.UI.SCROLLBAR_SIZE,
|
||||||
|
margin = 8,
|
||||||
|
posterRatio = data.poster.width / data.poster.height,
|
||||||
|
posterWidth = posterRatio > 1 ? 256 : Math.round(256 * posterRatio),
|
||||||
|
posterHeight = posterRatio < 1 ? 256 : Math.round(256 / posterRatio),
|
||||||
|
posterLeft = Math.floor((256 - posterWidth) / 2),
|
||||||
|
editPoster = false,
|
||||||
|
that = Ox.Element(),
|
||||||
|
$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),
|
||||||
|
$poster = $('<img>')
|
||||||
|
.attr({
|
||||||
|
src: '/' + data.id + '/poster.jpg'
|
||||||
|
})
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: margin + posterLeft + 'px',
|
||||||
|
top: margin + 'px',
|
||||||
|
width: posterWidth + 'px',
|
||||||
|
height: posterHeight + 'px',
|
||||||
|
cursor: pandora.user.level == 'admin' ? 'pointer' : 'default'
|
||||||
|
})
|
||||||
|
.appendTo($data.$element),
|
||||||
|
$reflection = $('<div>')
|
||||||
|
.css({
|
||||||
|
display: 'block',
|
||||||
|
position: 'absolute',
|
||||||
|
left: margin + 'px',
|
||||||
|
top: margin + posterHeight + 'px',
|
||||||
|
width: '256px',
|
||||||
|
height: '128px',
|
||||||
|
overflow: 'hidden'
|
||||||
|
})
|
||||||
|
.appendTo($data.$element),
|
||||||
|
$reflectionPoster = $('<img>')
|
||||||
|
.attr({
|
||||||
|
src: '/' + data.id + '/poster.jpg'
|
||||||
|
})
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: posterLeft + 'px',
|
||||||
|
width: posterWidth + 'px',
|
||||||
|
height: posterHeight + 'px',
|
||||||
|
MozTransform: 'scaleY(-1)',
|
||||||
|
WebkitTransform: 'scaleY(-1)'
|
||||||
|
})
|
||||||
|
.appendTo($reflection),
|
||||||
|
$reflectionGradient = $('<div>')
|
||||||
|
.css({
|
||||||
|
display: 'block',
|
||||||
|
position: 'absolute',
|
||||||
|
left: margin + 'px',
|
||||||
|
width: '256px',
|
||||||
|
height: '128px'
|
||||||
|
})
|
||||||
|
.css('background', '-moz-linear-gradient(top, rgba(16, 16, 16, 0.75), rgba(16, 16, 16, 1))')
|
||||||
|
.css('background', '-webkit-linear-gradient(top, rgba(16, 16, 16, 0.75), rgba(16, 16, 16, 1))')
|
||||||
|
.appendTo($reflection),
|
||||||
|
$text = $('<div>')
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: margin + 256 + margin + 'px',
|
||||||
|
top: margin + 'px',
|
||||||
|
right: margin + 'px'
|
||||||
|
})
|
||||||
|
.appendTo($data.$element);
|
||||||
|
Ox.print('DATA', data);
|
||||||
|
['title', 'director'].forEach(function(key) {
|
||||||
|
$('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: key == 'title' ? '-2px' : '2px',
|
||||||
|
fontWeight: 'bold',
|
||||||
|
fontSize: '13px',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.html(formatValue(data[key], key == 'director' ? 'director' : null))
|
||||||
|
.appendTo($text);
|
||||||
|
});
|
||||||
|
var $div = $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify'
|
||||||
|
})
|
||||||
|
.appendTo($text);
|
||||||
|
['country', 'year', 'language', 'runtime'].forEach(function(key) {
|
||||||
|
data[key] && $('<span>')
|
||||||
|
.html(
|
||||||
|
formatKey(key)
|
||||||
|
+ (key == 'runtime' ? Math.round(data[key] / 60) + ' min' : formatValue(data[key], key == 'runtime' ? null : key))
|
||||||
|
+ ' '
|
||||||
|
)
|
||||||
|
.appendTo($div);
|
||||||
|
});
|
||||||
|
// fixme: should be camelCase!
|
||||||
|
data.alternative_titles && $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.html(
|
||||||
|
formatKey('Alternative Titles') + data.alternative_titles.map(function(value) {
|
||||||
|
return value[0] + (
|
||||||
|
value[1]
|
||||||
|
? ' <span style="color: rgb(128, 128, 128)">(' + value[1] + ')</span>'
|
||||||
|
: ''
|
||||||
|
);
|
||||||
|
}).join(', ')
|
||||||
|
)
|
||||||
|
.appendTo($text);
|
||||||
|
$div = $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.appendTo($text);
|
||||||
|
|
||||||
|
['writer', 'producer', 'cinematographer', 'editor'].forEach(function(key) {
|
||||||
|
data[key] && $('<span>')
|
||||||
|
.html(
|
||||||
|
formatKey(key) + formatValue(data[key], 'name') + ' '
|
||||||
|
)
|
||||||
|
.appendTo($div);
|
||||||
|
});
|
||||||
|
|
||||||
|
['cast', 'genre', 'keyword'].forEach(function(key) {
|
||||||
|
data[key] && $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify'
|
||||||
|
})
|
||||||
|
.html(
|
||||||
|
formatKey(key == 'keyword' ? 'keywords' : key)
|
||||||
|
+ (key == 'cast' ? data[key].map(function(value) {
|
||||||
|
value.character = value.character.replace('(uncredited)', '').trim();
|
||||||
|
return formatValue(value.actor, 'name') + (
|
||||||
|
value.character
|
||||||
|
? ' <span style="color: rgb(128, 128, 128)">(' + formatValue(value.character, 'name') + ')</span>'
|
||||||
|
: ''
|
||||||
|
);
|
||||||
|
}).join(', ') : formatValue(data[key], key == 'cast' ? 'name' : key))
|
||||||
|
)
|
||||||
|
.appendTo($text);
|
||||||
|
});
|
||||||
|
|
||||||
|
data.summary && $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.html(
|
||||||
|
formatKey('summary') + data.summary
|
||||||
|
)
|
||||||
|
.appendTo($text);
|
||||||
|
|
||||||
|
data.trivia && data.trivia.forEach(function(value) {
|
||||||
|
$('<div>')
|
||||||
|
.css({
|
||||||
|
display: 'table-row'
|
||||||
|
})
|
||||||
|
.append(
|
||||||
|
$('<div>')
|
||||||
|
.css({
|
||||||
|
//display: 'inline',
|
||||||
|
display: 'table-cell',
|
||||||
|
//float: 'left',
|
||||||
|
width: '12px',
|
||||||
|
marginTop: '4px',
|
||||||
|
paddingBottom: '4px'
|
||||||
|
})
|
||||||
|
.html('<span style="font-weight: bold">•</span>')
|
||||||
|
)
|
||||||
|
.append(
|
||||||
|
$('<div>')
|
||||||
|
.css({
|
||||||
|
//clear: 'both',
|
||||||
|
display: 'table-cell',
|
||||||
|
//float: 'left',
|
||||||
|
//width: '100px',
|
||||||
|
paddingTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.html(value)
|
||||||
|
)
|
||||||
|
.append(
|
||||||
|
$('<div>').css({clear: 'both'})
|
||||||
|
)
|
||||||
|
.appendTo($text);
|
||||||
|
});
|
||||||
|
|
||||||
|
data.filming_locations && $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.html(
|
||||||
|
formatKey('Filming Locations') + data.filming_locations.join('; ')
|
||||||
|
)
|
||||||
|
.appendTo($text);
|
||||||
|
|
||||||
|
data.releasedate && $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.html(
|
||||||
|
formatKey('Release Date') + Ox.formatDate(data.releasedate, '%A, %B %e, %Y')
|
||||||
|
)
|
||||||
|
.appendTo($text);
|
||||||
|
|
||||||
|
if (data.budget || data.gross || data.profit) {
|
||||||
|
$div = $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.appendTo($text);
|
||||||
|
['budget', 'gross', 'profit'].forEach(function(key) {
|
||||||
|
data[key] && $('<span>')
|
||||||
|
.html(
|
||||||
|
formatKey(key) + data[key] + ' '
|
||||||
|
)
|
||||||
|
.appendTo($div);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.rating || data.votes) {
|
||||||
|
$div = $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.appendTo($text);
|
||||||
|
['rating', 'votes'].forEach(function(key) {
|
||||||
|
data[key] && $('<span>')
|
||||||
|
.html(
|
||||||
|
formatKey(key) + Ox.formatNumber(data[key]) + ' '
|
||||||
|
)
|
||||||
|
.appendTo($div);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.connections) {
|
||||||
|
$div = $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.appendTo($text);
|
||||||
|
Ox.forEach(data.connections, function(movies, key) {
|
||||||
|
$('<span>')
|
||||||
|
.html(
|
||||||
|
formatKey(key) + formatValue(movies) + ' '
|
||||||
|
)
|
||||||
|
.appendTo($div);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
data.reviews && $('<div>')
|
||||||
|
.css({
|
||||||
|
marginTop: '4px',
|
||||||
|
textAlign: 'justify',
|
||||||
|
MozUserSelect: 'text',
|
||||||
|
WebkitUserSelect: 'text'
|
||||||
|
})
|
||||||
|
.html(
|
||||||
|
formatKey('reviews') + data.reviews.map(function(review) {
|
||||||
|
return '<a href="' + review.url + '">' + review.source + '</a>'
|
||||||
|
}).join(', ')
|
||||||
|
)
|
||||||
|
.appendTo($text);
|
||||||
|
|
||||||
|
$('<div>').css({height: '8px'}).appendTo($text);
|
||||||
|
|
||||||
|
if (pandora.user.level == 'admin') {
|
||||||
|
var icon = 'posters',
|
||||||
|
selectedImage = {};
|
||||||
|
$poster.bind({
|
||||||
|
click: function() {
|
||||||
|
if (!editPoster) {
|
||||||
|
$info.animate({
|
||||||
|
left: 0
|
||||||
|
}, 250);
|
||||||
|
editPoster = true;
|
||||||
|
} else {
|
||||||
|
$info.animate({
|
||||||
|
left: -listWidth + 'px'
|
||||||
|
}, 250);
|
||||||
|
editPoster = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
pandora.api.get({
|
||||||
|
id: data.id,
|
||||||
|
keys: [icon]
|
||||||
|
}, function(result) {
|
||||||
|
Ox.print('RESULT', result.data)
|
||||||
|
var images = result.data[icon];
|
||||||
|
selectedImage = images.filter(function(image) {
|
||||||
|
return image.selected;
|
||||||
|
})[0];
|
||||||
|
$list = Ox.IconList({
|
||||||
|
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: icon == 'posters' ? data.source : Ox.formatDuration(data.position),
|
||||||
|
url: data.url,
|
||||||
|
width: ratio >= 1 ? size : size * ratio
|
||||||
|
}
|
||||||
|
},
|
||||||
|
items: images,
|
||||||
|
keys: icon == '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];
|
||||||
|
//renderPreview(selectedImage);
|
||||||
|
pandora.api[icon == 'posters' ? 'setPoster' : 'setPosterFrame'](Ox.extend({
|
||||||
|
id: data.id
|
||||||
|
}, icon == 'posters' ? {
|
||||||
|
source: selectedImage.source
|
||||||
|
} : {
|
||||||
|
position: selectedImage.index // fixme: api slightly inconsistent
|
||||||
|
}), function(result) {
|
||||||
|
var imageRatio = selectedImage.width / selectedImage.height;
|
||||||
|
$('img[src*="/' + item + '/poster"]').each(function() {
|
||||||
|
var $this = $(this),
|
||||||
|
size = Math.max($this.width(), $this.height()),
|
||||||
|
src = $this.attr('src').split('?')[0] + '?' + Ox.uid();
|
||||||
|
$('<img>')
|
||||||
|
.attr({src: src})
|
||||||
|
.load(function() {
|
||||||
|
$this.attr({src: src});
|
||||||
|
icon == 'posters' && $this.css(imageRatio < 1 ? {
|
||||||
|
width: Math.round(size * imageRatio) + 'px',
|
||||||
|
height: size + 'px'
|
||||||
|
} : {
|
||||||
|
width: size + 'px',
|
||||||
|
height: Math.round(size / imageRatio) + 'px'
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.appendTo($info);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatKey(key) {
|
||||||
|
return '<span style="font-weight: bold">' + Ox.toTitleCase(key) + ':</span> ';
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatValue(value, key) {
|
||||||
|
return (Ox.isArray(value) ? value : [value]).map(function(value) {
|
||||||
|
return key ? '<a href="/?find=' + key + ':' + value + '">' + value + '</a>' : value;
|
||||||
|
}).join(', ');
|
||||||
|
}
|
||||||
|
|
||||||
|
that.resize = function() {
|
||||||
|
var height = pandora.$ui.contentPanel.size(1);
|
||||||
|
$list && $list.css({height: height + 'px'});
|
||||||
|
$data.css({height: height + 'px'});
|
||||||
|
};
|
||||||
|
|
||||||
|
return that;
|
||||||
|
|
||||||
|
}
|
|
@ -59,7 +59,7 @@ pandora.ui.item = function() {
|
||||||
}));
|
}));
|
||||||
} else if (pandora.user.ui.itemView == 'info') {
|
} else if (pandora.user.ui.itemView == 'info') {
|
||||||
//Ox.print('result.data', result.data)
|
//Ox.print('result.data', result.data)
|
||||||
if (pandora.user.level == 'admin') {
|
if (pandora.user.level == 'admin' && false) {
|
||||||
var $form,
|
var $form,
|
||||||
$edit = Ox.Element()
|
$edit = Ox.Element()
|
||||||
.append($form = Ox.FormElementGroup({
|
.append($form = Ox.FormElementGroup({
|
||||||
|
@ -103,6 +103,15 @@ pandora.ui.item = function() {
|
||||||
}));
|
}));
|
||||||
pandora.$ui.contentPanel.replaceElement(1, pandora.$ui.item = $edit);
|
pandora.$ui.contentPanel.replaceElement(1, pandora.$ui.item = $edit);
|
||||||
} else {
|
} else {
|
||||||
|
pandora.$ui.contentPanel.replaceElement(1,
|
||||||
|
pandora.$ui.item = pandora.ui.infoView(result.data)
|
||||||
|
.bindEvent({
|
||||||
|
resize: function() {
|
||||||
|
pandora.$ui.item.resize();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
|
/*
|
||||||
$.get('/static/html/itemInfo.html', {}, function(template) {
|
$.get('/static/html/itemInfo.html', {}, function(template) {
|
||||||
//Ox.print(template);
|
//Ox.print(template);
|
||||||
var posterRatio = result.data.poster.width / result.data.poster.height;
|
var posterRatio = result.data.poster.width / result.data.poster.height;
|
||||||
|
@ -113,6 +122,7 @@ pandora.ui.item = function() {
|
||||||
pandora.$ui.item = Ox.Element().append($.tmpl(template, result.data))
|
pandora.$ui.item = Ox.Element().append($.tmpl(template, result.data))
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (pandora.user.ui.itemView == 'map') {
|
} else if (pandora.user.ui.itemView == 'map') {
|
||||||
|
|
|
@ -40,5 +40,6 @@
|
||||||
"js/pandora/ui/appPanel.js",
|
"js/pandora/ui/appPanel.js",
|
||||||
"js/pandora/ui/flipbook.js",
|
"js/pandora/ui/flipbook.js",
|
||||||
"js/pandora/ui/editor.js",
|
"js/pandora/ui/editor.js",
|
||||||
|
"js/pandora/ui/infoView.js",
|
||||||
"js/pandora/ui/mediaView.js"
|
"js/pandora/ui/mediaView.js"
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue