wisemapping-frontend/packages/mindplot/src/components/model/Mindmap.js

181 lines
4.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.
*/
2021-12-04 01:11:17 +01:00
import { $assert, $defined } from '@wisemapping/core-js';
import IMindmap from './IMindmap';
import INodeModel from './INodeModel';
import NodeModel from './NodeModel';
import RelationshipModel from './RelationshipModel';
import ModelCodeName from '../persistence/ModelCodeName';
2021-07-16 16:41:58 +02:00
2021-12-03 19:58:25 +01:00
class Mindmap extends IMindmap {
constructor(id, version) {
super();
2021-10-05 02:05:34 +02:00
$assert(id, 'Id can not be null');
this._branches = [];
this._description = null;
this._relationships = [];
this._version = $defined(version) ? version : ModelCodeName.TANGO;
this._id = id;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
getDescription() {
return this._description;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
setDescription(value) {
this._description = value;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
getId() {
return this._id;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
setId(id) {
this._id = id;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
getVersion() {
return this._version;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
setVersion(version) {
this._version = version;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/**
2021-07-16 16:41:58 +02:00
* @param {mindplot.model.NodeModel} nodeModel
* @throws will throw an error if nodeModel is null, undefined or not a node model object
2021-10-05 02:05:34 +02:00
* @throws will throw an error if
2021-07-16 16:41:58 +02:00
*/
2021-10-05 02:05:34 +02:00
addBranch(nodeModel) {
$assert(nodeModel && nodeModel.isNodeModel(), 'Add node must be invoked with model objects');
const branches = this.getBranches();
2021-12-03 19:58:25 +01:00
if (branches.length === 0) {
2021-12-04 01:11:17 +01:00
$assert(nodeModel.getType() === INodeModel.CENTRAL_TOPIC_TYPE, 'First element must be the central topic');
2021-10-05 02:05:34 +02:00
nodeModel.setPosition(0, 0);
} else {
2021-12-04 01:11:17 +01:00
$assert(nodeModel.getType() !== INodeModel.CENTRAL_TOPIC_TYPE, 'Mindmaps only have one cental topic');
2021-10-05 02:05:34 +02:00
}
this._branches.push(nodeModel);
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/**
2021-07-16 16:41:58 +02:00
* @param nodeModel
*/
2021-10-05 02:05:34 +02:00
removeBranch(nodeModel) {
$assert(nodeModel && nodeModel.isNodeModel(), 'Remove node must be invoked with model objects');
2021-12-14 18:06:09 +01:00
this._branches = this._branches.filter((b) => b !== nodeModel);
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
getBranches() {
return this._branches;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
getRelationships() {
return this._relationships;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/**
2021-07-16 16:41:58 +02:00
* @param node
* @return {Boolean} true if node already exists
*/
2021-10-05 02:05:34 +02:00
hasAlreadyAdded(node) {
let result = false;
// Check in not connected nodes.
const branches = this._branches;
for (let i = 0; i < branches.length; i++) {
result = branches[i]._isChildNode(node);
if (result) {
break;
}
}
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/**
2021-07-16 16:41:58 +02:00
* @param type
* @param id
* @return the node model created
*/
createNode(type = INodeModel.MAIN_TOPIC_TYPE, id) {
2021-10-05 02:05:34 +02:00
return new NodeModel(type, this, id);
2021-12-03 19:58:25 +01:00
}
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/**
2021-12-16 02:59:51 +01:00
* @param sourceNodeId
* @param targetNodeId
* @throws will throw an error if source node is null or undefined
* @throws will throw an error if target node is null or undefined
* @return the relationship model created
*/
2021-10-05 02:05:34 +02:00
createRelationship(sourceNodeId, targetNodeId) {
$assert($defined(sourceNodeId), 'from node cannot be null');
$assert($defined(targetNodeId), 'to node cannot be null');
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
return new RelationshipModel(sourceNodeId, targetNodeId);
2021-12-03 19:58:25 +01:00
}
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/**
2021-12-16 02:59:51 +01:00
* @param relationship
*/
2021-10-05 02:05:34 +02:00
addRelationship(relationship) {
this._relationships.push(relationship);
2021-12-03 19:58:25 +01:00
}
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
/**
2021-07-16 16:41:58 +02:00
* @param relationship
*/
2021-10-05 02:05:34 +02:00
deleteRelationship(relationship) {
2021-12-14 18:06:09 +01:00
this._relationships = this._branches.filter((r) => r !== relationship);
2021-12-03 19:58:25 +01:00
}
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
findNodeById(id) {
let result = null;
for (let i = 0; i < this._branches.length; i++) {
const branch = this._branches[i];
result = branch.findNodeById(id);
if (result) {
break;
}
2021-07-16 16:41:58 +02:00
}
2021-10-05 02:05:34 +02:00
return result;
2021-12-03 19:58:25 +01:00
}
}
2021-07-16 16:41:58 +02:00
/**
* @param mapId
* @return an empty mindmap with central topic only
*/
2021-12-03 19:58:25 +01:00
Mindmap.buildEmpty = (mapId) => {
2021-10-05 02:05:34 +02:00
const result = new Mindmap(mapId);
const node = result.createNode(INodeModel.CENTRAL_TOPIC_TYPE, 0);
result.addBranch(node);
return result;
2021-07-16 16:41:58 +02:00
};
export default Mindmap;