Align more request and reponse handlers name
authorJérôme Benoit <jerome.benoit@sap.com>
Tue, 23 Aug 2022 15:06:51 +0000 (17:06 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Tue, 23 Aug 2022 15:06:51 +0000 (17:06 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/ui-server/ui-services/AbstractUIService.ts
src/ui/web/src/composable/UIClient.ts

index 30ad449a33775b4ed49d970cf2a419c5ee23a458..805bda20dbd704744ce8503a77116895d8874af6 100644 (file)
@@ -43,7 +43,7 @@ export default abstract class AbstractUIService {
     let requestPayload: RequestPayload;
     let responsePayload: ResponsePayload;
     try {
-      [messageId, command, requestPayload] = this.dataValidation(request);
+      [messageId, command, requestPayload] = this.requestValidation(request);
 
       if (this.requestHandlers.has(command) === false) {
         throw new BaseError(
@@ -94,7 +94,7 @@ export default abstract class AbstractUIService {
 
   // Validate the raw data received from the WebSocket
   // TODO: should probably be moved to the ws verify clients callback
-  private dataValidation(rawData: RawData): ProtocolRequest {
+  private requestValidation(rawData: RawData): ProtocolRequest {
     // logger.debug(
     //   `${this.uiServer.logPrefix(
     //     moduleName,
index ddaf32ed208d2f29ebabd4fa52c991825bfb3d47..eb8e013e371e8e958e654bf00b62b80846a00922 100644 (file)
@@ -29,7 +29,7 @@ export default class UIClient {
 
     this._responseHandlers = new Map<string, ResponseHandler>();
 
-    this._ws.onmessage = this.handleResponse.bind(this);
+    this._ws.onmessage = this.responseHandler.bind(this);
   }
 
   public static get instance() {
@@ -109,7 +109,7 @@ export default class UIClient {
     );
   }
 
-  private handleResponse(messageEvent: MessageEvent<string>): void {
+  private responseHandler(messageEvent: MessageEvent<string>): void {
     const data = JSON.parse(messageEvent.data) as ProtocolResponse;
 
     if (Utils.isIterable(data) === false) {