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

175 lines
4.7 KiB
TypeScript
Raw Normal View History

2021-07-16 16:41:58 +02:00
/*
2021-12-25 23:39:34 +01:00
* Copyright [2021] [wisemapping]
2021-07-16 16:41:58 +02:00
*
* 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';
2022-01-02 23:01:50 +01:00
import INodeModel, { NodeModelType } 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 {
2022-01-03 06:04:37 +01:00
private _description: string;
private _version: string;
private _id: string;
private _branches: Array<NodeModel>;
private _relationships: Array<RelationshipModel>;
constructor(id: string, version: string = ModelCodeName.TANGO) {
2021-12-03 19:58:25 +01:00
super();
2021-10-05 02:05:34 +02:00
$assert(id, 'Id can not be null');
2021-10-05 02:05:34 +02:00
this._branches = [];
this._description = null;
this._relationships = [];
this._version = version;
2021-10-05 02:05:34 +02:00
this._id = id;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
getDescription(): string {
2021-10-05 02:05:34 +02:00
return this._description;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
setDescription(value: string) {
2021-10-05 02:05:34 +02:00
this._description = value;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
getId(): string {
2021-10-05 02:05:34 +02:00
return this._id;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
setId(id: string) {
2021-10-05 02:05:34 +02:00
this._id = id;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
getVersion(): string {
2021-10-05 02:05:34 +02:00
return this._version;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
/** */
setVersion(version: string): void {
2021-10-05 02:05:34 +02:00
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
*/
addBranch(nodeModel: NodeModel): void {
2021-10-05 02:05:34 +02:00
$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) {
2022-01-02 23:01:50 +01:00
$assert(nodeModel.getType() === 'CentralTopic', 'First element must be the central topic');
2021-10-05 02:05:34 +02:00
nodeModel.setPosition(0, 0);
} else {
2022-01-02 23:01:50 +01:00
$assert(nodeModel.getType() !== 'CentralTopic', '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
*/
2022-01-02 23:01:50 +01:00
removeBranch(nodeModel: INodeModel): void {
2021-10-05 02:05:34 +02:00
$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(): Array<RelationshipModel> {
2021-10-05 02:05:34 +02:00
return this._relationships;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
2022-01-02 23:01:50 +01:00
hasAlreadyAdded(node: NodeModel): boolean {
2021-10-05 02:05:34 +02:00
let result = false;
// Check in not connected nodes.
const branches = this._branches;
for (let i = 0; i < branches.length; i++) {
2022-01-02 23:01:50 +01:00
result = branches[i].isChildNode(node);
2021-10-05 02:05:34 +02:00
if (result) {
break;
}
}
2022-01-02 23:01:50 +01:00
return result;
2021-12-03 19:58:25 +01:00
}
2021-10-05 02:05:34 +02:00
2022-01-02 23:01:50 +01:00
createNode(type: NodeModelType = 'MainTopic', id: number) {
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
*/
createRelationship(sourceNodeId: any, targetNodeId: any) {
2021-10-05 02:05:34 +02:00
$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
*/
addRelationship(relationship: RelationshipModel) {
2021-10-05 02:05:34 +02:00
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
*/
deleteRelationship(relationship: RelationshipModel) {
this._relationships = this._relationships.filter((r) => r !== relationship);
2021-12-03 19:58:25 +01:00
}
2021-07-16 16:41:58 +02:00
findNodeById(id: any) {
2021-10-05 02:05:34 +02:00
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
static buildEmpty = (mapId: string) => {
const result = new Mindmap(mapId);
2022-01-02 23:01:50 +01:00
const node = result.createNode('CentralTopic', 0);
result.addBranch(node);
return result;
};
}
2021-07-16 16:41:58 +02:00
export default Mindmap;