From 22bc2a79bd74d58be25cf251b5746cc588461a9b Mon Sep 17 00:00:00 2001
From: jojohoch <joachim.hoch@iqb.hu-berlin.de>
Date: Tue, 14 Jun 2022 14:20:49 +0200
Subject: [PATCH] [editor] Send schemer variables on
 sendVoeDefinitionChangedNotification

---
 projects/editor/src/app/services/verona-api.service.ts | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/projects/editor/src/app/services/verona-api.service.ts b/projects/editor/src/app/services/verona-api.service.ts
index 5a4bbb195..08f720596 100644
--- a/projects/editor/src/app/services/verona-api.service.ts
+++ b/projects/editor/src/app/services/verona-api.service.ts
@@ -2,6 +2,7 @@ import { Injectable } from '@angular/core';
 import { fromEvent, Observable, Subject } from 'rxjs';
 import packageJSON from '../../../../../package.json';
 import { Unit } from 'common/models/unit';
+import { SchemerData } from 'common/models/elements/element';
 
 @Injectable({
   providedIn: 'root'
@@ -34,7 +35,7 @@ export class VeronaAPIService {
     }
   }
 
-  private send(message: Record<string, string>): void {
+  private send(message: Record<string, string | SchemerData[]>): void {
     // prevent posts in local (dev) mode
     if (!this.isStandalone()) {
       window.parent.postMessage(message, '*');
@@ -58,7 +59,8 @@ export class VeronaAPIService {
       sessionId: this.sessionID,
       timeStamp: String(Date.now()),
       unitDefinition: JSON.stringify(unit),
-      unitDefinitionType: `${unit.type}@${unit.version}`
+      unitDefinitionType: `${unit.type}@${unit.version}`,
+      variables: unit.getSchemerData()
     });
   }
 
-- 
GitLab