X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Fcomposables%2FUIClient.ts;h=841ec3dca8c42510c3ce504c05dbe42c45773adc;hb=82fa111074a9a4eed94579c0ff734a1564f8f8e6;hp=bbb4a4499b233a6aead4703eaf1b3de93004e32e;hpb=1f7173559059235505c4cca840d2c92a5b2daa6e;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/composables/UIClient.ts b/ui/web/src/composables/UIClient.ts index bbb4a449..841ec3dc 100644 --- a/ui/web/src/composables/UIClient.ts +++ b/ui/web/src/composables/UIClient.ts @@ -1,4 +1,3 @@ -import { promiseWithTimeout } from './Utils'; import { ProcedureName, type ProtocolResponse, @@ -146,28 +145,31 @@ export class UIClient { data: RequestPayload, ): Promise { let uuid: string; - return promiseWithTimeout( - new Promise((resolve, reject) => { - uuid = crypto.randomUUID(); - const msg = JSON.stringify([uuid, command, data]); + return await new Promise((resolve, reject) => { + uuid = crypto.randomUUID(); + const msg = JSON.stringify([uuid, command, data]); - if (this.ws.readyState !== WebSocket.OPEN) { - this.openWS(); - } - if (this.ws.readyState === WebSocket.OPEN) { + if (this.ws.readyState !== WebSocket.OPEN) { + this.openWS(); + } + if (this.ws.readyState === WebSocket.OPEN) { + const sendTimeout = setTimeout(() => { + this.deleteResponseHandler(uuid); + return reject(new Error(`Send request '${command}' message timeout`)); + }, 60 * 1000); + try { this.ws.send(msg); - } else { - throw new Error(`Send request '${command}' message: connection not opened`); + this.setResponseHandler(uuid, command, resolve, reject); + } catch (error) { + this.deleteResponseHandler(uuid); + reject(error); + } finally { + clearTimeout(sendTimeout); } - - this.setResponseHandler(uuid, command, resolve, reject); - }), - 120 * 1000, - Error(`Send request '${command}' message timeout`), - () => { - this.responseHandlers.delete(uuid); - }, - ); + } else { + throw new Error(`Send request '${command}' message: connection not opened`); + } + }); } private responseHandler(messageEvent: MessageEvent): void { @@ -180,15 +182,18 @@ export class UIClient { const [uuid, responsePayload] = response; if (this.responseHandlers.has(uuid) === true) { + const { procedureName, resolve, reject } = this.getResponseHandler(uuid)!; switch (responsePayload.status) { case ResponseStatus.SUCCESS: - this.getResponseHandler(uuid)?.resolve(responsePayload); + resolve(responsePayload); break; case ResponseStatus.FAILURE: - this.getResponseHandler(uuid)?.reject(responsePayload); + reject(responsePayload); break; default: - console.error(`Response status not supported: ${responsePayload.status}`); + console.error( + `Response status for procedure '${procedureName}' not supported: '${responsePayload.status}'`, + ); } this.deleteResponseHandler(uuid); } else {