From 6d8c2178b502e6409f2ed0ada94e2eeccd286dbe Mon Sep 17 00:00:00 2001
From: Fabian Gruenwald <fabian.gruenwald@mni.thm.de>
Date: Sat, 1 May 2021 16:08:57 +0200
Subject: [PATCH] color fix

---
 .../shared/tag-cloud/tag-cloud.component.ts   | 35 ++++++++++---------
 1 file changed, 19 insertions(+), 16 deletions(-)

diff --git a/src/app/components/shared/tag-cloud/tag-cloud.component.ts b/src/app/components/shared/tag-cloud/tag-cloud.component.ts
index 64e08d0e9..53bc2206b 100644
--- a/src/app/components/shared/tag-cloud/tag-cloud.component.ts
+++ b/src/app/components/shared/tag-cloud/tag-cloud.component.ts
@@ -11,17 +11,19 @@ import {Rescale} from "../../../models/rescale";
 
 class TagComment implements CloudData {
   constructor(
-              public color: string,
-              public external: boolean,
-              public link: string,
-              public position: Position,
-              public rotate: number,
-              public text: string,
-              public tooltip: string,
-              public weight: number) {
+    public color: string,
+    public external: boolean,
+    public link: string,
+    public position: Position,
+    public rotate: number,
+    public text: string,
+    public tooltip: string,
+    public weight: number) {
   }
- }
+}
+
 const COLOR: string[] = ["red", "green", "blue", "yellow", "orange"];
+
 @Component({
   selector: 'app-tag-cloud',
   templateUrl: './tag-cloud.component.html',
@@ -29,7 +31,7 @@ const COLOR: string[] = ["red", "green", "blue", "yellow", "orange"];
 })
 export class TagCloudComponent implements OnInit {
 
-  @ViewChild(TagCloudComponent, { static: false }) child: TagCloudComponent;
+  @ViewChild(TagCloudComponent, {static: false}) child: TagCloudComponent;
   roomId: string;
   options: CloudOptions = {
     // if width is between 0 and 1 it will be set to the width of the upper element multiplied by the value
@@ -45,7 +47,7 @@ export class TagCloudComponent implements OnInit {
   };
 
 
-   data: CloudData[] = [];
+  data: CloudData[] = [];
 
 
   constructor(private commentService: CommentService, private spacyService: SpacyService) {
@@ -64,17 +66,18 @@ export class TagCloudComponent implements OnInit {
 
     this.spacyService.analyse(commentsConcatenated, "de").subscribe((res: Result) => {
 
-      this.data = res.words.filter(w => w.tag === "NE" || w.tag === "NN" || w.tag === "NMP" || w.tag == "NNE").map(w =>
+        this.data = res.words.filter(w => w.tag === "NE" || w.tag === "NN" || w.tag === "NMP" || w.tag == "NNE").map(w =>
 
           new TagComment(COLOR[Math.floor(
-            Math.random()*(COLOR.length-1))],
+            Math.random() * (COLOR.length - 1))],
             true, null, null,
-            Math.floor(Math.random()*30-15), w.text,
-            "todo", Math.floor(Math.random()*10)+1)
-      )
+            Math.floor(Math.random() * 30 - 15), w.text,
+            "todo", Math.floor(Math.random() * 10) + 1)
+        )
       }
     );
   }
+
   tagClicked(clicked: CloudData) {
     console.log(clicked);
   }
-- 
GitLab