mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 07:03:24 +01:00
ModalDialogNotifier reimplemented
This commit is contained in:
parent
67ceede236
commit
1da6082906
@ -30,7 +30,6 @@ mindplot.DesignerKeyboard = new Class({
|
|||||||
},
|
},
|
||||||
|
|
||||||
initialize:function (designer) {
|
initialize:function (designer) {
|
||||||
//console.error("Re-impl required ....");
|
|
||||||
$assert(designer, "designer can not be null");
|
$assert(designer, "designer can not be null");
|
||||||
this._registerEvents(designer);
|
this._registerEvents(designer);
|
||||||
},
|
},
|
||||||
|
@ -17,85 +17,33 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
mindplot.widget.ModalDialogNotifier = new Class({
|
mindplot.widget.ModalDialogNotifier = new Class({
|
||||||
// Extends:MooDialog,
|
|
||||||
initialize: function () {
|
|
||||||
console.error("Re-impl required ....");
|
|
||||||
// this.parent(
|
|
||||||
// {
|
|
||||||
// closeButton:false,
|
|
||||||
// destroyOnClose:false,
|
|
||||||
// autoOpen:true,
|
|
||||||
// useEscKey:false,
|
|
||||||
// closeOnOverlayClick:false,
|
|
||||||
// title:"",
|
|
||||||
// onInitialize:function (wrapper) {
|
|
||||||
// wrapper.setStyle('opacity', 0);
|
|
||||||
// this.wrapper.setStyle('display', 'none');
|
|
||||||
// this.fx = new Fx.Morph(wrapper, {
|
|
||||||
// duration:100,
|
|
||||||
// transition:Fx.Transitions.Bounce.easeOut
|
|
||||||
// });
|
|
||||||
// },
|
|
||||||
//
|
|
||||||
// onBeforeOpen:function () {
|
|
||||||
// var panel = this._buildPanel();
|
|
||||||
// this.setContent(panel);
|
|
||||||
//
|
|
||||||
// this.overlay = new Overlay(this.options.inject, {
|
|
||||||
// duration:this.options.duration
|
|
||||||
// });
|
|
||||||
// if (this.options.closeOnOverlayClick)
|
|
||||||
// this.overlay.addEvent('click', this.close.bind(this));
|
|
||||||
// this.overlay.open();
|
|
||||||
// this.fx.start({
|
|
||||||
// 'margin-top':[-200, -100],
|
|
||||||
// opacity:[0, 1]
|
|
||||||
// }).chain(function () {
|
|
||||||
// this.fireEvent('show');
|
|
||||||
// this.wrapper.setStyle('display', 'block');
|
|
||||||
// }.bind(this));
|
|
||||||
// },
|
|
||||||
//
|
|
||||||
// onBeforeClose:function () {
|
|
||||||
// this.fx.start({
|
|
||||||
// 'margin-top':[-100, 0],
|
|
||||||
// opacity:0,
|
|
||||||
// duration:200
|
|
||||||
// }).chain(function () {
|
|
||||||
// this.wrapper.setStyle('display', 'none');
|
|
||||||
// this.fireEvent('hide');
|
|
||||||
//
|
|
||||||
// }.bind(this));
|
|
||||||
// }}
|
|
||||||
// );
|
|
||||||
// this.message = null;
|
|
||||||
},
|
|
||||||
|
|
||||||
|
initialize: function () {},
|
||||||
|
|
||||||
|
//FIXME: replace by alert()
|
||||||
show: function (message, title) {
|
show: function (message, title) {
|
||||||
$assert(message, "message can not be null");
|
$assert(message, "message can not be null");
|
||||||
this._messsage = message;
|
|
||||||
this.options.title = $defined(title) ? title : "Outch!!. An unexpected error has occurred";
|
|
||||||
this.open();
|
|
||||||
},
|
|
||||||
|
|
||||||
destroy: function () {
|
var modalDialog = $('<div class="modal fade">' +
|
||||||
this.parent();
|
'<div class="modal-dialog">' +
|
||||||
this.overlay.destroy();
|
'<div class="modal-content">' +
|
||||||
},
|
'<div class="modal-body"></div>' +
|
||||||
|
'<div class="alert alert-block alert-warning">' +
|
||||||
|
'<img src="images/alert-sign.png">' +
|
||||||
|
'<div style="display: inline-block" class="alert-content"></div>' +
|
||||||
|
'</div>' +
|
||||||
|
'<div class="modal-footer">' +
|
||||||
|
'<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>' +
|
||||||
|
'</div>' +
|
||||||
|
'</div>' +
|
||||||
|
'</div>' +
|
||||||
|
'</div>');
|
||||||
|
|
||||||
_buildPanel: function () {
|
var p = '<p>' + message + '</p>'
|
||||||
var result = new Element('div');
|
var h4 = title ? '<h4>' + title + '</h4>' : "";
|
||||||
result.setStyles({
|
|
||||||
'text-align': 'center',
|
|
||||||
width: '400px'
|
|
||||||
});
|
|
||||||
var p = new Element('p', {'text': this._messsage});
|
|
||||||
p.inject(result);
|
|
||||||
|
|
||||||
var img = new Element('img', {'src': 'images/alert-sign.png'});
|
modalDialog.find('.alert-content').append(h4 + p);
|
||||||
img.inject(result);
|
modalDialog.modal();
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user