wisemapping-frontend/packages/mindplot/lib/components/ConnectionLine.js

216 lines
5.6 KiB
JavaScript
Raw Normal View History

2021-07-16 16:41:58 +02:00
/*
* Copyright [2015] [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.
*/
const Core = require('@wismapping/core-js');
2021-10-05 02:05:34 +02:00
2021-07-16 16:41:58 +02:00
const core = Core();
const web2D = require('@wismapping/web2d');
2021-10-05 02:05:34 +02:00
2021-07-16 16:41:58 +02:00
const web2d = web2D();
2021-09-07 22:31:46 +02:00
const INodeModel = require('./model/INodeModel').default;
2021-09-02 18:32:23 +02:00
const { TopicShape } = require('./model/INodeModel');
2021-07-16 16:41:58 +02:00
const Topic = require('./Topic').default;
const ConnectionLine = new Class({
2021-10-05 02:05:34 +02:00
initialize(sourceNode, targetNode, lineType) {
$assert(targetNode, 'parentNode node can not be null');
$assert(sourceNode, 'childNode node can not be null');
$assert(sourceNode != targetNode, 'Circular connection');
this._targetTopic = targetNode;
this._sourceTopic = sourceNode;
let line;
const ctrlPoints = this._getCtrlPoints(sourceNode, targetNode);
if (targetNode.getType() == INodeModel.CENTRAL_TOPIC_TYPE) {
line = this._createLine(lineType, ConnectionLine.CURVED);
line.setSrcControlPoint(ctrlPoints[0]);
line.setDestControlPoint(ctrlPoints[1]);
} else {
line = this._createLine(lineType, ConnectionLine.SIMPLE_CURVED);
line.setSrcControlPoint(ctrlPoints[0]);
line.setDestControlPoint(ctrlPoints[1]);
}
// Set line styles ...
const strokeColor = ConnectionLine.getStrokeColor();
line.setStroke(1, 'solid', strokeColor, 1);
line.setFill(strokeColor, 1);
this._line2d = line;
},
_getCtrlPoints(sourceNode, targetNode) {
const srcPos = sourceNode.workoutOutgoingConnectionPoint(targetNode.getPosition());
const destPos = targetNode.workoutIncomingConnectionPoint(sourceNode.getPosition());
const deltaX = (srcPos.x - destPos.x) / 3;
return [new core.Point(deltaX, 0), new core.Point(-deltaX, 0)];
},
_createLine(lineType, defaultStyle) {
if (!$defined(lineType)) {
lineType = defaultStyle;
}
lineType = parseInt(lineType);
this._lineType = lineType;
let line = null;
switch (lineType) {
case ConnectionLine.POLYLINE:
line = new web2d.PolyLine();
break;
case ConnectionLine.CURVED:
line = new web2d.CurvedLine();
break;
case ConnectionLine.SIMPLE_CURVED:
line = new web2d.CurvedLine();
line.setStyle(web2d.CurvedLine.SIMPLE_LINE);
break;
default:
line = new web2d.Line();
break;
}
return line;
},
setVisibility(value) {
this._line2d.setVisibility(value);
},
isVisible() {
return this._line2d.isVisible();
},
setOpacity(opacity) {
this._line2d.setOpacity(opacity);
},
redraw() {
const line2d = this._line2d;
const sourceTopic = this._sourceTopic;
const sourcePosition = sourceTopic.getPosition();
const targetTopic = this._targetTopic;
const targetPosition = targetTopic.getPosition();
let sPos; let
tPos;
sPos = sourceTopic.workoutOutgoingConnectionPoint(targetPosition);
tPos = targetTopic.workoutIncomingConnectionPoint(sourcePosition);
line2d.setFrom(tPos.x, tPos.y);
line2d.setTo(sPos.x, sPos.y);
if (line2d.getType() == 'CurvedLine') {
const ctrlPoints = this._getCtrlPoints(this._sourceTopic, this._targetTopic);
line2d.setSrcControlPoint(ctrlPoints[0]);
line2d.setDestControlPoint(ctrlPoints[1]);
}
// Add connector ...
this._positionateConnector(targetTopic);
},
_positionateConnector(targetTopic) {
const targetPosition = targetTopic.getPosition();
const offset = Topic.CONNECTOR_WIDTH / 2;
const targetTopicSize = targetTopic.getSize();
let y; let
x;
if (targetTopic.getShapeType() == TopicShape.LINE) {
y = targetTopicSize.height;
} else {
y = targetTopicSize.height / 2;
}
y -= offset;
const connector = targetTopic.getShrinkConnector();
if ($defined(connector)) {
if (Math.sign(targetPosition.x) > 0) {
x = targetTopicSize.width;
connector.setPosition(x, y);
} else {
x = -Topic.CONNECTOR_WIDTH;
}
connector.setPosition(x, y);
}
},
setStroke(color, style, opacity) {
this._line2d.setStroke(null, null, color, opacity);
},
addToWorkspace(workspace) {
workspace.append(this._line2d);
this._line2d.moveToBack();
},
removeFromWorkspace(workspace) {
workspace.removeChild(this._line2d);
},
getTargetTopic() {
return this._targetTopic;
},
getSourceTopic() {
return this._sourceTopic;
},
getLineType() {
return this._lineType;
},
getLine() {
return this._line2d;
},
getModel() {
return this._model;
},
setModel(model) {
this._model = model;
},
getType() {
return 'ConnectionLine';
},
getId() {
return this._model.getId();
},
moveToBack() {
this._line2d.moveToBack();
},
moveToFront() {
this._line2d.moveToFront();
},
2021-07-16 16:41:58 +02:00
});
ConnectionLine.getStrokeColor = function () {
2021-10-05 02:05:34 +02:00
return '#495879';
2021-07-16 16:41:58 +02:00
};
ConnectionLine.SIMPLE = 0;
ConnectionLine.POLYLINE = 1;
ConnectionLine.CURVED = 2;
ConnectionLine.SIMPLE_CURVED = 3;
export default ConnectionLine;