pandora/static/js/onloadDialog.js

84 lines
2.5 KiB
JavaScript
Raw Normal View History

2012-05-26 14:38:15 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
'use strict';
pandora.ui.onloadDialog = function() {
var dialogHeight = Math.round((window.innerHeight - 48) * 0.75),
dialogWidth = Math.round(window.innerWidth * 0.75),
$input = Ox.Input({
height: dialogHeight - 32,
id: 'onload',
2013-05-09 10:13:58 +00:00
placeholder: Ox._('/*\nAny JavaScript you paste here will run on load.\n'
+ 'If you ever need to manually change or remove it, '
2013-05-09 10:13:58 +00:00
+ 'you can do so by setting localStorage["pandora.onload"] in the console.\n*/'),
type: 'textarea',
value: localStorage['pandora.onload'] || '',
width: dialogWidth - 32
})
.css({margin: '16px'}),
2012-05-26 14:38:15 +00:00
that = Ox.Dialog({
buttons: [
Ox.Button({
2013-05-09 10:13:58 +00:00
title: Ox._('Clear')
2012-05-26 14:38:15 +00:00
})
.css({margin: '4px 4px 4px 0'})
.bindEvent({
click: function() {
clear();
}
}),
Ox.Button({
id: 'done',
2013-05-09 10:13:58 +00:00
title: Ox._('Done'),
2012-05-26 14:38:15 +00:00
width: 48
}).bindEvent({
click: function() {
that.close();
}
})
],
closeButton: true,
content: $input,
2012-05-26 14:38:15 +00:00
height: dialogHeight,
maximizeButton: true,
minHeight: 256,
minWidth: 512,
removeOnClose: true,
2013-05-09 10:13:58 +00:00
title: Ox._('Run Script on Load'),
2012-05-26 14:38:15 +00:00
width: dialogWidth
})
.bindEvent({
resize: resize
});
function resize(data) {
dialogHeight = data.height;
dialogWidth = data.width;
$input.options({
height: dialogHeight - 32,
width: dialogWidth - 32
2012-05-26 14:38:15 +00:00
});
}
function clear() {
delete localStorage['pandora.onload'];
$input.options({value: ''});
2012-05-26 14:38:15 +00:00
}
that.superClose = that.close;
that.close = function() {
var value = $input.value();
2012-06-10 18:31:02 +00:00
if (value) {
2012-05-26 14:38:15 +00:00
localStorage['pandora.onload'] = value;
} else {
delete localStorage['pandora.onload'];
}
that.superClose();
};
return that;
};