From 98a6689dec256665e8a22074024e402486ae0e24 Mon Sep 17 00:00:00 2001 From: Max <m.giller@tu-braunschweig.de> Date: Wed, 29 Jun 2022 13:59:52 +0200 Subject: [PATCH] Improved handling of addings new nodes --- src/editor/js/structures/graph/graph.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/editor/js/structures/graph/graph.ts b/src/editor/js/structures/graph/graph.ts index 566589a..0a562e0 100644 --- a/src/editor/js/structures/graph/graph.ts +++ b/src/editor/js/structures/graph/graph.ts @@ -171,6 +171,21 @@ export class Graph extends ManagedData { node.id = this.nextNodeId; this.nextNodeId += 1; + // Is valid node? + if (node.label == undefined) { + node.label = "Unnamed"; + } + if (node.type == undefined) { + if (this.types.length > 0) { + // Just give first type in list + node.type = this.types[0]; + } else { + // Give empty type + // TODO: Properly add new type, with proper ID. Implemented this.addType(..); + node.type = new NodeType(this); + } + } + this.data.nodes.push(node); this.triggerOnChange(); -- GitLab