add onload dialog to edit onload code

This commit is contained in:
j 2012-05-26 14:38:15 +00:00
parent 2b38d61df8
commit 9ed863c6a6
2 changed files with 87 additions and 0 deletions

View file

@ -149,6 +149,7 @@ pandora.ui.mainMenu = function() {
pandora.site.capabilities.canSeeDebugMenu[pandora.user.level]
? [
{ id: 'debugMenu', title: 'Debug', items: [
{ id: 'onload', title: 'Run on load...'},
{ id: 'logs', title: 'View Logs...'},
{ id: 'clearcache', title: 'Clear Cache'},
{ id: 'reloadapplication', title: 'Reload Application'},
@ -319,6 +320,8 @@ pandora.ui.mainMenu = function() {
filters: pandora.site.user.ui.filters
});
pandora.$ui.contentPanel.replaceElement(0, pandora.$ui.browser = pandora.ui.browser());
} else if (data.id == 'onload') {
pandora.$ui.onloadDialog = pandora.ui.onloadDialog().open();
} else if (data.id == 'logs') {
pandora.$ui.logsDialog = pandora.ui.logsDialog().open();
} else if (data.id == 'clearcache') {

View file

@ -0,0 +1,84 @@
// vim: et:ts=4:sw=4:sts=4:ft=javascript
'use strict';
pandora.ui.onloadDialog = function() {
var
dialogHeight = Math.round((window.innerHeight - 48) * 0.9),
dialogWidth = Math.round(window.innerWidth * 0.9),
$text = Ox.Input({
height: dialogHeight - 8,
id: 'onload',
placeholder: 'Paste onload code here',
type: 'textarea',
value: localStorage['pandora.onload'] || '',
width: dialogWidth - 8
}),
that = Ox.Dialog({
buttons: [
Ox.Button({
title: 'Clear'
})
.css({margin: '4px 4px 4px 0'})
.bindEvent({
click: function() {
clear();
}
}),
Ox.Button({
id: 'done',
title: 'Done',
width: 48
}).bindEvent({
click: function() {
that.close();
}
})
],
closeButton: true,
content: $text,
height: dialogHeight,
maximizeButton: true,
minHeight: 256,
minWidth: 512,
padding: 0,
removeOnClose: true,
title: 'Manage Users',
width: dialogWidth
})
.bindEvent({
resize: resize
});
function resize(data) {
dialogHeight = data.height;
dialogWidth = data.width;
$text.options({
height: dialogHeight - 8,
width: dialogWidth - 8
});
}
function clear() {
delete localStorage['pandora.onload'];
$text.options({value: ''});
}
that.superClose = that.close;
that.close = function() {
var value = $text.value();
if(value) {
localStorage['pandora.onload'] = value;
} else {
delete localStorage['pandora.onload'];
}
that.superClose();
};
return that;
};