96 lines
3.5 KiB
JavaScript
Raw Normal View History

2012-01-09 23:50:52 -03:00
/*
2015-04-12 00:15:12 -03:00
* Copyright [2015] [wisemapping]
2012-01-09 23:50:52 -03:00
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
mindplot.layout.EventBusDispatcher = new Class(/** @lends EventBusDispatcher */{
/**
* @constructs
*/
2012-01-21 18:02:38 -03:00
initialize:function() {
2012-01-09 23:50:52 -03:00
this.registerBusEvents();
2012-01-21 18:02:38 -03:00
},
2012-01-09 23:50:52 -03:00
/**
* @param {mindplot.layout.LayoutManager} layoutManager
*/
2012-01-21 18:02:38 -03:00
setLayoutManager : function(layoutManager) {
this._layoutManager = layoutManager;
2012-01-09 23:50:52 -03:00
},
/**
* register bus events
*/
2012-01-09 23:50:52 -03:00
registerBusEvents:function () {
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeAdded, this._nodeAdded.bind(this));
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeRemoved, this._nodeRemoved.bind(this));
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeResizeEvent, this._nodeResizeEvent.bind(this));
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeMoveEvent, this._nodeMoveEvent.bind(this));
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeDisconnectEvent, this._nodeDisconnectEvent.bind(this));
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeConnectEvent, this._nodeConnectEvent.bind(this));
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeShrinkEvent, this._nodeShrinkEvent.bind(this));
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.DoLayout, this._doLayout.bind(this));
},
2012-01-11 19:47:00 -03:00
_nodeResizeEvent: function(args) {
this._layoutManager.updateNodeSize(args.node.getId(), args.size);
2012-01-09 23:50:52 -03:00
},
2012-01-18 01:26:39 -03:00
_nodeMoveEvent: function(args) {
this._layoutManager.moveNode(args.node.getId(), args.position);
2012-01-09 23:50:52 -03:00
},
_nodeDisconnectEvent: function(node) {
this._layoutManager.disconnectNode(node.getId());
},
_nodeConnectEvent: function(args) {
this._layoutManager.connectNode(args.parentNode.getId(), args.childNode.getId(), args.childNode.getOrder());
},
_nodeShrinkEvent: function(node) {
this._layoutManager.updateShrinkState(node.getId(), node.areChildrenShrunken());
2012-01-09 23:50:52 -03:00
},
_nodeAdded: function(node) {
2012-01-18 01:32:55 -03:00
// Central topic must not be added twice ...
2012-01-09 23:50:52 -03:00
if (node.getId() != 0) {
this._layoutManager.addNode(node.getId(), {width:10,height:10}, node.getPosition());
2012-01-12 00:49:18 -03:00
this._layoutManager.updateShrinkState(node.getId(), node.areChildrenShrunken());
2012-01-09 23:50:52 -03:00
}
},
_nodeRemoved: function(node) {
2012-01-11 18:41:09 -03:00
this._layoutManager.removeNode(node.getId());
2012-01-09 23:50:52 -03:00
},
_doLayout: function() {
2012-01-12 00:49:18 -03:00
// (function() {
2012-01-14 09:58:06 -03:00
this._layoutManager.layout(true);
2012-01-17 00:26:29 -03:00
// console.log("---------");
2012-03-07 20:35:06 -03:00
// this._layoutManager.dump();
2012-01-17 00:26:29 -03:00
// console.log("---------");
// console.log("---------");
2012-01-12 00:49:18 -03:00
// }).delay(0, this);
2012-01-14 09:58:06 -03:00
},
/** @return layout manager */
2012-01-14 09:58:06 -03:00
getLayoutManager: function() {
return this._layoutManager;
2012-01-09 23:50:52 -03:00
}
});