Debug resizing plugin left panel and moving plugin modal window.
This commit is contained in:
parent
9403710f56
commit
c1ac28bf8e
|
@ -172,11 +172,6 @@ define([
|
||||||
}, this);
|
}, this);
|
||||||
|
|
||||||
this.freeze = options.freeze; this.freeze && this.freezePanels(this.freeze);
|
this.freeze = options.freeze; this.freeze && this.freezePanels(this.freeze);
|
||||||
|
|
||||||
Common.NotificationCenter.on({
|
|
||||||
'frame:mouseMove': this.resize.eventMove,
|
|
||||||
'frame:mouseup': this.resize.eventStop
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
doLayout: function() {
|
doLayout: function() {
|
||||||
|
@ -236,6 +231,11 @@ define([
|
||||||
mouseup : this.resize.eventStop
|
mouseup : this.resize.eventStop
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Common.NotificationCenter.on({
|
||||||
|
'frame:mousemove': this.resize.eventMove,
|
||||||
|
'frame:mouseup': this.resize.eventStop
|
||||||
|
});
|
||||||
|
|
||||||
var panel = e.data.panel;
|
var panel = e.data.panel;
|
||||||
this.resize.type = e.data.type;
|
this.resize.type = e.data.type;
|
||||||
this.resize.$el = panel.el;
|
this.resize.$el = panel.el;
|
||||||
|
@ -289,6 +289,13 @@ define([
|
||||||
mouseup : this.resize.eventStop
|
mouseup : this.resize.eventStop
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Common.NotificationCenter.off({
|
||||||
|
'frame:mousemove': this.resize.eventMove,
|
||||||
|
'frame:mouseup': this.resize.eventStop
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!this.resize.$el) return;
|
||||||
|
|
||||||
if (this.resize.type == 'vertical') {
|
if (this.resize.type == 'vertical') {
|
||||||
var prop = 'height';
|
var prop = 'height';
|
||||||
var value = e.pageY - this.resize.inity;
|
var value = e.pageY - this.resize.inity;
|
||||||
|
|
|
@ -66,6 +66,8 @@ define([
|
||||||
storePlugins: this.getApplication().getCollection('Common.Collections.Plugins')
|
storePlugins: this.getApplication().getCollection('Common.Collections.Plugins')
|
||||||
});
|
});
|
||||||
this.panelPlugins.on('render:after', _.bind(this.onAfterRender, this));
|
this.panelPlugins.on('render:after', _.bind(this.onAfterRender, this));
|
||||||
|
|
||||||
|
this._moveOffset = {x:0, y:0};
|
||||||
},
|
},
|
||||||
|
|
||||||
setApi: function(api) {
|
setApi: function(api) {
|
||||||
|
@ -94,6 +96,9 @@ define([
|
||||||
Common.NotificationCenter.on({
|
Common.NotificationCenter.on({
|
||||||
'layout:resizestart': function(e){
|
'layout:resizestart': function(e){
|
||||||
if (me.panelPlugins.isVisible()) {
|
if (me.panelPlugins.isVisible()) {
|
||||||
|
var offset = me.panelPlugins.currentPluginFrame.offset();
|
||||||
|
me._moveOffset = {x: offset.left + parseInt(me.panelPlugins.currentPluginFrame.css('padding-left')),
|
||||||
|
y: offset.top + parseInt(me.panelPlugins.currentPluginFrame.css('padding-top'))};
|
||||||
me.api.asc_pluginEnableMouseEvents(true);
|
me.api.asc_pluginEnableMouseEvents(true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -235,8 +240,11 @@ define([
|
||||||
});
|
});
|
||||||
me.pluginDlg.on('render:after', function(obj){
|
me.pluginDlg.on('render:after', function(obj){
|
||||||
obj.getChild('.footer .dlg-btn').on('click', _.bind(me.onDlgBtnClick, me));
|
obj.getChild('.footer .dlg-btn').on('click', _.bind(me.onDlgBtnClick, me));
|
||||||
|
me.pluginContainer = me.pluginDlg.$window.find('#id-plugin-container');
|
||||||
}).on('close', function(obj){
|
}).on('close', function(obj){
|
||||||
me.pluginDlg = undefined;
|
me.pluginDlg = undefined;
|
||||||
|
}).on('drag', function(args){
|
||||||
|
me.api.asc_pluginEnableMouseEvents(args[1]=='start');
|
||||||
});
|
});
|
||||||
me.pluginDlg.show();
|
me.pluginDlg.show();
|
||||||
}
|
}
|
||||||
|
@ -267,11 +275,18 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onPluginMouseUp: function(x, y) {
|
onPluginMouseUp: function(x, y) {
|
||||||
Common.NotificationCenter.trigger('frame:mouseup', jQuery.Event("mouseup", { pageX: x, pageY: y } ));
|
if (this.pluginDlg) {
|
||||||
|
this.pluginDlg.binding.dragStop();
|
||||||
|
} else
|
||||||
|
Common.NotificationCenter.trigger('frame:mouseup', jQuery.Event("mouseup", { pageX: x+this._moveOffset.x, pageY: y+this._moveOffset.y } ));
|
||||||
},
|
},
|
||||||
|
|
||||||
onPluginMouseMove: function(x, y) {
|
onPluginMouseMove: function(x, y) {
|
||||||
Common.NotificationCenter.trigger('frame:mousemove', jQuery.Event("mousemove", { pageX: x, pageY: y } ));
|
if (this.pluginDlg) {
|
||||||
|
var offset = this.pluginContainer.offset();
|
||||||
|
this.pluginDlg.binding.drag(jQuery.Event("mousemove", { pageX: x+offset.left, pageY: y+offset.top } ));
|
||||||
|
} else
|
||||||
|
Common.NotificationCenter.trigger('frame:mousemove', jQuery.Event("mousemove", { pageX: x+this._moveOffset.x, pageY: y+this._moveOffset.y } ));
|
||||||
}
|
}
|
||||||
|
|
||||||
}, Common.Controllers.Plugins || {}));
|
}, Common.Controllers.Plugins || {}));
|
||||||
|
|
Loading…
Reference in a new issue