refactor(ui): cleanup casing style
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 18 Feb 2024 14:36:11 +0000 (15:36 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 18 Feb 2024 14:36:11 +0000 (15:36 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
ui/web/src/components/charging-stations/CSData.vue
ui/web/src/composables/UIClient.ts
ui/web/src/main.ts
ui/web/src/types/ConfigurationType.ts
ui/web/src/types/index.ts

index 300cfa441ea35b2fdfebf25de22bf31329469a7f..b8fb0662b4b8a16e086e3bfef1ad33544a3d35fc 100644 (file)
@@ -7,7 +7,7 @@
     <td class="cs-table__column">
       {{ getSupervisionUrl() }}
     </td>
-    <td class="cs-table__column">{{ getWsState() }}</td>
+    <td class="cs-table__column">{{ getWSState() }}</td>
     <td class="cs-table__column">
       {{ props.chargingStation?.bootNotificationResponse?.status ?? 'Ø' }}
     </td>
@@ -98,7 +98,7 @@ const getSupervisionUrl = (): string => {
   const supervisionUrl = new URL(props.chargingStation.supervisionUrl)
   return `${supervisionUrl.protocol}//${supervisionUrl.host.split('.').join('.\u200b')}`
 }
-const getWsState = (): string => {
+const getWSState = (): string => {
   switch (props.chargingStation?.wsState) {
     case WebSocket.CONNECTING:
       return 'Connecting'
index ce459f1b253504abbb478fa54b5aef5544646a22..81a322d31c73d1d2a0222f2086fa6d498e796a22 100644 (file)
@@ -1,12 +1,12 @@
 import {
   ApplicationProtocol,
   AuthenticationType,
-  type ConfigurationData,
   ProcedureName,
   type ProtocolResponse,
   type RequestPayload,
   type ResponsePayload,
-  ResponseStatus
+  ResponseStatus,
+  type UIServerConfigurationSection
 } from '@/types'
 
 type ResponseHandler = {
@@ -16,21 +16,26 @@ type ResponseHandler = {
 }
 
 export class UIClient {
-  private static instance: UIClient | null = null
+  private static readonly instances: Map<number, UIClient> = new Map<number, UIClient>()
 
   private ws!: WebSocket
   private responseHandlers: Map<string, ResponseHandler>
 
-  private constructor(private configuration: ConfigurationData) {
+  private constructor(private uiServerConfiguration: UIServerConfigurationSection) {
     this.openWS()
     this.responseHandlers = new Map<string, ResponseHandler>()
   }
 
-  public static getInstance(configuration: ConfigurationData) {
-    if (UIClient.instance === null) {
-      UIClient.instance = new UIClient(configuration)
+  public static getInstance(
+    serverId: number,
+    uiServerConfiguration?: UIServerConfigurationSection
+  ): UIClient {
+    if (!UIClient.instances.has(serverId) && uiServerConfiguration != null) {
+      UIClient.instances.set(serverId, new UIClient(uiServerConfiguration))
+    } else if (!UIClient.instances.has(serverId)) {
+      throw new Error(`UI client instance not found for server id: ${serverId}`)
     }
-    return UIClient.instance
+    return UIClient.instances.get(serverId)!
   }
 
   public registerWSEventListener<K extends keyof WebSocketEventMap>(
@@ -138,15 +143,15 @@ export class UIClient {
 
   private openWS(): void {
     const protocols =
-      this.configuration.uiServer.authentication?.enabled === true &&
-      this.configuration.uiServer.authentication?.type === AuthenticationType.PROTOCOL_BASIC_AUTH
+      this.uiServerConfiguration.authentication?.enabled === true &&
+      this.uiServerConfiguration.authentication?.type === AuthenticationType.PROTOCOL_BASIC_AUTH
         ? [
-            `${this.configuration.uiServer.protocol}${this.configuration.uiServer.version}`,
-            `authorization.basic.${btoa(`${this.configuration.uiServer.authentication.username}:${this.configuration.uiServer.authentication.password}`).replace(/={1,2}$/, '')}`
+            `${this.uiServerConfiguration.protocol}${this.uiServerConfiguration.version}`,
+            `authorization.basic.${btoa(`${this.uiServerConfiguration.authentication.username}:${this.uiServerConfiguration.authentication.password}`).replace(/={1,2}$/, '')}`
           ]
-        : `${this.configuration.uiServer.protocol}${this.configuration.uiServer.version}`
+        : `${this.uiServerConfiguration.protocol}${this.uiServerConfiguration.version}`
     this.ws = new WebSocket(
-      `${this.configuration.uiServer.secure === true ? ApplicationProtocol.WSS : ApplicationProtocol.WS}://${this.configuration.uiServer.host}:${this.configuration.uiServer.port}`,
+      `${this.uiServerConfiguration.secure === true ? ApplicationProtocol.WSS : ApplicationProtocol.WS}://${this.uiServerConfiguration.host}:${this.uiServerConfiguration.port}`,
       protocols
     )
     this.ws.onopen = openEvent => {
index bb42f57690273dd5c88115fd1f6228520f549725..8c993f799a21c180808caa1327995ceda275b061 100644 (file)
@@ -14,7 +14,10 @@ const initializeApp = (config: ConfigurationData) => {
     console.info('Error info:', info)
     // TODO: add code for UI notifications or other error handling logic
   }
-  app.config.globalProperties.$uiClient = UIClient.getInstance(config)
+  if (Array.isArray(config.uiServer)) {
+    throw new Error('Multiple UI server configurations is not yet supported')
+  }
+  app.config.globalProperties.$uiClient = UIClient.getInstance(0, config.uiServer)
   app.config.globalProperties.$uiClient.registerWSEventListener('open', () => {
     app.config.globalProperties.$uiClient
       .listChargingStations()
index 93cfe86ef56fde162a89a78c065b2f5d00e44c2c..51bd21388b82b6c4260c5d1e2931f8611f45bac2 100644 (file)
@@ -1,10 +1,10 @@
 import type { AuthenticationType, Protocol, ProtocolVersion } from './UIProtocol'
 
 export type ConfigurationData = {
-  uiServer: UIServerConfigurationSection
+  uiServer: UIServerConfigurationSection | UIServerConfigurationSection[]
 }
 
-type UIServerConfigurationSection = {
+export type UIServerConfigurationSection = {
   host: string
   port: number
   secure?: boolean
index 3e38d5c262bbe7b47b610bd72f13c0aa504a1153..596cc933303c66dfb4f05677551fd1483f2f68b0 100644 (file)
@@ -4,7 +4,7 @@ export type {
   ConnectorStatus,
   Status
 } from './ChargingStationType'
-export type { ConfigurationData } from './ConfigurationType'
+export type { ConfigurationData, UIServerConfigurationSection } from './ConfigurationType'
 export {
   ApplicationProtocol,
   AuthenticationType,