From 29b4dc4796ce1c845591c45ce5c2cba15cfc16a3 Mon Sep 17 00:00:00 2001
From: Maximilian Giller <m.giller@tu-bs.de>
Date: Tue, 7 Dec 2021 00:05:33 +0100
Subject: [PATCH] Initial prototype

---
 editor/js/graph.js | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/editor/js/graph.js b/editor/js/graph.js
index 665a9e5..d5a6765 100644
--- a/editor/js/graph.js
+++ b/editor/js/graph.js
@@ -61,16 +61,21 @@ export class Graph extends ManagedData {
             clearTimeout(this.physicsStopTimeoutId);
         }
 
+        
         if (this.graphRenderer !== undefined) {
-            this.data[GRAPH_NODES].forEach((n) => {
-                n.x /= 10;
-                n.y /= 10;
-                n.fx = undefined;
-                n.fy = undefined;
-            });
-
-            this.graphRenderer.d3ReheatSimulation();
+            this.graphRenderer.graphData(this.getCleanData(this.data, false));
         }
+        // this.onChangeCallbacks.forEach((fn) => fn(this.getCleanData(this.data, false)));
+        // if (this.graphRenderer !== undefined) {
+        //     this.data[GRAPH_NODES].forEach((n) => {
+        //         n.x /= 10;
+        //         n.y /= 10;
+        //         n.fx = undefined;
+        //         n.fy = undefined;
+        //     });
+
+        //     this.graphRenderer.d3ReheatSimulation();
+        // }
 
         // Deactivate physics after a short delay
         this.physicsStopTimeoutId = setTimeout(() => {
-- 
GitLab