indiancinema info view: add filmographies
This commit is contained in:
parent
d94ba6897f
commit
ec30110ac9
1 changed files with 99 additions and 15 deletions
|
@ -23,7 +23,7 @@ pandora.ui.infoView = function(data) {
|
||||||
listWidth = 144 + Ox.UI.SCROLLBAR_SIZE,
|
listWidth = 144 + Ox.UI.SCROLLBAR_SIZE,
|
||||||
margin = 16,
|
margin = 16,
|
||||||
nameKeys = [
|
nameKeys = [
|
||||||
'director', 'codirector', 'producer', 'writer', 'cinematographer',
|
'director', 'producer', 'codirector', 'writer', 'cinematographer',
|
||||||
'editor', 'composer', 'lyricist', 'actor'
|
'editor', 'composer', 'lyricist', 'actor'
|
||||||
],
|
],
|
||||||
listKeys = nameKeys.concat([
|
listKeys = nameKeys.concat([
|
||||||
|
@ -578,6 +578,54 @@ pandora.ui.infoView = function(data) {
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getFilmography(key, value, callback) {
|
||||||
|
var keys = ['id', 'title', 'year'].concat(
|
||||||
|
key == 'name' ? nameKeys : []
|
||||||
|
);
|
||||||
|
pandora.api.find({
|
||||||
|
keys: keys,
|
||||||
|
query: {
|
||||||
|
conditions: [{key: key, operator: '==', value: value}],
|
||||||
|
operator: '&'
|
||||||
|
},
|
||||||
|
sort: [
|
||||||
|
{key: 'year', operator: '+'},
|
||||||
|
{key: 'title', operator: '+'},
|
||||||
|
{key: 'director', operator: '+'}
|
||||||
|
],
|
||||||
|
range: [0, 1000000]
|
||||||
|
}, function(result) {
|
||||||
|
var $element = Ox.Element('<span>'),
|
||||||
|
items = {};
|
||||||
|
if (result.data.items) {
|
||||||
|
result.data.items.forEach(function(item) {
|
||||||
|
var year = item.year || 'Unknown Year';
|
||||||
|
if (key == 'name') {
|
||||||
|
item.role = nameKeys.filter(function(nameKey) {
|
||||||
|
return Ox.contains(item[nameKey], value);
|
||||||
|
}).map(function(nameKey) {
|
||||||
|
return Ox.getObjectById(pandora.site.itemKeys, nameKey).title;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!items[year]) {
|
||||||
|
items[year] = [];
|
||||||
|
}
|
||||||
|
items[year].push(item);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
$element.html(
|
||||||
|
Object.keys(items).sort().map(function(year) {
|
||||||
|
return '<b>' + year + ':</b> ' + items[year].map(function(item) {
|
||||||
|
return '<a href="/' + item.id + '">' + item.title + '</a>'
|
||||||
|
+ (item.role ? ' (' + item.role.join(', ') + ')' : '');
|
||||||
|
}).join(', ');
|
||||||
|
}).join(', ')
|
||||||
|
);
|
||||||
|
pandora.createLinks($element);
|
||||||
|
callback($element);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function getNames() {
|
function getNames() {
|
||||||
var names = [];
|
var names = [];
|
||||||
nameKeys.forEach(function(key) {
|
nameKeys.forEach(function(key) {
|
||||||
|
@ -720,7 +768,8 @@ pandora.ui.infoView = function(data) {
|
||||||
['studios', 'names'].forEach(function(key) {
|
['studios', 'names'].forEach(function(key) {
|
||||||
descriptions[key].forEach(function(value) {
|
descriptions[key].forEach(function(value) {
|
||||||
if (canEdit || value.description) {
|
if (canEdit || value.description) {
|
||||||
var $name = Ox.Element()
|
var filmography = key == 'studios' ? 'Films' : 'Filmography',
|
||||||
|
$name = Ox.Element()
|
||||||
.css(css)
|
.css(css)
|
||||||
.css({marginTop: '12px', fontWeight: 'bold'})
|
.css({marginTop: '12px', fontWeight: 'bold'})
|
||||||
.html(
|
.html(
|
||||||
|
@ -729,8 +778,43 @@ pandora.ui.infoView = function(data) {
|
||||||
key == 'studios' ? 'productionCompany' : 'name'
|
key == 'studios' ? 'productionCompany' : 'name'
|
||||||
) + ' (' + value.keys.map(function(key) {
|
) + ' (' + value.keys.map(function(key) {
|
||||||
return formatKey(key, 'description');
|
return formatKey(key, 'description');
|
||||||
}).join(', ') + ')'
|
}).join(', ') + ') - '
|
||||||
)
|
)
|
||||||
|
.appendTo($descriptions),
|
||||||
|
$link = $('<span>')
|
||||||
|
.addClass('OxLink')
|
||||||
|
.css({fontWeight: 'bold'})
|
||||||
|
.html('Show ' + filmography)
|
||||||
|
.one({
|
||||||
|
click: function() {
|
||||||
|
$link.removeClass('OxLink')
|
||||||
|
.html('Loading ' + filmography + '...');
|
||||||
|
getFilmography(
|
||||||
|
key == 'studios' ? 'productionCompany' : 'name',
|
||||||
|
value.name,
|
||||||
|
function($element) {
|
||||||
|
$link.addClass('OxLink')
|
||||||
|
.html('Hide ' + filmography)
|
||||||
|
.on({
|
||||||
|
click: function() {
|
||||||
|
if (Ox.startsWith($link.html(), 'Show')) {
|
||||||
|
$link.html('Hide ' + filmography);
|
||||||
|
$text.show();
|
||||||
|
} else {
|
||||||
|
$link.html('Show ' + filmography);
|
||||||
|
$text.hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$text.append($element).show();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.appendTo($name),
|
||||||
|
$text = $('<div>')
|
||||||
|
.css(css)
|
||||||
|
.hide()
|
||||||
.appendTo($descriptions);
|
.appendTo($descriptions);
|
||||||
pandora.createLinks($name);
|
pandora.createLinks($name);
|
||||||
Ox.EditableContent({
|
Ox.EditableContent({
|
||||||
|
@ -738,8 +822,8 @@ pandora.ui.infoView = function(data) {
|
||||||
editable: canEdit,
|
editable: canEdit,
|
||||||
format: function(value) {
|
format: function(value) {
|
||||||
return value.replace(
|
return value.replace(
|
||||||
/<img src=/g,
|
/<img /g,
|
||||||
'<img style="max-width: 256px; max-height: 256px; margin: 0 16px 16px 0;float: left;" src='
|
'<img style="max-width: 256px; max-height: 256px; margin: 0 16px 16px 0; float: left;" '
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
placeholder: formatLight('No Description'),
|
placeholder: formatLight('No Description'),
|
||||||
|
|
Loading…
Reference in a new issue