adding site section
This commit is contained in:
parent
5a1848960e
commit
e826f29bc4
4 changed files with 466 additions and 329 deletions
|
@ -72,7 +72,7 @@
|
|||
{"id": "news", "title": "News"},
|
||||
{"id": "tour", "title": "Take a Tour"},
|
||||
{"id": "faq", "title": "Frequently Asked Questions"},
|
||||
{"id": "tos", "title": "Terms of Service"}
|
||||
{"id": "terms", "title": "Terms of Service"}
|
||||
],
|
||||
"sortKeys": [
|
||||
{"id": "title", "title": "Title", "width": 180, "removable": false, "type": "title"},
|
||||
|
@ -127,7 +127,7 @@
|
|||
{"id": "pixels"}
|
||||
],
|
||||
"user": {
|
||||
"group": "guest",
|
||||
"level": "guest",
|
||||
"lists": {
|
||||
"history": [
|
||||
{"id": "all_movies", "title": "All Movies", "query": {}}
|
||||
|
|
|
@ -42,6 +42,7 @@ if settings.DEBUG:
|
|||
urlpatterns += patterns('',
|
||||
(r'^.*?embed$', 'app.views.embed'),
|
||||
(r'^[A-Z0-9].*$', 'app.views.index'),
|
||||
(r'^[a-z0-9].+$', 'app.views.index'),
|
||||
(r'^$', 'app.views.index'),
|
||||
)
|
||||
|
||||
|
|
|
@ -95,7 +95,10 @@ def get_user_json(user):
|
|||
result = {}
|
||||
for key in ('username', ):
|
||||
result[key] = getattr(user, key)
|
||||
result['admin'] = user.is_staff
|
||||
if user.is_staff:
|
||||
result['level'] = 'admin'
|
||||
else:
|
||||
result['level'] = 'user'
|
||||
result['groups'] = [g.name for g in user.groups.all()]
|
||||
result['preferences'] = profile.get_preferences()
|
||||
result['ui'] = profile.get_ui()
|
||||
|
|
|
@ -21,15 +21,26 @@ var pandora = new Ox.App({
|
|||
ui: {
|
||||
sectionFolders: {
|
||||
site: $.merge([
|
||||
{id: "site", title: "Site"},
|
||||
{id: "user", title: "User"}
|
||||
], data.user.group == 'admin' ? [
|
||||
{id: "admin", title: "Admin"}
|
||||
{id: 'site', title: 'Site', items: $.merge([
|
||||
{id: 'home', title: 'Home'}
|
||||
], $.merge(data.config.sitePages, [
|
||||
{id: 'software', title: 'Software'},
|
||||
{id: 'help', title: 'Help'}
|
||||
]))},
|
||||
{id: 'user', title: 'User', items: [
|
||||
{id: 'preferences', title: 'Preferences'},
|
||||
{id: 'archives', title: 'Archives'}
|
||||
]}
|
||||
], data.user.level == 'admin' ? [
|
||||
{id: 'admin', title: 'Admin', items: [
|
||||
{id: 'statistics', title: 'Statistics'},
|
||||
{id: 'users', title: 'Users'}
|
||||
]}
|
||||
] : []),
|
||||
items: [
|
||||
{id: "personal", title: "Personal Lists"},
|
||||
{id: "favorite", title: "Favorite Lists", showBrowser: false},
|
||||
{id: "featured", title: "Featured Lists", showBrowser: false}
|
||||
{id: 'personal', title: 'Personal Lists'},
|
||||
{id: 'favorite', title: 'Favorite Lists', showBrowser: false},
|
||||
{id: 'featured', title: 'Featured Lists', showBrowser: false}
|
||||
],
|
||||
},
|
||||
infoRatio: 16 / 9,
|
||||
|
@ -46,7 +57,7 @@ var pandora = new Ox.App({
|
|||
app.config.user.ui.theme = 'classic'
|
||||
}
|
||||
|
||||
if (app.user.group == 'guest') {
|
||||
if (app.user.level == 'guest') {
|
||||
app.user = $.extend({}, app.config.user);
|
||||
}
|
||||
|
||||
|
@ -948,6 +959,52 @@ var pandora = new Ox.App({
|
|||
},
|
||||
folderList: function(id) {
|
||||
var i = Ox.getPositionById(app.ui.sectionFolders[app.user.ui.section], id),
|
||||
that;
|
||||
if (app.user.ui.section == 'site') {
|
||||
that = new Ox.TextList({
|
||||
columns: [
|
||||
{
|
||||
format: function() {
|
||||
return $('<img>').attr({
|
||||
src: 'static/oxjs/build/png/ox.ui/icon16.png'
|
||||
});
|
||||
},
|
||||
id: 'id',
|
||||
operator: '+',
|
||||
unique: true,
|
||||
visible: true,
|
||||
width: 16
|
||||
},
|
||||
{
|
||||
id: 'title',
|
||||
operator: '+',
|
||||
visible: true,
|
||||
width: app.user.ui.sidebarSize - 16
|
||||
}
|
||||
],
|
||||
max: 1,
|
||||
min: 1,
|
||||
request: function(data, callback) {
|
||||
var result = {data: {}};
|
||||
if (!data.range) {
|
||||
result.data.items = Ox.getObjectById(app.ui.sectionFolders.site, id).items.length;
|
||||
} else {
|
||||
result.data.items = Ox.getObjectById(app.ui.sectionFolders.site, id).items;
|
||||
}
|
||||
callback(result);
|
||||
},
|
||||
sort: [{key: '', operator: ''}]
|
||||
})
|
||||
.bindEvent({
|
||||
select: function(event, data) {
|
||||
// fixme: duplicated
|
||||
$.each(app.$ui.folderList, function(id_, $list) {
|
||||
id != id_ && $list.options('selected', []);
|
||||
})
|
||||
URL.set((id == 'admin' ? 'admin/' : '' ) + data.ids[0]);
|
||||
},
|
||||
});
|
||||
} else if (app.user.ui.section == 'items') {
|
||||
that = new Ox.TextList({
|
||||
columns: [
|
||||
{
|
||||
|
@ -1053,7 +1110,7 @@ var pandora = new Ox.App({
|
|||
sort: [
|
||||
{key: 'position', operator: '+'}
|
||||
],
|
||||
sortable: id == 'personal' || id == 'favorite' || app.user.group == 'admin'
|
||||
sortable: id == 'personal' || id == 'favorite' || app.user.level == 'admin'
|
||||
})
|
||||
.css({
|
||||
left: 0,
|
||||
|
@ -1121,7 +1178,7 @@ var pandora = new Ox.App({
|
|||
Ox.Request.emptyCache(); // fixme: remove
|
||||
$list.reloadList();
|
||||
});
|
||||
} else if (id == 'featured' && app.user.group == 'admin') {
|
||||
} else if (id == 'featured' && app.user.level == 'admin') {
|
||||
pandora.api.editList({
|
||||
id: data.ids[0],
|
||||
status: 'public'
|
||||
|
@ -1168,7 +1225,7 @@ var pandora = new Ox.App({
|
|||
})
|
||||
URL.set('?find=list:' + data.ids[0]);
|
||||
} else {
|
||||
URL.set('');
|
||||
URL.set('?find=');
|
||||
}
|
||||
},
|
||||
submit: function(event, data) {
|
||||
|
@ -1183,6 +1240,7 @@ var pandora = new Ox.App({
|
|||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
return that;
|
||||
},
|
||||
folders: function() {
|
||||
|
@ -1199,22 +1257,38 @@ var pandora = new Ox.App({
|
|||
app.$ui.folderBrowser = {};
|
||||
app.$ui.folderList = {};
|
||||
if (app.user.ui.section == 'site') {
|
||||
/*
|
||||
$.each(app.ui.sectionFolders.site, function(i, folder) {
|
||||
var extras = [];
|
||||
var height = (Ox.getObjectById(app.ui.sectionFolders.site, folder.id).items.length * 16);
|
||||
app.$ui.folder[i] = new Ox.CollapsePanel({
|
||||
id: id,
|
||||
collapsed: !app.user.ui.showSection[id],
|
||||
extras: extras,
|
||||
id: folder.id,
|
||||
collapsed: !app.user.ui.showFolder.site[folder.id],
|
||||
size: 16,
|
||||
title: Ox.getObjectById(app.config.sections, id).title
|
||||
title: folder.title
|
||||
})
|
||||
.bindEvent({
|
||||
toggle: function(event, data) {
|
||||
|
||||
}
|
||||
});
|
||||
*/
|
||||
//alert(JSON.stringify(Ox.getObjectById(app.ui.sectionFolders.site, folder.id)))
|
||||
app.$ui.folder[i].$content.css({
|
||||
height: height + 'px'
|
||||
})
|
||||
//.appendTo(that);
|
||||
app.$ui.folderList[folder.id] = ui.folderList(folder.id)
|
||||
.css({
|
||||
height: height + 'px'
|
||||
})
|
||||
.appendTo(app.$ui.folder[i].$content);
|
||||
app.$ui.folder.forEach(function($folder) {
|
||||
that.append($folder);
|
||||
});
|
||||
});
|
||||
//resizeFolders();
|
||||
} else if (app.user.ui.section == 'items') {
|
||||
$.each(app.ui.sectionFolders.items, function(i, folder) {
|
||||
var extras;
|
||||
if (folder.id == 'personal' && app.user.group != 'guest') {
|
||||
if (folder.id == 'personal' && app.user.level != 'guest') {
|
||||
extras = [new Ox.Select({
|
||||
items: [
|
||||
{ id: 'new', title: 'New List...' },
|
||||
|
@ -1254,7 +1328,7 @@ var pandora = new Ox.App({
|
|||
}
|
||||
}
|
||||
})];
|
||||
} else if (folder.id == 'favorite' && app.user.group != 'guest') {
|
||||
} else if (folder.id == 'favorite' && app.user.level != 'guest') {
|
||||
extras = [new Ox.Button({
|
||||
selectable: true,
|
||||
style: 'symbol',
|
||||
|
@ -1278,7 +1352,7 @@ var pandora = new Ox.App({
|
|||
resizeFolders();
|
||||
}
|
||||
})];
|
||||
} else if (folder.id == 'featured' && app.user.group == 'admin') {
|
||||
} else if (folder.id == 'featured' && app.user.level == 'admin') {
|
||||
extras = [new Ox.Button({
|
||||
selectable: true,
|
||||
style: 'symbol',
|
||||
|
@ -1351,7 +1425,7 @@ var pandora = new Ox.App({
|
|||
function init(event, data) {
|
||||
Ox.print('init', i, counter)
|
||||
if (++counter == 3) {
|
||||
$.each(app.$ui.folder, function(i, $folder) {
|
||||
app.$ui.folder.forEach(function($folder) {
|
||||
that.append($folder);
|
||||
});
|
||||
resizeFolders();
|
||||
|
@ -2141,7 +2215,7 @@ var pandora = new Ox.App({
|
|||
height = imageHeight * width / imageWidth;
|
||||
app.ui.infoRatio = width / height;
|
||||
!app.user.ui.showInfo && app.$ui.leftPanel.css({bottom: -height - 16});
|
||||
app.$ui.leftPanel.size('infoPanel', height + 16);
|
||||
app.$ui.leftPanel.size(2, height + 16);
|
||||
$still.css({
|
||||
position: 'absolute',
|
||||
left: 0,
|
||||
|
@ -2227,7 +2301,7 @@ var pandora = new Ox.App({
|
|||
return that;
|
||||
},
|
||||
mainMenu: function() {
|
||||
var isGuest = app.user.group == 'guest',
|
||||
var isGuest = app.user.level == 'guest',
|
||||
that = new Ox.MainMenu({
|
||||
extras: [
|
||||
$('<div>').html('beta').css({marginRight: '8px', color: 'rgb(128, 128, 128)'}),
|
||||
|
@ -2244,7 +2318,7 @@ var pandora = new Ox.App({
|
|||
{ id: 'news', title: app.config.site.name + ' News' },
|
||||
{ id: 'tour', title: 'Take a Tour' },
|
||||
{ id: 'faq', title: 'Frequently Asked Questions' },
|
||||
{ id: 'tos', title: 'Terms of Service' },
|
||||
{ id: 'terms', title: 'Terms of Service' },
|
||||
{},
|
||||
{ id: 'software', title: 'Software', items: [
|
||||
{ id: 'about', title: 'About' },
|
||||
|
@ -2454,7 +2528,7 @@ var pandora = new Ox.App({
|
|||
} else if (data.id == 'register') {
|
||||
app.$ui.accountDialog = ui.accountDialog('register').open();
|
||||
} else if (data.id == 'loginlogout') {
|
||||
app.$ui.accountDialog = (app.user.group == 'guest' ?
|
||||
app.$ui.accountDialog = (app.user.level == 'guest' ?
|
||||
ui.accountDialog('login') : ui.accountLogoutDialog()).open();
|
||||
} else if (data.id == 'places') {
|
||||
var $manage = new Ox.SplitPanel({
|
||||
|
@ -2803,7 +2877,17 @@ var pandora = new Ox.App({
|
|||
return that;
|
||||
},
|
||||
rightPanel: function() {
|
||||
var that = new Ox.SplitPanel({
|
||||
var that;
|
||||
if (app.user.ui.section == 'site') {
|
||||
that = new Ox.Element()
|
||||
.html(app.user.ui.sitePage)
|
||||
.bindEvent({
|
||||
resize: function(event, data) {
|
||||
|
||||
}
|
||||
});
|
||||
} else if (app.user.ui.section == 'items') {
|
||||
that = new Ox.SplitPanel({
|
||||
elements: [
|
||||
{
|
||||
element: app.$ui.toolbar = ui.toolbar(),
|
||||
|
@ -2820,7 +2904,8 @@ var pandora = new Ox.App({
|
|||
id: 'rightPanel',
|
||||
orientation: 'vertical'
|
||||
})
|
||||
.bindEvent('resize', function(event, data) {
|
||||
.bindEvent({
|
||||
resize: function(event, data) {
|
||||
//Ox.print('???? resize rightPanel', event, data)
|
||||
if (!app.user.ui.item) {
|
||||
resizeGroups(data);
|
||||
|
@ -2837,7 +2922,9 @@ var pandora = new Ox.App({
|
|||
width: data - (app.user.ui.showAnnotations * app.user.ui.annotationsSize) - 1
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
return that;
|
||||
},
|
||||
sectionbar: function(mode) {
|
||||
|
@ -2867,10 +2954,21 @@ var pandora = new Ox.App({
|
|||
}).css({
|
||||
float: 'left',
|
||||
margin: '4px'
|
||||
})
|
||||
.bindEvent({
|
||||
change: function(event, data) {
|
||||
var section = data.selected[0];
|
||||
if (section == 'site') {
|
||||
URL.set(app.user.ui.sitePage);
|
||||
} else if (section == 'items') {
|
||||
URL.set(Query.toString());
|
||||
}
|
||||
}
|
||||
});
|
||||
return that;
|
||||
},
|
||||
sectionSelect: function() {
|
||||
// fixme: duplicated
|
||||
var that = new Ox.Select({
|
||||
id: 'sectionSelect',
|
||||
items: [
|
||||
|
@ -2882,6 +2980,9 @@ var pandora = new Ox.App({
|
|||
}).css({
|
||||
float: 'left',
|
||||
margin: '4px'
|
||||
})
|
||||
.bindEvent({
|
||||
|
||||
});
|
||||
return that;
|
||||
},
|
||||
|
@ -3107,13 +3208,21 @@ var pandora = new Ox.App({
|
|||
|
||||
function getFoldersHeight() {
|
||||
var height = 48;
|
||||
app.ui.sectionFolders[app.user.ui.section].forEach(function(folder, i) {
|
||||
height += app.user.ui.showFolder[app.user.ui.section][folder.id] * (
|
||||
!!folder.showBrowser * 40 + folder.items * 16
|
||||
);
|
||||
Ox.print('h', height)
|
||||
});
|
||||
/*
|
||||
$.each(app.user.ui.showFolder[app.user.ui.section], function(id, show) {
|
||||
var i = Ox.getPositionById(app.ui.sectionFolders[app.user.ui.section], id);
|
||||
height += show * app.ui.sectionFolders[app.user.ui.section][i].items * 16;
|
||||
if (app.ui.sectionFolders[app.user.ui.section][i].showBrowser) {
|
||||
height += show * 40;
|
||||
}
|
||||
height += show * (
|
||||
app.ui.sectionFolders[app.user.ui.section][i].showBrowser * 40 +
|
||||
app.ui.sectionFolders[app.user.ui.section][i].items * 16
|
||||
);
|
||||
});
|
||||
*/
|
||||
return height;
|
||||
}
|
||||
|
||||
|
@ -3124,7 +3233,6 @@ var pandora = new Ox.App({
|
|||
if (getFoldersHeight() > app.$ui.leftPanel.height() - 24 - 1 - app.$ui.info.height()) {
|
||||
width -= app.ui.scrollbarSize;
|
||||
}
|
||||
Ox.print('width', width)
|
||||
return width;
|
||||
}
|
||||
|
||||
|
@ -3202,20 +3310,28 @@ var pandora = new Ox.App({
|
|||
|
||||
function resizeFolders() {
|
||||
var width = getFoldersWidth(),
|
||||
columnWidth = {};
|
||||
if (app.user.ui.section == 'site') {
|
||||
columnWidth.title = width - 16;
|
||||
} else if (app.user.ui.section == 'items') {
|
||||
columnWidth = {user: parseInt((width - 88) * 0.4)};
|
||||
columnWidth.name = (width - 88) - columnWidth.user;
|
||||
}
|
||||
//Ox.print('sectionsWidth', width)
|
||||
$.each(app.$ui.folderList, function(id, $list) {
|
||||
var height,
|
||||
i = Ox.getPositionById(app.ui.sectionFolders[app.user.ui.section], id);
|
||||
//alert(app.user.ui.section + ' ' + id + ' ' + i)
|
||||
var i = Ox.getPositionById(app.ui.sectionFolders[app.user.ui.section], id);
|
||||
app.$ui.folder[i].css({width: width + 'px'});
|
||||
$list.css({width: width + 'px'});
|
||||
Ox.print('...', id, $list.options())
|
||||
if (app.user.ui.section == 'site') {
|
||||
$list.resizeColumn('title', columnWidth.title);
|
||||
} else if (app.user.ui.section == 'items') {
|
||||
if (app.ui.sectionFolders[app.user.ui.section][i].showBrowser) {
|
||||
$list.resizeColumn('user', columnWidth.user)
|
||||
.resizeColumn('name', columnWidth.name);
|
||||
} else {
|
||||
$list.resizeColumn(i == 1 ? 'id' : 'name', width - 88);
|
||||
$list.resizeColumn(id == 'favorite' ? 'id' : 'name', width - 88);
|
||||
}
|
||||
}
|
||||
if (!app.user.ui.showFolder[app.user.ui.section][id]) {
|
||||
app.$ui.folder[i].update();
|
||||
|
@ -3258,7 +3374,6 @@ var pandora = new Ox.App({
|
|||
},
|
||||
range: [0, 1]
|
||||
}, function(result) {
|
||||
alert(JSON.stringify(result))
|
||||
var folder, list;
|
||||
if (result.data.items.length) {
|
||||
list = result.data.items[0];
|
||||
|
@ -3504,12 +3619,23 @@ var pandora = new Ox.App({
|
|||
item: ''
|
||||
});
|
||||
},
|
||||
'^(|about|faq|home|news|software|terms|tour)$': function(url) {
|
||||
'^(|about|archives|faq|help|home|news|preferences|software|terms|tour)$': function(url) {
|
||||
UI.set({
|
||||
section: 'site',
|
||||
sitePage: url || 'home'
|
||||
});
|
||||
},
|
||||
'^admin': function(url) {
|
||||
var split = url.split('/'),
|
||||
section = new RegExp(
|
||||
'^ˆ(statistics|users)$'
|
||||
)(split[1]);
|
||||
section = section ? section[0] : 'users';
|
||||
UI.set({
|
||||
section: 'site',
|
||||
sitePage: url
|
||||
})
|
||||
},
|
||||
'^(find)$': function() {
|
||||
Query.fromString('?find='); // fixme: silly hack
|
||||
UI.set({
|
||||
|
@ -3528,7 +3654,9 @@ var pandora = new Ox.App({
|
|||
var split = url.split('/'),
|
||||
item = split[0],
|
||||
view = new RegExp(
|
||||
'^(calendar|clips|files|info|map|player|statistics|timeline)$'
|
||||
'^(' + $.map(app.config.itemViews, function(v) {
|
||||
return v.id
|
||||
}).join('|') + ')$'
|
||||
)(split[1]);
|
||||
view = view ? view[0] : app.user.ui.itemView;
|
||||
UI.set({
|
||||
|
@ -3540,11 +3668,6 @@ var pandora = new Ox.App({
|
|||
'^texts$': function() {
|
||||
UI.set({
|
||||
section: 'texts'
|
||||
});
|
||||
},
|
||||
'^admin$': function() {
|
||||
UI.set({
|
||||
section: 'admin'
|
||||
});
|
||||
}
|
||||
};
|
||||
|
@ -3577,7 +3700,16 @@ var pandora = new Ox.App({
|
|||
|
||||
update: function() {
|
||||
URL.parse();
|
||||
if (app.user.ui.section == 'items') {
|
||||
if (app.user.ui.section == 'site') {
|
||||
if (old.user.ui.section == 'site') {
|
||||
app.$ui.mainPanel.replace(1, app.$ui.rightPanel = ui.rightPanel());
|
||||
} else {
|
||||
app.$ui.appPanel.replace(1, app.$ui.mainPanel = ui.mainPanel());
|
||||
}
|
||||
} else if (app.user.ui.section == 'items') {
|
||||
if (old.user.ui.section == 'site') {
|
||||
app.$ui.appPanel.replace(1, app.$ui.mainPanel = ui.mainPanel());
|
||||
} else {
|
||||
if (!old.user.ui.item) {
|
||||
if (!app.user.ui.item) {
|
||||
app.$ui.mainPanel.replace(1, app.$ui.rightPanel = ui.rightPanel());
|
||||
|
@ -3602,6 +3734,7 @@ var pandora = new Ox.App({
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
delete old.user.ui;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue