update lists folders info dialogs for guests; disable list menu entries for guests

This commit is contained in:
rolux 2011-10-18 17:21:24 +00:00
parent af31caef5a
commit f97524cda7
2 changed files with 32 additions and 28 deletions

View file

@ -19,7 +19,7 @@ pandora.ui.folders = function() {
var extras; var extras;
if (folder.id == 'personal') { if (folder.id == 'personal') {
if (pandora.user.level == 'guest') { if (pandora.user.level == 'guest') {
extras = [infoButton('Personal Lists', 'To create and publish your own lists of movies, please sign up or sign in.')]; extras = [infoButton('Personal Lists', 'To create and share your own lists of movies, please sign up or sign in.')];
} else { } else {
extras = [Ox.Select({ extras = [Ox.Select({
items: [ items: [
@ -256,26 +256,30 @@ pandora.ui.folders = function() {
}).bindEvent({ }).bindEvent({
click: function() { click: function() {
var $dialog = Ox.Dialog({ var $dialog = Ox.Dialog({
buttons: Ox.merge([ buttons: Ox.merge(
Ox.Button({title: 'Close'}).bindEvent({ title != 'Featured Lists' ? [
click: function() { Ox.Button({title: 'Sign Up...'}).bindEvent({
$dialog.close(); click: function() {
} $dialog.close();
}) pandora.$ui.accountDialog = pandora.ui.accountDialog('signup').open();
], title != 'Featured Lists' ? [ }
Ox.Button({title: 'Sign Up'}).bindEvent({ }),
click: function() { Ox.Button({title: 'Sign In...'}).bindEvent({
$dialog.close(); click: function() {
pandora.$ui.accountDialog = pandora.ui.accountDialog('signup').open(); $dialog.close();
} pandora.$ui.accountDialog = pandora.ui.accountDialog('signin').open();
}), }
Ox.Button({title: 'Sign In'}).bindEvent({ }),
click: function() { {}
$dialog.close(); ] : [],
pandora.$ui.accountDialog = pandora.ui.accountDialog('signin').open(); [
} Ox.Button({title: 'Close'}).bindEvent({
}) click: function() {
] : []), $dialog.close();
}
})
]
),
content: Ox.Element() content: Ox.Element()
.append( .append(
$('<img>') $('<img>')

View file

@ -332,14 +332,14 @@ pandora.ui.mainMenu = function() {
}), }),
[ [
{}, {},
{ id: 'newlist', title: 'New List', keyboard: 'control n' }, { id: 'newlist', title: 'New List', disabled: isGuest, keyboard: 'control n' },
{ id: 'newlistfromselection', title: 'New List from Selection', disabled: ui.listSelection.length == 0, keyboard: 'shift control n' }, { id: 'newlistfromselection', title: 'New List from Selection', disabled: isGuest || ui.listSelection.length == 0, keyboard: 'shift control n' },
{ id: 'newsmartlist', title: 'New Smart List', keyboard: 'alt control n' }, { id: 'newsmartlist', title: 'New Smart List', disabled: isGuest, keyboard: 'alt control n' },
{ id: 'newsmartlistfromresults', title: 'New Smart List from Results', keyboard: 'shift alt control n' }, { id: 'newsmartlistfromresults', title: 'New Smart List from Results', disabled: isGuest, keyboard: 'shift alt control n' },
{}, {},
{ id: 'duplicatelist', title: 'Duplicate Selected List', disabled: !pandora.user.ui._list, keyboard: 'control d' }, { id: 'duplicatelist', title: 'Duplicate Selected List', disabled: isGuest || !pandora.user.ui._list, keyboard: 'control d' },
{ id: 'editlist', title: 'Edit Selected List...', disabled: !pandora.user.ui._list, keyboard: 'control e' }, { id: 'editlist', title: 'Edit Selected List...', disabled: isGuest || !pandora.user.ui._list, keyboard: 'control e' },
{ id: 'deletelist', title: 'Delete Selected List...', disabled: !pandora.user.ui._list, keyboard: 'delete' }, { id: 'deletelist', title: 'Delete Selected List...', disabled: isGuest || !pandora.user.ui._list, keyboard: 'delete' },
] ]
)}; )};
}; };