mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
115 lines
3.0 KiB
TypeScript
115 lines
3.0 KiB
TypeScript
/*
|
|
* Copyright [2021] [wisemapping]
|
|
*
|
|
* 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.
|
|
*/
|
|
import { Elipse } from '@wisemapping/web2d';
|
|
|
|
import TopicConfig from './TopicConfig';
|
|
import ActionDispatcher from './ActionDispatcher';
|
|
import Topic from './Topic';
|
|
|
|
class ShirinkConnector {
|
|
private _isShrink: boolean;
|
|
|
|
private _ellipse: Elipse;
|
|
|
|
constructor(topic: Topic) {
|
|
this._isShrink = false;
|
|
const ellipse = new Elipse(TopicConfig.INNER_RECT_ATTRIBUTES);
|
|
this._ellipse = ellipse;
|
|
|
|
ellipse.setFill('rgb(62,118,179)');
|
|
|
|
ellipse.setSize(TopicConfig.CONNECTOR_WIDTH, TopicConfig.CONNECTOR_WIDTH);
|
|
ellipse.addEvent('click', (event: Event) => {
|
|
const model = topic.getModel();
|
|
const collapse = !model.areChildrenShrunken();
|
|
|
|
const topicId = topic.getId();
|
|
const actionDispatcher = ActionDispatcher.getInstance();
|
|
actionDispatcher.shrinkBranch([topicId], collapse);
|
|
|
|
event.stopPropagation();
|
|
});
|
|
|
|
ellipse.addEvent('mousedown', (event: Event) => {
|
|
// Avoid node creation ...
|
|
event.stopPropagation();
|
|
});
|
|
|
|
ellipse.addEvent('dblclick', (event: Event) => {
|
|
// Avoid node creation ...
|
|
event.stopPropagation();
|
|
});
|
|
|
|
ellipse.addEvent('mouseover', () => {
|
|
ellipse.setStroke(this._isShrink ? 1 : 2, 'solid');
|
|
});
|
|
|
|
ellipse.addEvent('mouseout', () => {
|
|
ellipse.setStroke(this._isShrink ? 2 : 1, 'solid');
|
|
});
|
|
|
|
ellipse.setCursor('default');
|
|
const model = topic.getModel();
|
|
this.changeRender(model.areChildrenShrunken());
|
|
}
|
|
|
|
changeRender(isShrink: boolean) {
|
|
const elipse = this._ellipse;
|
|
if (isShrink) {
|
|
elipse.setStroke('2', 'solid');
|
|
} else {
|
|
elipse.setStroke('1', 'solid');
|
|
}
|
|
this._isShrink = isShrink;
|
|
}
|
|
|
|
setVisibility(value: boolean): void {
|
|
this._ellipse.setVisibility(value);
|
|
}
|
|
|
|
setOpacity(opacity: number): void {
|
|
this._ellipse.setOpacity(opacity);
|
|
}
|
|
|
|
setFill(color: string): void {
|
|
this._ellipse.setFill(color);
|
|
}
|
|
|
|
setAttribute(name: string, value) {
|
|
this._ellipse.setAttribute(name, value);
|
|
}
|
|
|
|
addToWorkspace(group): void {
|
|
group.append(this._ellipse);
|
|
}
|
|
|
|
setPosition(x: number, y: number): void {
|
|
this._ellipse.setPosition(x, y);
|
|
}
|
|
|
|
moveToBack(): void {
|
|
this._ellipse.moveToBack();
|
|
}
|
|
|
|
moveToFront(): void {
|
|
this._ellipse.moveToFront();
|
|
}
|
|
}
|
|
|
|
export default ShirinkConnector;
|