feat(ui): prefer arrow functions
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 18 Feb 2024 13:27:59 +0000 (14:27 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 18 Feb 2024 13:27:59 +0000 (14:27 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
ui/web/src/components/charging-stations/CSConnector.vue
ui/web/src/components/charging-stations/CSData.vue
ui/web/src/views/ChargingStationsView.vue

index 8b577f580661d2eb6dd171f1973f76b7eea30bba..e0b62e4f47f5199b900205b6abfc670511c9cb40 100644 (file)
@@ -43,7 +43,7 @@ const uiClient = getCurrentInstance()?.appContext.config.globalProperties.$uiCli
 
 const $toast = useToast()
 
-function stopTransaction(): void {
+const stopTransaction = (): void => {
   uiClient
     .stopTransaction(props.hashId, props.connector.transactionId)
     .then(() => {
@@ -54,7 +54,7 @@ function stopTransaction(): void {
       console.error('Error at stopping transaction:', error)
     })
 }
-function startAutomaticTransactionGenerator(): void {
+const startAutomaticTransactionGenerator = (): void => {
   uiClient
     .startAutomaticTransactionGenerator(props.hashId, props.connectorId)
     .then(() => {
@@ -65,7 +65,7 @@ function startAutomaticTransactionGenerator(): void {
       console.error('Error at starting automatic transaction generator:', error)
     })
 }
-function stopAutomaticTransactionGenerator(): void {
+const stopAutomaticTransactionGenerator = (): void => {
   uiClient
     .stopAutomaticTransactionGenerator(props.hashId, props.connectorId)
     .then(() => {
index 423014bdae8b9e27ae6c92e3a4d93f8da468fcfb..300cfa441ea35b2fdfebf25de22bf31329469a7f 100644 (file)
@@ -76,7 +76,7 @@ const props = defineProps<{
   chargingStation: ChargingStationData
 }>()
 
-function getConnectors(): ConnectorStatus[] {
+const getConnectors = (): ConnectorStatus[] => {
   if (Array.isArray(props.chargingStation.evses) && props.chargingStation.evses.length > 0) {
     const connectorsStatus: ConnectorStatus[] = []
     for (const [evseId, evseStatus] of props.chargingStation.evses.entries()) {
@@ -90,15 +90,15 @@ function getConnectors(): ConnectorStatus[] {
   }
   return props.chargingStation.connectors?.slice(1)
 }
-function getATGStatus(connectorId: number): Status | undefined {
+const getATGStatus = (connectorId: number): Status | undefined => {
   return props.chargingStation.automaticTransactionGenerator
     ?.automaticTransactionGeneratorStatuses?.[connectorId - 1]
 }
-function getSupervisionUrl(): string {
+const getSupervisionUrl = (): string => {
   const supervisionUrl = new URL(props.chargingStation.supervisionUrl)
   return `${supervisionUrl.protocol}//${supervisionUrl.host.split('.').join('.\u200b')}`
 }
-function getWsState(): string {
+const getWsState = (): string => {
   switch (props.chargingStation?.wsState) {
     case WebSocket.CONNECTING:
       return 'Connecting'
@@ -117,7 +117,7 @@ const uiClient = getCurrentInstance()?.appContext.config.globalProperties.$uiCli
 
 const $toast = useToast()
 
-function startChargingStation(): void {
+const startChargingStation = (): void => {
   uiClient
     .startChargingStation(props.chargingStation.stationInfo.hashId)
     .then(() => {
@@ -128,7 +128,7 @@ function startChargingStation(): void {
       console.error('Error at starting charging station', error)
     })
 }
-function stopChargingStation(): void {
+const stopChargingStation = (): void => {
   uiClient
     .stopChargingStation(props.chargingStation.stationInfo.hashId)
     .then(() => {
@@ -139,7 +139,7 @@ function stopChargingStation(): void {
       console.error('Error at stopping charging station', error)
     })
 }
-function openConnection(): void {
+const openConnection = (): void => {
   uiClient
     .openConnection(props.chargingStation.stationInfo.hashId)
     .then(() => {
@@ -150,7 +150,7 @@ function openConnection(): void {
       console.error('Error at opening connection', error)
     })
 }
-function closeConnection(): void {
+const closeConnection = (): void => {
   uiClient
     .closeConnection(props.chargingStation.stationInfo.hashId)
     .then(() => {
@@ -161,7 +161,7 @@ function closeConnection(): void {
       console.error('Error at closing connection', error)
     })
 }
-function deleteChargingStation(): void {
+const deleteChargingStation = (): void => {
   uiClient
     .deleteChargingStation(props.chargingStation.stationInfo.hashId)
     .then(() => {
index b8a719b75ecaacd5fc49e660e7d9abb0acb4bcff..3549ec7c3ef7f3a3310638d1fd69601ef9c8c4ae 100644 (file)
@@ -34,7 +34,7 @@ const uiClient = app?.appContext.config.globalProperties.$uiClient
 
 const $toast = useToast()
 
-function loadChargingStations(reloadCallback?: () => void): void {
+const loadChargingStations = (reloadCallback?: () => void): void => {
   if (state.isLoading === false) {
     state.isLoading = true
     uiClient
@@ -57,7 +57,7 @@ function loadChargingStations(reloadCallback?: () => void): void {
   }
 }
 
-function startSimulator(): void {
+const startSimulator = (): void => {
   uiClient
     .startSimulator()
     .then(() => {
@@ -68,7 +68,7 @@ function startSimulator(): void {
       console.error('Error at starting simulator:', error)
     })
 }
-function stopSimulator(): void {
+const stopSimulator = (): void => {
   uiClient
     .stopSimulator()
     .then(() => {