Cleanup workers handling classes.
[e-mobility-charging-stations-simulator.git] / src / utils / Utils.ts
index 83cb66ecfb2605c481695594a4cb89a99b8de9ea..16cb7fa3fca34cd39f803607ec6b70fb3f8dfa78 100644 (file)
@@ -1,3 +1,4 @@
+import { WebSocketCloseEventStatusString } from '../types/WebSocket';
 import { v4 as uuid } from 'uuid';
 
 export default class Utils {
@@ -10,14 +11,14 @@ export default class Utils {
   }
 
   static secondsToHHMMSS(seconds: number): string {
-    return new Date(seconds * 1000).toISOString().substr(11, 8);
+    return Utils.milliSecondsToHHMMSS(seconds * 1000);
   }
 
   static milliSecondsToHHMMSS(milliSeconds: number): string {
     return new Date(milliSeconds).toISOString().substr(11, 8);
   }
 
-  static removeExtraEmptyLines(tab): void {
+  static removeExtraEmptyLines(tab: string[]): void {
     // Start from the end
     for (let i = tab.length - 1; i > 0; i--) {
       // Two consecutive empty lines?
@@ -156,7 +157,7 @@ export default class Utils {
   }
 
   static isNullOrUndefined(value): boolean {
-    // eslint-disable-next-line no-eq-null
+    // eslint-disable-next-line no-eq-null, eqeqeq
     if (value == null) {
       return true;
     }
@@ -188,4 +189,24 @@ export default class Utils {
     const randomSum = delay * 0.2 * Math.random(); // 0-20% of the delay
     return delay + randomSum;
   }
+
+  static getWebSocketCloseEventStatusString(code: number): string {
+    if (code >= 0 && code <= 999) {
+      return '(Unused)';
+    } else if (code >= 1016) {
+      if (code <= 1999) {
+        return '(For WebSocket standard)';
+      } else if (code <= 2999) {
+        return '(For WebSocket extensions)';
+      } else if (code <= 3999) {
+        return '(For libraries and frameworks)';
+      } else if (code <= 4999) {
+        return '(For applications)';
+      }
+    }
+    if (!Utils.isUndefined(WebSocketCloseEventStatusString[code])) {
+      return WebSocketCloseEventStatusString[code] as string;
+    }
+    return '(Unknown)';
+  }
 }