pandora/static/js/pandora/ui/list.js

418 lines
18 KiB
JavaScript
Raw Normal View History

2011-07-29 18:37:11 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
pandora.ui.list = function() {
2011-10-03 16:08:08 +00:00
var that,
view = pandora.user.ui.listView,
2011-10-03 16:08:08 +00:00
preview = false;
2011-05-25 19:42:45 +00:00
if (view == 'list') {
/*
2011-09-17 17:40:15 +00:00
keys = Ox.unique(Ox.merge(
2011-06-06 15:48:11 +00:00
$.map(pandora.user.ui.lists[pandora.user.ui.list].columns, function(id) {
return Ox.getObjectById(pandora.site.sortKeys, id);
2011-05-25 19:42:45 +00:00
}),
2011-06-06 15:48:11 +00:00
pandora.site.sortKeys
2011-05-25 19:42:45 +00:00
));
Ox.print('$$$$', keys)
*/
2011-06-19 17:49:25 +00:00
that = Ox.TextList({
2011-09-04 04:15:12 +00:00
columns: /*Ox.merge([{
2011-09-04 01:52:41 +00:00
align: 'center',
defaultWidth: 16,
format: function(value, data) {
var icon, width, height, margin, marginCSS, borderRadius;
if (pandora.user.ui.icons == 'posters') {
icon = 'poster';
width = value < 1 ? Math.round(14 * value / 2) * 2 : 14;
height = value < 1 ? 14 : Math.round(14 / value / 2) * 2;
margin = value < 1 ? Math.floor(7 - width / 2) - 3 : Math.floor(7 - height / 2);
marginCSS = value < 1 ? '0 0 0 ' + margin + 'px' : margin + 'px 0 0 -3px';
borderRadius = 0;
} else {
icon = 'icon';
width = 14;
height = 14;
marginCSS = '0 0 0 -3px';
borderRadius = '3px';
}
return $('<img>').css({
width: width - 2 + 'px',
height: height - 2 + 'px',
border: '1px solid rgb(48, 48, 48)',
borderRadius: '2px',
margin: marginCSS,
background: '-webkit-linear-gradient(top, rgb(32, 32, 32), rgb(0, 0, 0))'
}).load(function() {
$(this).css({
width: width + 'px',
height: height + 'px',
border: 0,
borderRadius: borderRadius
//background: 'transparent'
})
}).attr({
src: '/' + data.id + '/' + icon + '14.jpg'
});
},
id: 'posterRatio',
operator: '+',
position: 0,
removable: true,
2011-09-04 04:15:12 +00:00
title: 'Poster',
*//*
2011-09-04 01:52:41 +00:00
title: $('<img>').attr({
src: Ox.UI.getImageURL(
pandora.user.ui.icons == 'posters'
? 'symbolSetPoster' : 'symbolIcon'
)
})
.css({
width: '12px',
height: '12px',
padding: '2px',
}),
2011-09-04 04:15:12 +00:00
*//*
2011-09-04 01:52:41 +00:00
visible: true,
width: 16
2011-09-04 04:15:12 +00:00
}], */Ox.map(pandora.site.sortKeys, function(key) {
var position = pandora.user.ui.listColumns.indexOf(key.id);
2011-05-25 19:42:45 +00:00
return {
align: ['string', 'text'].indexOf(
Ox.isArray(key.type) ? key.type[0]: key.type
) > -1 ? 'left' : 'right',
defaultWidth: key.columnWidth,
format: key.format,
id: key.id,
operator: pandora.getSortOperator(key.id),
position: position,
removable: !key.columnRequired,
title: key.title,
type: key.type,
unique: key.id == 'id',
visible: position > -1,
width: pandora.user.ui.listColumnWidth[key.id] || key.columnWidth
2011-05-25 19:42:45 +00:00
};
2011-09-04 04:15:12 +00:00
})/*)*/,
2011-05-25 19:42:45 +00:00
columnsMovable: true,
columnsRemovable: true,
columnsResizable: true,
columnsVisible: true,
2011-09-01 09:17:49 +00:00
draggable: true,
2011-05-25 19:42:45 +00:00
id: 'list',
items: function(data, callback) {
//Ox.print('data, pandora.Query.toObject', data, pandora.Query.toObject())
2011-08-24 06:32:59 +00:00
pandora.api.find(Ox.extend(data, {
query: pandora.user.ui.find
2011-05-25 19:42:45 +00:00
}), callback);
},
scrollbarVisible: true,
selected: pandora.user.ui.listSelection,
sort: pandora.user.ui.listSort
2011-05-25 19:42:45 +00:00
})
.bindEvent({
2011-08-18 07:54:46 +00:00
columnchange: function(data) {
2011-06-27 13:39:35 +00:00
var columnWidth = {};
2011-09-26 16:46:31 +00:00
pandora.UI.set({listColumns: data.ids});
2011-05-25 19:42:45 +00:00
/*
data.ids.forEach(function(id) {
columnWidth[id] =
2011-09-26 16:46:31 +00:00
pandora.user.ui.lists[pandora.user.ui.list].columnWidth[id]
|| Ox.getObjectById(pandora.site.sortKeys, id).width
2011-05-25 19:42:45 +00:00
});
2011-09-26 16:46:31 +00:00
pandora.UI.set({listColumnWidth: columnWidth});
2011-05-25 19:42:45 +00:00
*/
},
2011-08-18 07:54:46 +00:00
columnresize: function(data) {
2011-09-26 16:46:31 +00:00
pandora.UI.set('listColumnWidth.' + data.id, data.width);
2011-05-25 19:42:45 +00:00
},
2011-08-18 07:54:46 +00:00
resize: function(data) { // this is the resize event of the split panel
2011-05-25 19:42:45 +00:00
that.size();
},
2011-08-18 07:54:46 +00:00
sort: function(data) {
Ox.print('---- SORT ----', data)
pandora.UI.set({
listSort: [{key: data.key, operator: data.operator}]
});
2011-05-25 19:42:45 +00:00
}
});
2011-09-17 07:07:59 +00:00
} else if (view == 'grid') {
2011-06-19 17:49:25 +00:00
that = Ox.IconList({
borderRadius: pandora.user.ui.icons == 'posters' ? 0 : 16,
2011-08-07 20:25:33 +00:00
defaultRatio: pandora.user.ui.icons == 'posters' ? 5/8 : 1,
2011-09-01 09:17:49 +00:00
draggable: true,
2011-05-25 19:42:45 +00:00
id: 'list',
item: function(data, sort, size) {
var ui = pandora.user.ui,
ratio = ui.icons == 'posters'
? (ui.showSitePoster ? 5/8 : data.posterRatio) : 1,
url = '/' + data.id + '/' + (
ui.icons == 'posters'
? (ui.showSitePoster ? 'siteposter' : 'poster') : 'icon'
) + size + '.jpg',
format, info, sortKey;
if (['title', 'director'].indexOf(sortKey) > -1) {
info = data['year'];
} else {
sortKey = sort[0].key;
format = pandora.getSortKeyData(sortKey).format;
info = format
? Ox['format' + Ox.toTitleCase(format.type)]
.apply(this, Ox.merge([data[sortKey]], format.args || []))
: data[sortKey];
}
2011-05-25 19:42:45 +00:00
size = size || 128;
return {
height: Math.round(ratio <= 1 ? size : size / ratio),
2011-08-06 18:00:15 +00:00
id: data.id,
info: info,
2011-05-25 19:42:45 +00:00
title: data.title + (data.director.length ? ' (' + data.director.join(', ') + ')' : ''),
url: url,
width: Math.round(ratio >= 1 ? size : size * ratio)
2011-05-25 19:42:45 +00:00
};
},
items: function(data, callback) {
2011-08-24 06:32:59 +00:00
pandora.api.find(Ox.extend(data, {
query: pandora.user.ui.find
2011-05-25 19:42:45 +00:00
}), callback);
},
2011-08-19 12:33:02 +00:00
keys: ['director', 'id', 'posterRatio', 'title', 'year'],
selected: pandora.user.ui.listSelection,
2011-05-25 19:42:45 +00:00
size: 128,
sort: pandora.user.ui.listSort,
2011-05-25 19:42:45 +00:00
unique: 'id'
2011-06-16 20:00:10 +00:00
});
2011-06-27 13:39:35 +00:00
} else if (view == 'info') {
2011-08-19 02:13:16 +00:00
that = Ox.Element().css({margin: '16px'}).html(view + ' results view still missing.');
} else if (view == 'clips') {
that = Ox.Element().css({margin: '16px'}).html(view + ' results view still missing.');
} else if (view == 'timelines') {
that = Ox.InfoList({
2011-08-18 11:32:47 +00:00
borderRadius: pandora.user.ui.icons == 'posters' ? 0 : 16,
defaultRatio: pandora.user.ui.icons == 'posters' ? 5/8 : 1,
id: 'list',
item: function(data, sort, size) {
var icons = pandora.user.ui.icons,
2011-08-19 12:33:02 +00:00
ratio = icons == 'posters' ? data.posterRatio : 1;
2011-08-19 06:40:19 +00:00
size = 128;
2011-08-18 11:32:47 +00:00
return {
2011-08-19 06:40:19 +00:00
icon: {
height: ratio <= 1 ? size : size / ratio,
id: data.id,
info: data[['title', 'director'].indexOf(sort[0].key) > -1 ? 'year' : sort[0].key],
title: data.title + (data.director.length ? ' (' + data.director.join(', ') + ')' : ''),
url: icons == 'posters'
? '/' + data.id + '/poster' + size + '.jpg'
: '/' + data.id + '/icon' + size + '.jpg',
width: ratio >= 1 ? size : size * ratio
},
info: {
css: {
margin: '-4px 0 0 -4px'
},
element: Ox.BlockVideoTimeline,
id: data.id,
options: {
duration: data.duration,
getImageURL: '/' + data.id + '/timeline16p.png'
}
}
2011-08-18 11:32:47 +00:00
};
},
items: function(data, callback) {
2011-08-24 06:32:59 +00:00
pandora.api.find(Ox.extend(data, {
query: pandora.user.ui.find
2011-08-18 11:32:47 +00:00
}), callback);
},
2011-08-19 12:33:02 +00:00
keys: ['director', 'duration', 'id', 'posterRatio', 'title', 'year'],
selected: pandora.user.ui.listSelection,
2011-08-19 02:13:16 +00:00
size: 192,
sort: pandora.user.ui.listSort,
2011-08-18 11:32:47 +00:00
unique: 'id'
2011-08-19 02:13:16 +00:00
});
2011-06-27 13:39:35 +00:00
} else if (view == 'maps') {
that = Ox.Element().css({margin: '16px'}).html(view + ' results view still missing.');
} else if (view == 'calendars') {
that = Ox.Element().css({margin: '16px'}).html(view + ' results view still missing.');
2011-06-16 20:00:10 +00:00
} else if (view == 'clip') {
2011-09-30 10:33:45 +00:00
that = pandora.ui.clipList();
} else if (view == 'video') {
that = pandora.ui.clipPlayer();
} else if (['map', 'calendar'].indexOf(view) > -1) {
that = pandora.ui.navigationView(view);
2011-05-25 19:42:45 +00:00
} else {
2011-09-03 23:04:48 +00:00
// fixme: ???
2011-06-19 17:49:25 +00:00
$list = Ox.Element('<div>')
2011-05-25 19:42:45 +00:00
.css({
width: '100px',
height: '100px',
background: 'red'
});
}
2011-09-17 07:07:59 +00:00
if (['list', 'grid'].indexOf(view) > -1) {
2011-09-03 23:04:48 +00:00
pandora.enableDragAndDrop(that, true);
that.bindEvent({
closepreview: function(data) {
pandora.$ui.previewDialog.close();
preview = false;
//delete pandora.$ui.previewDialog;
},
copy: function(data) {
Ox.Clipboard.copy({
items: data.ids,
2011-09-09 12:09:05 +00:00
text: data.ids.map(function(id) {
return pandora.$ui.list.value(id, 'title');
}).join('\n')
2011-09-03 23:04:48 +00:00
});
},
'delete': function(data) {
pandora.getListData().editable && pandora.api.removeListItems({
2011-09-28 00:10:26 +00:00
list: pandora.user.ui._list,
items: data.ids
}, pandora.reloadList);
},
init: function(data) {
pandora.$ui.total.html(pandora.ui.status('total', data));
data = [];
pandora.site.totals.forEach(function(v) {
data[v.id] = 0;
});
pandora.$ui.selected.html(pandora.ui.status('selected', data));
},
open: function(data) {
pandora.UI.set({item: data.ids[0]});
},
openpreview: function(data) {
pandora.requests.preview && pandora.api.cancel(pandora.requests.preview);
pandora.requests.preview = pandora.api.find({
keys: ['director', 'id', 'posterRatio', 'title'],
query: {
conditions: data.ids.map(function(id) {
return {
key: 'id',
value: id,
2011-09-28 01:40:36 +00:00
operator: '=='
2011-09-03 23:04:48 +00:00
}
}),
operator: '|'
}
}, function(result) {
var item = result.data.items[0],
title = item.title + ' (' + item.director + ')'
ratio = item.posterRatio,
windowWidth = window.innerWidth * 0.8,
windowHeight = window.innerHeight * 0.8,
windowRatio = windowWidth / windowHeight,
width = Math.round(ratio > windowRatio ? windowWidth : windowHeight * ratio),
height = Math.round(ratio < windowRatio ? windowHeight : windowWidth / ratio);
pandora.$ui.previewImage = $('<img>')
.attr({src: '/' + item.id + '/poster128.jpg'})
.css({width: width + 'px', height: height + 'px'})
$('<img>').load(function() {
pandora.$ui.previewImage.attr({src: $(this).attr('src')});
})
.attr({src: '/' + item.id + '/poster1024.jpg'});
if (!preview) {
if (!pandora.$ui.previewDialog) {
pandora.$ui.previewDialog = Ox.Dialog({
closeButton: true,
content: pandora.$ui.previewImage,
fixedRatio: true,
focus: false,
height: height,
maximizeButton: true,
title: title,
width: width
})
.bindEvent({
close: function() {
that.closePreview();
preview = false;
},
2011-09-17 17:40:15 +00:00
resize: function(data) {
pandora.$ui.previewImage.css({
2011-09-17 17:40:15 +00:00
width: data.width + 'px',
height: data.height + 'px'
});
}
})
.open();
} else {
pandora.$ui.previewDialog.options({
content: pandora.$ui.previewImage,
height: height,
title: title,
width: width
})
.open();
2011-05-25 19:42:45 +00:00
}
preview = true;
2011-08-08 07:48:13 +00:00
} else {
pandora.$ui.previewDialog.options({
2011-08-08 07:48:13 +00:00
content: pandora.$ui.previewImage,
title: title,
})
.setSize(width, height);
2011-08-08 07:48:13 +00:00
}
});
},
paste: function(data) {
data.items && pandora.getListData().editable && pandora.api.addListItems({
2011-09-28 00:10:26 +00:00
list: pandora.user.ui._list,
items: data.items
}, pandora.reloadList);
},
select: function(data) {
var $still, $timeline;
pandora.UI.set('listSelection', data.ids);
if (data.ids.length) {
pandora.$ui.mainMenu.enableItem('copy');
pandora.$ui.mainMenu.enableItem('openmovie');
2011-05-25 19:42:45 +00:00
} else {
pandora.$ui.mainMenu.disableItem('copy');
pandora.$ui.mainMenu.disableItem('openmovie');
2011-05-25 19:42:45 +00:00
}
2011-09-18 21:18:05 +00:00
pandora.$ui.leftPanel.replaceElement(2, pandora.$ui.info = pandora.ui.info());
pandora.api.find({
query: {
conditions: data.ids.map(function(id) {
return {
key: 'id',
value: id,
2011-09-28 01:40:36 +00:00
operator: '=='
}
}),
operator: '|'
}
}, function(result) {
pandora.$ui.selected.html(pandora.ui.status('selected', result.data));
});
},
pandora_listsort: function(data) {
that.options({sort: data.value});
2011-05-25 19:42:45 +00:00
}
});
}
if (pandora.user.ui.listView == 'grid') {
that.bindEvent({
pandora_icons: function(data) {
that.options({
borderRadius: data.value == 'posters' ? 0 : 16,
defaultRatio: data.value == 'posters' ? 5/8 : 1
}).reloadList(true);
},
pandora_showsiteposter: function() {
2011-09-28 00:10:26 +00:00
pandora.user.ui.icons == 'posters' && that.reloadList(true);
}
});
}
2011-05-25 19:42:45 +00:00
return that;
2011-05-25 19:42:45 +00:00
};