2011-07-29 18:37:11 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
2010-09-05 00:31:29 +00:00
|
|
|
/***
|
|
|
|
Pandora
|
|
|
|
***/
|
|
|
|
|
2011-05-25 19:42:45 +00:00
|
|
|
// fixme: never set pandora.ui.videoPosition to 0 ... set to null a.k.a. delete
|
2011-01-30 03:54:38 +00:00
|
|
|
// fixme: sort=-director doesn't work
|
|
|
|
// fixme: don't reload full right panel on sortSelect
|
2011-02-09 14:29:26 +00:00
|
|
|
// fixme: clear items cache after login/logout
|
2011-06-06 15:48:11 +00:00
|
|
|
|
2011-09-09 23:05:20 +00:00
|
|
|
Ox.load({
|
|
|
|
UI: {
|
|
|
|
debug: true,
|
|
|
|
hideScreen: false,
|
|
|
|
loadImages: true,
|
|
|
|
showScreen: true,
|
|
|
|
theme: 'modern'
|
|
|
|
},
|
|
|
|
Geo: {}
|
2011-09-03 13:19:00 +00:00
|
|
|
}, function(browserSupported) {
|
2011-01-30 03:54:38 +00:00
|
|
|
|
2011-06-06 18:40:24 +00:00
|
|
|
// fixme: use Ox.extend()
|
|
|
|
|
2011-09-09 23:05:20 +00:00
|
|
|
window.pandora = new Ox.App({url: '/api/'}).bindEvent({
|
2011-05-24 19:59:13 +00:00
|
|
|
|
2011-09-09 23:05:20 +00:00
|
|
|
load: function(data) {
|
2011-01-30 03:54:38 +00:00
|
|
|
|
2011-09-09 23:05:20 +00:00
|
|
|
if (!browserSupported) {
|
|
|
|
return;
|
|
|
|
}
|
2011-05-25 19:42:45 +00:00
|
|
|
|
2011-09-09 23:05:20 +00:00
|
|
|
Ox.extend(pandora, {
|
|
|
|
requests: {},
|
|
|
|
ui: {}
|
|
|
|
});
|
2011-05-25 19:42:45 +00:00
|
|
|
|
2011-09-09 23:05:20 +00:00
|
|
|
loadResources('/static/json/pandora.json', function() {
|
2011-09-03 15:25:32 +00:00
|
|
|
|
2011-09-09 23:05:20 +00:00
|
|
|
Ox.print('Ox.App load', data);
|
|
|
|
|
|
|
|
// Ox.UI.hideLoadingScreen();
|
|
|
|
|
|
|
|
Ox.extend(pandora, {
|
|
|
|
$ui: {
|
|
|
|
body: $('body'),
|
|
|
|
document: $(document),
|
|
|
|
window: $(window)
|
|
|
|
.resize(resizeWindow)
|
|
|
|
.unload(unloadWindow)
|
|
|
|
},
|
|
|
|
site: data.site,
|
2011-09-17 15:54:29 +00:00
|
|
|
user: data.user.level == 'guest' ? Ox.clone(data.site.user) : data.user
|
2011-09-03 13:19:00 +00:00
|
|
|
});
|
2011-09-17 16:31:04 +00:00
|
|
|
// ---- fixme: remove, server sends wrong data
|
|
|
|
pandora.site.user.ui.lists = {
|
|
|
|
"": {
|
|
|
|
"columns": ["title", "director", "country", "year", "language", "runtime", "genre"],
|
|
|
|
"columnWidth": {},
|
|
|
|
"listView": "grid",
|
|
|
|
"selected": [],
|
|
|
|
"sort": [
|
|
|
|
{"key": "director", "operator": ""}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|
2011-09-18 00:31:41 +00:00
|
|
|
pandora.site.user.ui.groups = [
|
|
|
|
{"id": "director", "sort": [{"key": "items", "operator": "-"}]},
|
|
|
|
{"id": "country", "sort": [{"key": "items", "operator": "-"}]},
|
|
|
|
{"id": "year", "sort": [{"key": "name", "operator": "-"}]},
|
|
|
|
{"id": "language", "sort": [{"key": "items", "operator": "-"}]},
|
|
|
|
{"id": "genre", "sort": [{"key": "items", "operator": "-"}]}
|
|
|
|
];
|
2011-09-17 16:31:04 +00:00
|
|
|
// ----
|
2011-09-17 16:08:38 +00:00
|
|
|
Ox.print("USER.UI.LISTS", data.user.ui.lists, "SITE.USER.UI.LISTS", data.site.user.ui.lists)
|
2011-09-09 23:05:20 +00:00
|
|
|
Ox.extend(pandora.site, {
|
2011-09-17 11:50:01 +00:00
|
|
|
findKeys: Ox.map(data.site.itemKeys, function(key) {
|
2011-09-09 23:05:20 +00:00
|
|
|
return key.find ? key : null;
|
|
|
|
}),
|
|
|
|
sectionFolders: {
|
|
|
|
items: [
|
|
|
|
{id: 'personal', title: 'Personal Lists'},
|
|
|
|
{id: 'favorite', title: 'Favorite Lists', showBrowser: false},
|
|
|
|
{id: 'featured', title: 'Featured Lists', showBrowser: false},
|
|
|
|
{id: 'volumes', title: 'Local Volumes'}
|
|
|
|
],
|
|
|
|
edits: [
|
|
|
|
{id: 'personal', title: 'Personal Edits'},
|
|
|
|
{id: 'favorite', title: 'Favorite Edits', showBrowser: false},
|
|
|
|
{id: 'featured', title: 'Featured Edits', showBrowser: false}
|
|
|
|
],
|
|
|
|
texts: [
|
|
|
|
{id: 'personal', title: 'Personal Texts'},
|
|
|
|
{id: 'favorite', title: 'Favorite Texts', showBrowser: false},
|
|
|
|
{id: 'featured', title: 'Featured Texts', showBrowser: false}
|
|
|
|
]
|
|
|
|
},
|
2011-09-17 11:50:01 +00:00
|
|
|
sortKeys: Ox.map(data.site.itemKeys, function(key) {
|
2011-09-09 23:05:20 +00:00
|
|
|
return key.columnWidth ? key : null;
|
2011-09-03 13:19:00 +00:00
|
|
|
})
|
2011-09-09 23:05:20 +00:00
|
|
|
});
|
|
|
|
Ox.extend(pandora.user, {
|
|
|
|
infoRatio: 16 / 9,
|
|
|
|
sectionElement: 'buttons',
|
|
|
|
selectedMovies: [],
|
|
|
|
videoFormat: Ox.UI.getVideoFormat(pandora.site.video.formats)
|
|
|
|
});
|
|
|
|
// fixme: this should not happen
|
|
|
|
if (!pandora.user.ui.lists[pandora.user.ui.list]) {
|
2011-09-17 15:43:18 +00:00
|
|
|
Ox.print('THIS SHOULD NOT HAPPEN', pandora.site.user.ui.lists[''])
|
|
|
|
pandora.user.ui.lists[pandora.user.ui.list] = pandora.site.user.ui.lists[''];
|
2011-09-09 23:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (data.user.level == 'guest' && $.browser.mozilla) {
|
|
|
|
pandora.user.ui.theme = 'classic';
|
|
|
|
}
|
|
|
|
|
|
|
|
pandora.URL.parse();
|
|
|
|
window.onpopstate = function(event) {
|
|
|
|
pandora.URL.update();
|
|
|
|
};
|
|
|
|
|
|
|
|
Ox.UI.hideLoadingScreen();
|
|
|
|
|
|
|
|
Ox.Theme(pandora.user.ui.theme);
|
|
|
|
pandora.$ui.appPanel = pandora.ui.appPanel().display();
|
|
|
|
|
|
|
|
Ox.Request.requests() && pandora.$ui.loadingIcon.start();
|
|
|
|
pandora.$ui.body.ajaxStart(pandora.$ui.loadingIcon.start);
|
|
|
|
pandora.$ui.body.ajaxStop(pandora.$ui.loadingIcon.stop);
|
|
|
|
|
|
|
|
pandora.site.sectionButtonsWidth = pandora.$ui.sectionButtons.width() + 8;
|
|
|
|
|
|
|
|
}, '/static/');
|
2011-01-14 09:54:35 +00:00
|
|
|
}
|
2011-09-09 23:05:20 +00:00
|
|
|
});
|
2011-01-03 23:39:10 +00:00
|
|
|
|
2011-09-09 23:05:20 +00:00
|
|
|
function loadResources(json, callback, prefix) {
|
|
|
|
prefix = prefix || '';
|
|
|
|
$.getJSON(json, function(files) {
|
|
|
|
var promises = [];
|
|
|
|
files.forEach(function(file) {
|
|
|
|
// fixme: opera doesnt fire onload for svg
|
|
|
|
// fixme: we don't have any svgs, right?
|
|
|
|
if ($.browser.opera && Ox.endsWith(file, '.svg')) {
|
|
|
|
return;
|
2011-04-20 18:52:15 +00:00
|
|
|
}
|
2011-09-09 23:05:20 +00:00
|
|
|
var dfd = new $.Deferred();
|
|
|
|
promises.push(dfd.promise());
|
|
|
|
Ox.loadFile(prefix + file, function() {
|
|
|
|
dfd.resolve();
|
2011-05-25 19:42:45 +00:00
|
|
|
});
|
2011-09-09 23:05:20 +00:00
|
|
|
});
|
|
|
|
$.when.apply(null, promises)
|
|
|
|
.done(function() {
|
|
|
|
callback();
|
|
|
|
})
|
|
|
|
.fail(function() {
|
|
|
|
throw new Error('File not found.')
|
2011-05-25 19:42:45 +00:00
|
|
|
});
|
2011-09-09 23:05:20 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function resizeWindow() {
|
|
|
|
pandora.resizeFolders();
|
|
|
|
if (!pandora.user.ui.item) {
|
|
|
|
pandora.$ui.list.size();
|
|
|
|
pandora.resizeGroups(pandora.$ui.rightPanel.width());
|
|
|
|
if (pandora.user.ui.listView == 'map') {
|
|
|
|
pandora.$ui.map.resize();
|
2011-01-17 21:12:52 +00:00
|
|
|
}
|
2011-09-09 23:05:20 +00:00
|
|
|
} else {
|
|
|
|
//Ox.print('pandora.$ui.window.resize');
|
|
|
|
pandora.$ui.browser.scrollToSelection();
|
|
|
|
pandora.user.ui.itemView == 'info' && pandora.$ui.item.resize();
|
|
|
|
pandora.user.ui.itemView == 'player' && pandora.$ui.player.options({
|
|
|
|
// fixme: duplicated
|
|
|
|
height: pandora.$ui.contentPanel.size(1),
|
|
|
|
width: pandora.$ui.document.width() - pandora.$ui.mainPanel.size(0) - 1
|
|
|
|
});
|
|
|
|
pandora.user.ui.itemView == 'timeline' && pandora.$ui.editor.options({
|
|
|
|
// fixme: duplicated
|
|
|
|
height: pandora.$ui.contentPanel.size(1),
|
|
|
|
width: pandora.$ui.document.width() - pandora.$ui.mainPanel.size(0) - 1
|
|
|
|
});
|
2011-06-07 03:17:36 +00:00
|
|
|
}
|
2011-09-09 23:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function unloadWindow() {
|
|
|
|
// fixme: ajax request has to have async set to false for this to work
|
|
|
|
pandora.user.ui.section == 'items' &&
|
|
|
|
['player', 'timeline'].indexOf(pandora.user.ui.itemView) > -1 &&
|
|
|
|
pandora.user.ui.item &&
|
|
|
|
pandora.UI.set(
|
|
|
|
'videoPosition|' + pandora.user.ui.item,
|
|
|
|
pandora.$ui[
|
|
|
|
pandora.user.ui.itemView == 'player' ? 'player' : 'editor'
|
|
|
|
].options('position')
|
|
|
|
);
|
|
|
|
}
|
2011-09-03 13:19:00 +00:00
|
|
|
|
2011-05-25 19:42:45 +00:00
|
|
|
});
|