add language dialog for guests
This commit is contained in:
parent
722b9fb418
commit
6f832e29db
1 changed files with 62 additions and 0 deletions
62
static/js/appearanceDialog.js
Normal file
62
static/js/appearanceDialog.js
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
pandora.ui.appearanceDialog = function() {
|
||||||
|
|
||||||
|
var that = pandora.ui.iconDialog({
|
||||||
|
buttons: [
|
||||||
|
Ox.Button({
|
||||||
|
id: 'done',
|
||||||
|
title: Ox._('Done')
|
||||||
|
}).bindEvent({
|
||||||
|
click: function() {
|
||||||
|
that.close();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
],
|
||||||
|
content: Ox.Form({
|
||||||
|
items: [
|
||||||
|
Ox.Select({
|
||||||
|
id: 'theme',
|
||||||
|
items: pandora.site.themes.map(function(theme) {
|
||||||
|
return {id: theme, title: Ox.Theme.getThemeData(theme).themeName}
|
||||||
|
}),
|
||||||
|
label: Ox._('Theme'),
|
||||||
|
labelWidth: 120,
|
||||||
|
value: pandora.user.ui.theme,
|
||||||
|
width: 320
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
change: function(data) {
|
||||||
|
pandora.UI.set({theme: data.value});
|
||||||
|
pandora.setTheme(data.value);
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
Ox.Select({
|
||||||
|
disabled: pandora.user.level != 'admin',
|
||||||
|
id: 'locale',
|
||||||
|
items: Object.keys(Ox.LOCALE_NAMES).map(function(locale) {
|
||||||
|
return {id: locale, title: Ox.LOCALE_NAMES[locale]}
|
||||||
|
}),
|
||||||
|
label: Ox._('Language'),
|
||||||
|
labelWidth: 120,
|
||||||
|
value: pandora.user.ui.locale,
|
||||||
|
width: 320
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
change: function(data) {
|
||||||
|
pandora.UI.set({locale: data.value});
|
||||||
|
pandora.setLocale(data.value, function() {
|
||||||
|
pandora.$ui.appPanel.reload();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
keys: {enter: 'done', escape: 'done'},
|
||||||
|
title: Ox._('Appearance'),
|
||||||
|
width: 432
|
||||||
|
});
|
||||||
|
|
||||||
|
return that;
|
||||||
|
|
||||||
|
};
|
Loading…
Reference in a new issue