chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / src / charging-station / ConfigurationKeyUtils.ts
index c7302e70577ef5072297ee18e6e14d6c8bba3e4a..044c09230b85c9e1ee01ecd41b8fe37be2cc5183 100644 (file)
-import type { ChargingStation } from './ChargingStation.js';
-import type { ConfigurationKey, ConfigurationKeyType } from '../types/index.js';
-import { logger } from '../utils/index.js';
+import type { ChargingStation } from './ChargingStation.js'
+import type { ConfigurationKey, ConfigurationKeyType } from '../types/index.js'
+import { logger } from '../utils/index.js'
 
 interface ConfigurationKeyOptions {
-  readonly?: boolean;
-  visible?: boolean;
-  reboot?: boolean;
+  readonly?: boolean
+  visible?: boolean
+  reboot?: boolean
 }
 interface DeleteConfigurationKeyParams {
-  save?: boolean;
-  caseInsensitive?: boolean;
+  save?: boolean
+  caseInsensitive?: boolean
 }
 interface AddConfigurationKeyParams {
-  overwrite?: boolean;
-  save?: boolean;
+  overwrite?: boolean
+  save?: boolean
 }
 
 export const getConfigurationKey = (
   chargingStation: ChargingStation,
   key: ConfigurationKeyType,
-  caseInsensitive = false,
+  caseInsensitive = false
 ): ConfigurationKey | undefined => {
   return chargingStation.ocppConfiguration?.configurationKey?.find((configElement) => {
     if (caseInsensitive) {
-      return configElement.key.toLowerCase() === key.toLowerCase();
+      return configElement.key.toLowerCase() === key.toLowerCase()
     }
-    return configElement.key === key;
-  });
-};
+    return configElement.key === key
+  })
+}
 
 export const addConfigurationKey = (
   chargingStation: ChargingStation,
   key: ConfigurationKeyType,
   value: string,
   options?: ConfigurationKeyOptions,
-  params?: AddConfigurationKeyParams,
+  params?: AddConfigurationKeyParams
 ): void => {
   options = {
     ...{
       readonly: false,
       visible: true,
-      reboot: false,
+      reboot: false
     },
-    ...options,
-  };
-  params = { ...{ overwrite: false, save: false }, ...params };
-  let keyFound = getConfigurationKey(chargingStation, key);
+    ...options
+  }
+  params = { ...{ overwrite: false, save: false }, ...params }
+  let keyFound = getConfigurationKey(chargingStation, key)
   if (keyFound !== undefined && params?.overwrite === true) {
     deleteConfigurationKey(chargingStation, keyFound.key, {
-      save: false,
-    });
-    keyFound = undefined;
+      save: false
+    })
+    keyFound = undefined
   }
   if (keyFound === undefined) {
     chargingStation.ocppConfiguration?.configurationKey?.push({
       key,
+      // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
       readonly: options.readonly!,
       value,
       visible: options.visible,
-      reboot: options.reboot,
-    });
-    params?.save && chargingStation.saveOcppConfiguration();
+      reboot: options.reboot
+    })
+    params?.save === true && chargingStation.saveOcppConfiguration()
   } else {
     logger.error(
       `${chargingStation.logPrefix()} Trying to add an already existing configuration key: %j`,
-      keyFound,
-    );
+      keyFound
+    )
   }
-};
+}
 
 export const setConfigurationKeyValue = (
   chargingStation: ChargingStation,
   key: ConfigurationKeyType,
   value: string,
-  caseInsensitive = false,
+  caseInsensitive = false
 ): void => {
-  const keyFound = getConfigurationKey(chargingStation, key, caseInsensitive);
+  const keyFound = getConfigurationKey(chargingStation, key, caseInsensitive)
   if (keyFound !== undefined) {
+    // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
     chargingStation.ocppConfiguration!.configurationKey![
+      // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
       chargingStation.ocppConfiguration!.configurationKey!.indexOf(keyFound)
-    ].value = value;
-    chargingStation.saveOcppConfiguration();
+    ].value = value
+    chargingStation.saveOcppConfiguration()
   } else {
     logger.error(
       `${chargingStation.logPrefix()} Trying to set a value on a non existing configuration key: %j`,
-      { key, value },
-    );
+      { key, value }
+    )
   }
-};
+}
 
 export const deleteConfigurationKey = (
   chargingStation: ChargingStation,
   key: ConfigurationKeyType,
-  params?: DeleteConfigurationKeyParams,
+  params?: DeleteConfigurationKeyParams
 ): ConfigurationKey[] | undefined => {
-  params = { ...{ save: true, caseInsensitive: false }, ...params };
-  const keyFound = getConfigurationKey(chargingStation, key, params?.caseInsensitive);
+  params = { ...{ save: true, caseInsensitive: false }, ...params }
+  const keyFound = getConfigurationKey(chargingStation, key, params?.caseInsensitive)
   if (keyFound !== undefined) {
     const deletedConfigurationKey = chargingStation.ocppConfiguration?.configurationKey?.splice(
       chargingStation.ocppConfiguration.configurationKey.indexOf(keyFound),
-      1,
-    );
-    params?.save && chargingStation.saveOcppConfiguration();
-    return deletedConfigurationKey;
+      1
+    )
+    params?.save === true && chargingStation.saveOcppConfiguration()
+    return deletedConfigurationKey
   }
-};
+}