wisemapping-frontend/packages/mindplot/src/components/layout/EventBusDispatcher.ts

90 lines
3.1 KiB
TypeScript
Raw Normal View History

2021-07-16 16:41:58 +02:00
/*
2021-12-25 23:39:34 +01:00
* Copyright [2021] [wisemapping]
2021-07-16 16:41:58 +02: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.
*/
2022-03-01 01:12:45 +01:00
import PositionType from '../PositionType';
import SizeType from '../SizeType';
import Topic from '../Topic';
import EventBus from './EventBus';
2022-03-01 01:12:45 +01:00
import LayoutManager from './LayoutManager';
2021-07-16 16:41:58 +02:00
2021-12-14 18:06:09 +01:00
class EventBusDispatcher {
2022-03-01 01:12:45 +01:00
private _layoutManager: LayoutManager;
constructor() {
2021-10-05 02:05:34 +02:00
this.registerBusEvents();
}
2021-07-16 16:41:58 +02:00
2022-03-01 01:12:45 +01:00
setLayoutManager(layoutManager: LayoutManager) {
2021-10-05 02:05:34 +02:00
this._layoutManager = layoutManager;
}
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
registerBusEvents() {
2022-03-01 01:12:45 +01:00
EventBus.instance.addEvent('topicAdded', this._topicAdded.bind(this));
EventBus.instance.addEvent('topicRemoved', this._topicRemoved.bind(this));
EventBus.instance.addEvent('topicResize', this._topicResizeEvent.bind(this));
EventBus.instance.addEvent('topicMoved', this._topicMoved.bind(this));
EventBus.instance.addEvent('topicDisconect', this._topicDisconect.bind(this));
EventBus.instance.addEvent('topicConnected', this._topicConnected.bind(this));
EventBus.instance.addEvent('childShrinked', this._childShrinked.bind(this));
EventBus.instance.addEvent('forceLayout', this._forceLayout.bind(this));
}
2021-07-16 16:41:58 +02:00
2022-03-01 01:12:45 +01:00
private _topicResizeEvent(args: { node: Topic, size: SizeType }) {
2021-10-05 02:05:34 +02:00
this._layoutManager.updateNodeSize(args.node.getId(), args.size);
}
2021-07-16 16:41:58 +02:00
2022-03-01 01:12:45 +01:00
private _topicMoved(args: { node: Topic, position: PositionType }) {
2021-10-05 02:05:34 +02:00
this._layoutManager.moveNode(args.node.getId(), args.position);
}
2021-07-16 16:41:58 +02:00
2022-03-01 01:12:45 +01:00
private _topicDisconect(node: Topic) {
2021-10-05 02:05:34 +02:00
this._layoutManager.disconnectNode(node.getId());
}
2021-07-16 16:41:58 +02:00
2022-03-01 01:12:45 +01:00
private _topicConnected(args: { parentNode: Topic, childNode: Topic }) {
this._layoutManager.connectNode(
args.parentNode.getId(), args.childNode.getId(), args.childNode.getOrder(),
);
}
2021-07-16 16:41:58 +02:00
2022-03-01 01:12:45 +01:00
private _childShrinked(node: Topic) {
2021-10-05 02:05:34 +02:00
this._layoutManager.updateShrinkState(node.getId(), node.areChildrenShrunken());
}
2021-07-16 16:41:58 +02:00
2022-03-01 01:12:45 +01:00
private _topicAdded(node: Topic) {
2021-10-05 02:05:34 +02:00
// Central topic must not be added twice ...
2021-12-19 19:29:56 +01:00
if (node.getId() !== 0) {
2021-10-05 02:05:34 +02:00
this._layoutManager.addNode(node.getId(), { width: 10, height: 10 }, node.getPosition());
this._layoutManager.updateShrinkState(node.getId(), node.areChildrenShrunken());
}
}
2021-07-16 16:41:58 +02:00
2022-03-01 01:12:45 +01:00
private _topicRemoved(node: Topic) {
2021-10-05 02:05:34 +02:00
this._layoutManager.removeNode(node.getId());
}
2021-07-16 16:41:58 +02:00
2022-03-01 01:12:45 +01:00
private _forceLayout() {
2021-10-05 02:05:34 +02:00
this._layoutManager.layout(true);
}
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
getLayoutManager() {
return this._layoutManager;
}
}
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
export default EventBusDispatcher;