// vim: et:ts=4:sw=4:sts=4:ft=javascript pandora.ui.list = function() { // fixme: remove view argument var that, $map, view = pandora.user.ui.lists[pandora.user.ui.list].listView, preview = false //Ox.print('constructList', view); if (view == 'list') { /* keys = Ox.unique($.merge( $.map(pandora.user.ui.lists[pandora.user.ui.list].columns, function(id) { return Ox.getObjectById(pandora.site.sortKeys, id); }), pandora.site.sortKeys )); Ox.print('$$$$', keys) */ that = Ox.TextList({ columns: $.map(pandora.site.sortKeys, function(key, i) { var position = pandora.user.ui.lists[pandora.user.ui.list].columns.indexOf(key.id); 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.lists[pandora.user.ui.list].columnWidth[key.id] || key.columnWidth }; }), columnsMovable: true, columnsRemovable: true, columnsResizable: true, columnsVisible: true, id: 'list', items: function(data, callback) { //Ox.print('data, pandora.Query.toObject', data, pandora.Query.toObject()) pandora.api.find($.extend(data, { query: pandora.Query.toObject() }), callback); }, scrollbarVisible: true, selected: pandora.user.ui.lists[pandora.user.ui.list].selected, sort: pandora.user.ui.lists[pandora.user.ui.list].sort }) .bindEvent({ columnchange: function(data) { var columnWidth = {}; pandora.UI.set(['lists', pandora.user.ui.list, 'columns'].join('|'), data.ids); /* data.ids.forEach(function(id) { columnWidth[id] = pandora.user.ui.lists[pandora.user.ui.list].columnWidth[id] || Ox.getObjectById(pandora.site.sortKeys, id).width }); pandora.UI.set(['lists', pandora.user.ui.list, 'columnWidth'].join('|'), columnWidth); */ }, columnresize: function(data) { pandora.UI.set(['lists', pandora.user.ui.list, 'columnWidth', data.id].join('|'), data.width); }, resize: function(data) { // this is the resize event of the split panel that.size(); }, sort: function(data) { Ox.print('---- SORT ----', data) pandora.$ui.mainMenu.checkItem('sortMenu_sortmovies_' + data.key); pandora.$ui.mainMenu.checkItem('sortMenu_ordermovies_' + (data.operator == '+' ? 'ascending' : 'descending')); pandora.$ui.sortSelect.selectItem(data.key); pandora.UI.set(['lists', pandora.user.ui.list, 'sort'].join('|'), [{key: data.key, operator: data.operator}]); pandora.URL.push(pandora.Query.toString()); } }); } else if (view == 'icons') { //alert(JSON.stringify(pandora.user.ui.lists[pandora.user.ui.list].selected)) that = Ox.IconList({ 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, ratio = icons == 'posters' ? data.poster.width / data.poster.height : 1; size = size || 128; return { 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 }; }, items: function(data, callback) { //Ox.print('data, pandora.Query.toObject', data, pandora.Query.toObject()) pandora.api.find($.extend(data, { query: pandora.Query.toObject() }), callback); }, keys: ['director', 'id', 'poster', 'title', 'year'], selected: pandora.user.ui.lists[pandora.user.ui.list].selected, size: 128, sort: pandora.user.ui.lists[pandora.user.ui.list].sort, unique: 'id' }); } else if (view == 'info') { that = Ox.IconList({ 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, ratio = icons == 'posters' ? data.poster.width / data.poster.height : 1; size = size || 128; return { 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 }; }, items: function(data, callback) { //Ox.print('data, pandora.Query.toObject', data, pandora.Query.toObject()) pandora.api.find($.extend(data, { query: pandora.Query.toObject() }), callback); }, keys: ['director', 'id', 'poster', 'title', 'year'], orientation: 'vertical', selected: pandora.user.ui.lists[pandora.user.ui.list].selected, size: 128, sort: pandora.user.ui.lists[pandora.user.ui.list].sort, unique: 'id' }); } else if (view == 'clips') { that = Ox.Element().css({margin: '16px'}).html(view + ' results view still missing.'); } else if (view == 'timelines') { that = Ox.Element().css({margin: '16px'}).html(view + ' results view still missing.'); } 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.'); } else if (view == 'clip') { var fixedRatio = 16/9; that = Ox.IconList({ fixedRatio: fixedRatio, item: function(data, sort, size) { size = size || 128; var ratio = data.aspectRatio, width = ratio > fixedRatio ? size : Math.round(size * ratio / fixedRatio), height = Math.round(width / ratio), url = '/' + data.item + '/' + height + 'p' + data['in'] + '.jpg'; return { height: height, id: data['id'], info: Ox.formatDuration(data['in'], 'short') + ' - ' + Ox.formatDuration(data['out'], 'short'), title: data.value, url: url, width: width }; }, items: function(data, callback) { var itemQuery = pandora.Query.toObject(), query = {conditions:[]}; //fixme: can this be in pandora.Query? dont just check for subtitles itemQuery.conditions.forEach(function(q) { if (q.key == 'subtitles') { query.conditions.push({key: 'value', value: q.value, operator: q.operator}); } }); pandora.api.findAnnotations($.extend(data, { query: query, itemQuery: itemQuery }), callback); }, keys: ['id', 'value', 'in', 'out', 'aspectRatio', 'item'], max: 1, size: 128, sort: pandora.user.ui.lists[pandora.user.ui.list].sort, unique: 'id' }).bindEvent({ open: function(data) { var id = data.ids[0], item = that.value(id, 'item'), position = that.value(id, 'in'); pandora.UI.set('videoPosition|' + item, position); pandora.URL.set(item + '/timeline'); }, openpreview: function(data) { var $video = $('.OxItem.OxSelected > .OxIcon > .OxVideoPlayer'); $video && $video.trigger('click'); that.closePreview(); }, select: function(data) { if (data.ids.length) { var id = data.ids[0], item = id.split('/')[0], width, height, $img = $('.OxItem.OxSelected > .OxIcon > img'), $video = $('.OxItem.OxSelected > .OxIcon > .OxVideoPlayer'); pandora.UI.set(['lists', pandora.user.ui.list, 'selected'].join('|'), item); pandora.$ui.leftPanel.replaceElement(2, pandora.$ui.info = pandora.ui.info(data.ids[0].split('/')[0])); if ($img.length) { width = parseInt($img.css('width')); height = parseInt($img.css('height')); pandora.api.findAnnotations({ query: { conditions:[{key: 'id', value: id, operator: '='}] }, keys: ['in', 'out'] }, function(result) { var $player = Ox.VideoPlayer({ height: height, 'in': result.data.items[0]['in'], out: result.data.items[0].out, paused: true, playInToOut: true, poster: '/' + item + '/' + height + 'p' + result.data.items[0]['in'] + '.jpg', width: width, video: '/' + item + '/96p.webm' }) .addClass('OxTarget') .bind({ click: function() { $player.$element.is('.OxSelectedVideo') && $player.togglePaused(); } }); $img.replaceWith($player.$element); $('.OxSelectedVideo').removeClass('OxSelectedVideo'); $player.$element.addClass('OxSelectedVideo'); }); } else if ($video.length) { // item select fires before video click // so we have to make sure that selecting // doesn't click through to play setTimeout(function() { $('.OxSelectedVideo').removeClass('OxSelectedVideo'); $video.addClass('OxSelectedVideo'); }, 25); } } } }); } else if (view == 'map') { var fixedRatio = 16/9; that = Ox.SplitPanel({ elements: [ { element: pandora.$ui.map = Ox.Map({ height: window.innerHeight - pandora.user.ui.showGroups * pandora.user.ui.groupsSize - 61, places: function(data, callback) { var itemQuery = pandora.Query.toObject(), query = {conditions:[]}; return pandora.api.findPlaces($.extend(data, { itemQuery: itemQuery, query: query }), callback); }, showTypes: true, toolbar: true, width: window.innerWidth - pandora.user.ui.showSidebar * pandora.user.ui.sidebarSize - 2 - 144 - Ox.UI.SCROLLBAR_SIZE, }).bindEvent({ selectplace: function(event, place) { if(place && place.id[0] != '_') { pandora.$ui.clips.options({ items: function(data, callback) { return pandora.api.findAnnotations($.extend(data, { query: { conditions:[{key: 'place', value: place.id, operator:'='}] }, itemQuery: pandora.Query.toObject() }), callback); } }); } else { pandora.$ui.clips.options({ items: [] }); } } }) }, { element: pandora.$ui.clips = Ox.IconList({ fixedRatio: fixedRatio, item: function(data, sort, size) { Ox.print('RATIO', data.aspectRatio); size = size || 128; var width = data.aspectRatio < fixedRatio ? size : size * data.aspectRatio / fixedRatio, height = width / data.aspectRatio, url = '/' + data.item + '/' + height + 'p' + data['in'] + '.jpg'; return { height: height, id: data.id, info: Ox.formatDuration(data['in'], 'short') + ' - ' + Ox.formatDuration(data['out'], 'short'), title: data.value, url: url, width: width }; }, items: [], keys: ['id', 'value', 'in', 'out', 'aspectRatio', 'item'], size: 128, sort: pandora.user.ui.lists[pandora.user.ui.list].sort, unique: 'id' }).bindEvent({ open: function(data) { var id = data.ids[0], item = pandora.$ui.clips.value(id, 'item'), position = pandora.$ui.clips.value(id, 'in'); pandora.UI.set('videoPosition|' + item, position); pandora.URL.set(item + '/timeline'); } }), id: 'place', size: 144 + Ox.UI.SCROLLBAR_SIZE } ], orientation: 'horizontal' }) .bindEvent('resize', function() { pandora.$ui.map.resizeMap(); }); } else if (view == 'calendar') { that = Ox.SplitPanel({ elements: [ { element: pandora.$ui.calendar = Ox.Calendar({ date: new Date(0), events: [ {name: 'Thirty Years\' War', start: '1618', end: '1648', type: 'other'}, {name: 'American Civil War', start: '1861-04-12', end: '1865-04-09', type: 'other'}, {name: 'Franco-Prussian War', start: '1870-07-19', end: '1871-05-10', type: 'other'}, {name: 'World War One', start: '1914-07-28', end: '1918-11-11', type: 'other'}, {name: 'World War Two', start: '1939-09-01', end: '1945-09-02', type: 'other'}, {name: 'Cold War', start: '1947', end: '1991', type: 'other'}, {name: 'Korean War', start: '1950-06-25', end: '1953-07-27', type: 'other'}, {name: 'Algerian War', start: '1954-11-01', end: '1962-03-19', type: 'other'}, {name: 'Vietnam War', start: '1955-11-01', end: '1975-04-30', type: 'other'}, {name: 'Six-Day War', start: '1967-06-05', end: '1967-06-11', type: 'other'}, {name: 'Iran-Iraq War', start: '1980-09-22', end: '1988-08-20', type: 'other'}, {name: 'Gulf War', start: '1990-08-02', end: '1991-02-28', type: 'other'} ], height: window.innerHeight - pandora.user.ui.showGroups * pandora.user.ui.groupsSize - 61, range: [-5000, 5000], width: window.innerWidth - pandora.user.ui.showSidebar * pandora.user.ui.sidebarSize - 2 - 144 - Ox.UI.SCROLLBAR_SIZE, zoom: 4 }) }, { element: Ox.Element(), id: 'place', size: 144 + Ox.UI.SCROLLBAR_SIZE } ], orientation: 'horizontal' }) .bindEvent('resize', function() { }); } else { $list = Ox.Element('
') .css({ width: '100px', height: '100px', background: 'red' }); } ['list', 'icons'].indexOf(view) > -1 && that.bind({ dragstart: function(e) { Ox.forEach(pandora.$ui.folderList, function($list, i) { $list.addClass('OxDrop'); }); }, dragend: function(e) { Ox.forEach(pandora.$ui.folderList, function($list, i) { $list.removeClass('OxDrop'); }); } }).bindEvent({ closepreview: function(data) { pandora.$ui.previewDialog.close(); preview = false; //delete pandora.$ui.previewDialog; }, copy: function(data) { Ox.Clipboard.copy({ items: data.ids, text: $.map(data.ids, function(id) { return pandora.$ui.list.value(id, 'title'); }).join('\n') }); }, 'delete': function(data) { pandora.getListData().editable && pandora.api.removeListItems({ list: pandora.user.ui.list, items: data.ids }, pandora.reloadList); }, init: function(data) { pandora.$ui.total.html(pandora.ui.status('total', data)); data = []; $.each(pandora.site.totals, function(i, v) { data[v.id] = 0; }); pandora.$ui.selected.html(pandora.ui.status('selected', data)); }, open: function(data) { var id = data.ids[0], title = that.value(id, 'title'); pandora.URL.set(title, id); }, openpreview: function(data) { pandora.requests.preview && pandora.api.cancel(pandora.requests.preview); pandora.requests.preview = pandora.api.find({ keys: ['director', 'id', 'poster', 'title'], query: { conditions: $.map(data.ids, function(id, i) { return { key: 'id', value: id, operator: '=' } }), operator: '|' } }, function(result) { var item = result.data.items[0], title = item.title + ' (' + item.director + ')' ratio = item.poster.width / item.poster.height, 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 = $('') .attr({src: item.poster.url.replace('.jpg', '128.jpg')}) .css({width: width + 'px', height: height + 'px'}) $('').load(function() { pandora.$ui.previewImage.attr({src: $(this).attr('src')}); }) .attr({src: item.poster.url.replace('.jpg', '1024.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; }, resize: function(event) { pandora.$ui.previewImage.css({ width: event.width + 'px', height: event.height + 'px' }); } }) .open(); } else { pandora.$ui.previewDialog.options({ content: pandora.$ui.previewImage, height: height, title: title, width: width }) .open(); } preview = true; } else { pandora.$ui.previewDialog.options({ content: pandora.$ui.previewImage, title: title, }) .setSize(width, height); } }); }, paste: function(data) { data.items && pandora.getListData().editable && pandora.api.addListItems({ list: pandora.user.ui.list, items: data.items }, pandora.reloadList); }, select: function(data) { var $still, $timeline; pandora.UI.set(['lists', pandora.user.ui.list, 'selected'].join('|'), data.ids); //pandora.user.ui.lists[pandora.user.ui.list].selected = data.ids; if (data.ids.length) { pandora.$ui.mainMenu.enableItem('copy'); pandora.$ui.mainMenu.enableItem('openmovie'); } else { pandora.$ui.mainMenu.disableItem('copy'); pandora.$ui.mainMenu.disableItem('openmovie'); } pandora.$ui.leftPanel.replaceElement(2, pandora.$ui.info = pandora.ui.info(data.ids[0])); pandora.api.find({ query: { conditions: $.map(data.ids, function(id, i) { return { key: 'id', value: id, operator: '=' } }), operator: '|' } }, function(result) { pandora.$ui.selected.html(pandora.ui.status('selected', result.data)); }); } }); that.display = function() { // fixme: used? pandora.$ui.rightPanel.replaceElement(1, pandora.$ui.contentPanel = pandora.ui.contentPanel()); }; return that; };