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

83 lines
2.3 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.
*/
2021-09-02 18:32:23 +02:00
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 Topic = require('./Topic').default;
const Shape = require('./util/Shape').default;
2021-09-02 18:32:23 +02:00
const CentralTopic = new Class(
2021-10-05 02:05:34 +02:00
/** @lends CentralTopic */ {
Extends: Topic,
/**
2021-09-02 18:32:23 +02:00
* @extends mindplot.Topic
* @constructs
* @param model
* @param options
*/
2021-10-05 02:05:34 +02:00
initialize(model, options) {
this.parent(model, options);
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
_registerEvents() {
this.parent();
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
// This disable the drag of the central topic. But solves the problem of deselecting the nodes when the screen is clicked.
this.addEvent('mousedown', (event) => {
event.stopPropagation();
});
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
workoutIncomingConnectionPoint() {
return this.getPosition();
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
setCursor(type) {
type = type == 'move' ? 'default' : type;
this.parent(type);
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
updateTopicShape() {},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
_updatePositionOnChangeSize() {
// Center main topic ...
const zeroPoint = new core.Point(0, 0);
this.setPosition(zeroPoint);
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
getShrinkConnector() {
return null;
},
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/** */
workoutOutgoingConnectionPoint(targetPosition) {
$assert(targetPosition, 'targetPoint can not be null');
const pos = this.getPosition();
const isAtRight = Shape.isAtRight(targetPosition, pos);
const size = this.getSize();
return Shape.calculateRectConnectionPoint(pos, size, !isAtRight);
},
},
2021-09-02 18:32:23 +02:00
);
2021-07-16 16:41:58 +02:00
export default CentralTopic;