forked from 0x2620/pandora
update preferences dialog
This commit is contained in:
parent
283c6e6302
commit
5a849226c0
1 changed files with 47 additions and 37 deletions
|
@ -6,62 +6,72 @@ pandora.ui.preferencesDialog = function() {
|
||||||
];
|
];
|
||||||
var $tabPanel = Ox.TabPanel({
|
var $tabPanel = Ox.TabPanel({
|
||||||
content: function(id) {
|
content: function(id) {
|
||||||
var content = Ox.Element().css({padding: '16px', overflowY: 'auto'});
|
var $content = Ox.Element()
|
||||||
|
.css({overflowY: 'auto'})
|
||||||
|
.append(
|
||||||
|
$('<img>')
|
||||||
|
.attr({src: '/static/png/icon64.png'})
|
||||||
|
.css({position: 'absolute', left: '16px', top: '16px'})
|
||||||
|
);
|
||||||
if (id == 'account') {
|
if (id == 'account') {
|
||||||
content.append(Ox.FormElementGroup({
|
$content.append(
|
||||||
elements: Ox.values(Ox.map(pandora.user.preferences, function(v, k) {
|
Ox.Form({
|
||||||
return Ox.Input({
|
items: [
|
||||||
id: k,
|
Ox.Input({
|
||||||
width: 400,
|
disabled: true,
|
||||||
label: Ox.toTitleCase(k),
|
id: 'username',
|
||||||
value: v
|
label: 'Username',
|
||||||
});
|
labelWidth: 120,
|
||||||
}))
|
value: pandora.user.username,
|
||||||
}));
|
width: 320
|
||||||
|
}),
|
||||||
|
Ox.Input({
|
||||||
|
id: 'password',
|
||||||
|
label: 'New Passowrd',
|
||||||
|
labelWidth: 120,
|
||||||
|
type: 'password',
|
||||||
|
width: 320
|
||||||
|
}),
|
||||||
|
Ox.Input({
|
||||||
|
id: 'email',
|
||||||
|
label: 'E-Mail Address',
|
||||||
|
labelWidth: 120,
|
||||||
|
value: pandora.user.email,
|
||||||
|
width: 320
|
||||||
|
})
|
||||||
|
]
|
||||||
|
})
|
||||||
|
.css({position: 'absolute', left: '96px', top: '16px'})
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
|
/*
|
||||||
content.append(Ox.FormElementGroup({
|
content.append(Ox.FormElementGroup({
|
||||||
elements: [
|
elements: [
|
||||||
Ox.Checkbox({
|
Ox.Checkbox({
|
||||||
checked: true ,
|
checked: true ,
|
||||||
id: 'showEpisodes',
|
id: 'showEpisodes',
|
||||||
title: 'Show Episodes',
|
title: 'Show Episodes',
|
||||||
width: 400
|
width: 320
|
||||||
}),
|
}),
|
||||||
Ox.Checkbox({
|
Ox.Checkbox({
|
||||||
checked: true ,
|
checked: true ,
|
||||||
id: 'newsletter',
|
id: 'newsletter',
|
||||||
title: 'Receive Newsletter',
|
title: 'Receive Newsletter',
|
||||||
width: 400
|
width: 320
|
||||||
})
|
})
|
||||||
]
|
]
|
||||||
}));
|
}));
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
return Ox.SplitPanel({
|
return $content;
|
||||||
elements: [
|
|
||||||
{
|
|
||||||
element: Ox.Element()
|
|
||||||
.css({padding: '16px'})
|
|
||||||
.append(
|
|
||||||
$('<img>')
|
|
||||||
.attr({src: '/static/png/logo256.png'})
|
|
||||||
.css({width: '128px'})
|
|
||||||
),
|
|
||||||
size: 144
|
|
||||||
},
|
|
||||||
{
|
|
||||||
element: content
|
|
||||||
}
|
|
||||||
],
|
|
||||||
orientation: 'horizontal'
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
tabs: tabs
|
tabs: tabs
|
||||||
});
|
});
|
||||||
var $dialog = Ox.Dialog({
|
var $dialog = Ox.Dialog({
|
||||||
buttons: [
|
buttons: [
|
||||||
Ox.Button({
|
Ox.Button({
|
||||||
id: 'close',
|
id: 'done',
|
||||||
title: 'Close'
|
title: 'Done'
|
||||||
}).bindEvent({
|
}).bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
$dialog.close();
|
$dialog.close();
|
||||||
|
@ -71,12 +81,12 @@ pandora.ui.preferencesDialog = function() {
|
||||||
],
|
],
|
||||||
//closeButton: true,
|
//closeButton: true,
|
||||||
content: $tabPanel,
|
content: $tabPanel,
|
||||||
height: Math.round((window.innerHeight - 24) * 0.5),
|
height: 192,
|
||||||
//maximizeButton: true,
|
//maximizeButton: true,
|
||||||
minHeight: 256,
|
minHeight: 192,
|
||||||
minWidth: 640,
|
minWidth: 432,
|
||||||
title: 'Preferences',
|
title: 'Preferences',
|
||||||
width: Math.round(window.innerWidth * 0.5),
|
width: 432
|
||||||
});
|
});
|
||||||
|
|
||||||
return $dialog;
|
return $dialog;
|
||||||
|
|
Loading…
Reference in a new issue