pandora/static/js/entityDialog.js
2014-11-20 19:48:42 +00:00

59 lines
No EOL
1.3 KiB
JavaScript

// vim: et:ts=4:sw=4:sts=4:ft=javascript
'use strict';
pandora.ui.entityDialog = function(options) {
var ui = pandora.user.ui,
$content = Ox.Element(),
that = Ox.Dialog({
closeButton: true,
content: $content,
fixedSize: true,
focus: false,
height: 384,
padding: 0,
removeOnClose: true,
title: '',
width: 512,
})
.bindEvent({
close: function() {
pandora.UI.set({entity: ''});
delete pandora.$ui.entityDialog;
},
pandora_entity: function(data) {
if (data.value) {
setTitle();
setContent();
} else {
that.close();
}
}
});
setTitle();
setContent();
function setContent() {
pandora.entity({
id: ui.entity,
view: 'entity'
}, function(html) {
$content.html(html);
});
}
function setTitle() {
pandora.api.getEntity({
id: ui.entity
}, function(result) {
that.options({title: result.data.name});
});
}
return that;
};