mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
516e9b4ded
CI build fix (lint + snapshots) * update snapshots * Add lint to TS + lint fixes Approved-by: Paulo Veiga
240 lines
6.7 KiB
JavaScript
240 lines
6.7 KiB
JavaScript
/*
|
|
* 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 { $assert, $defined } from '@wisemapping/core-js';
|
|
import { Point, CurvedLine, Rect } from '@wisemapping/web2d';
|
|
|
|
import DragTopicConfig from './DragTopicConfig';
|
|
import Shape from './util/Shape';
|
|
|
|
class DragPivot {
|
|
constructor() {
|
|
this._position = new Point();
|
|
this._size = DragTopicConfig.PIVOT_SIZE;
|
|
|
|
this._straightLine = this._buildStraightLine();
|
|
this._curvedLine = this._buildCurvedLine();
|
|
this._dragPivot = this._buildRect();
|
|
this._connectRect = this._buildRect();
|
|
this._targetTopic = null;
|
|
this._isVisible = false;
|
|
}
|
|
|
|
isVisible() {
|
|
return this._isVisible;
|
|
}
|
|
|
|
getTargetTopic() {
|
|
return this._targetTopic;
|
|
}
|
|
|
|
_buildStraightLine() {
|
|
const line = new CurvedLine();
|
|
line.setStyle(CurvedLine.SIMPLE_LINE);
|
|
line.setStroke(1, 'solid', '#CC0033');
|
|
line.setOpacity(0.4);
|
|
line.setVisibility(false);
|
|
return line;
|
|
}
|
|
|
|
_buildCurvedLine() {
|
|
const line = new CurvedLine();
|
|
line.setStyle(CurvedLine.SIMPLE_LINE);
|
|
line.setStroke(1, 'solid', '#CC0033');
|
|
line.setOpacity(0.4);
|
|
line.setVisibility(false);
|
|
return line;
|
|
}
|
|
|
|
_redrawLine() {
|
|
// Update line position.
|
|
$assert(this.getTargetTopic(), 'Illegal invocation. Target node can not be null');
|
|
|
|
const pivotRect = this._getPivotRect();
|
|
|
|
// Pivot position has not changed. In this case, position change is not required.
|
|
const targetTopic = this.getTargetTopic();
|
|
const position = this._position;
|
|
|
|
// Calculate pivot connection point ...
|
|
const size = this._size;
|
|
const targetPosition = targetTopic.getPosition();
|
|
const line = this._getConnectionLine();
|
|
|
|
// Update Line position.
|
|
const isAtRight = Shape.isAtRight(targetPosition, position);
|
|
const pivotPoint = Shape.calculateRectConnectionPoint(position, size, isAtRight);
|
|
line.setFrom(pivotPoint.x, pivotPoint.y);
|
|
|
|
// Update rect position
|
|
const cx = position.x - parseInt(size.width, 10) / 2;
|
|
const cy = position.y - parseInt(size.height, 10) / 2;
|
|
pivotRect.setPosition(cx, cy);
|
|
|
|
// Make line visible only when the position has been already changed.
|
|
// This solve several strange effects ;)
|
|
const targetPoint = targetTopic.workoutIncomingConnectionPoint(pivotPoint);
|
|
line.setTo(targetPoint.x, targetPoint.y);
|
|
}
|
|
|
|
setPosition(point) {
|
|
this._position = point;
|
|
this._redrawLine();
|
|
}
|
|
|
|
getPosition() {
|
|
return this._position;
|
|
}
|
|
|
|
_buildRect() {
|
|
const size = this._size;
|
|
const rectAttributes = {
|
|
fillColor: '#CC0033',
|
|
opacity: 0.4,
|
|
width: size.width,
|
|
height: size.height,
|
|
strokeColor: '#FF9933',
|
|
};
|
|
const rect = new Rect(0, rectAttributes);
|
|
rect.setVisibility(false);
|
|
return rect;
|
|
}
|
|
|
|
_getPivotRect() {
|
|
return this._dragPivot;
|
|
}
|
|
|
|
getSize() {
|
|
const elem2d = this._getPivotRect();
|
|
return elem2d.getSize();
|
|
}
|
|
|
|
setVisibility(value) {
|
|
if (this.isVisible() !== value) {
|
|
const pivotRect = this._getPivotRect();
|
|
pivotRect.setVisibility(value);
|
|
|
|
const connectRect = this._connectRect;
|
|
connectRect.setVisibility(value);
|
|
|
|
const line = this._getConnectionLine();
|
|
if (line) {
|
|
line.setVisibility(value);
|
|
}
|
|
this._isVisible = value;
|
|
}
|
|
}
|
|
|
|
// If the node is connected, validate that there is a line connecting both...
|
|
_getConnectionLine() {
|
|
let result = null;
|
|
const parentTopic = this._targetTopic;
|
|
if (parentTopic) {
|
|
if (parentTopic.getType() === 'CentralTopic') {
|
|
result = this._straightLine;
|
|
} else {
|
|
result = this._curvedLine;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
addToWorkspace(workspace) {
|
|
const pivotRect = this._getPivotRect();
|
|
workspace.append(pivotRect);
|
|
|
|
const connectToRect = this._connectRect;
|
|
workspace.append(connectToRect);
|
|
|
|
// Add a hidden straight line ...
|
|
const straighLine = this._straightLine;
|
|
straighLine.setVisibility(false);
|
|
workspace.append(straighLine);
|
|
straighLine.moveToBack();
|
|
|
|
// Add a hidden curved line ...
|
|
const curvedLine = this._curvedLine;
|
|
curvedLine.setVisibility(false);
|
|
workspace.append(curvedLine);
|
|
curvedLine.moveToBack();
|
|
|
|
// Add a connect rect ...
|
|
const connectRect = this._connectRect;
|
|
connectRect.setVisibility(false);
|
|
workspace.append(connectRect);
|
|
connectRect.moveToBack();
|
|
}
|
|
|
|
removeFromWorkspace(workspace) {
|
|
const shape = this._getPivotRect();
|
|
workspace.removeChild(shape);
|
|
|
|
const connectToRect = this._connectRect;
|
|
workspace.removeChild(connectToRect);
|
|
|
|
if ($defined(this._straightLine)) {
|
|
workspace.removeChild(this._straightLine);
|
|
}
|
|
|
|
if ($defined(this._curvedLine)) {
|
|
workspace.removeChild(this._curvedLine);
|
|
}
|
|
}
|
|
|
|
connectTo(targetTopic, position) {
|
|
$assert(!this._outgoingLine, 'Could not connect an already connected node');
|
|
$assert(targetTopic !== this, 'Circular connection are not allowed');
|
|
$assert(position, 'position can not be null');
|
|
$assert(targetTopic, 'parent can not be null');
|
|
|
|
this._position = position;
|
|
this._targetTopic = targetTopic;
|
|
|
|
// Connected to Rect ...
|
|
const connectRect = this._connectRect;
|
|
const targetSize = targetTopic.getSize();
|
|
|
|
// Add 4 pixel in order to keep create a rect bigger than the topic.
|
|
const width = targetSize.width + 4;
|
|
const height = targetSize.height + 4;
|
|
|
|
connectRect.setSize(width, height);
|
|
|
|
const targetPosition = targetTopic.getPosition();
|
|
const cx = Math.ceil(targetPosition.x - width / 2);
|
|
const cy = Math.ceil(targetPosition.y - height / 2);
|
|
connectRect.setPosition(cx, cy);
|
|
|
|
// Change elements position ...
|
|
const pivotRect = this._getPivotRect();
|
|
pivotRect.moveToFront();
|
|
pivotRect.setPosition(position.x, position.y);
|
|
|
|
this._redrawLine();
|
|
}
|
|
|
|
disconnect(workspace) {
|
|
$assert(workspace, 'workspace can not be null.');
|
|
$assert(this._targetTopic, 'There are not connected topic.');
|
|
|
|
this.setVisibility(false);
|
|
this._targetTopic = null;
|
|
}
|
|
}
|
|
|
|
export default DragPivot;
|