diff --git a/pac-man-board-game/ClientApp/src/classes/WebSocketService.ts b/pac-man-board-game/ClientApp/src/classes/WebSocketService.ts index 22f118a..5bf5bdc 100644 --- a/pac-man-board-game/ClientApp/src/classes/WebSocketService.ts +++ b/pac-man-board-game/ClientApp/src/classes/WebSocketService.ts @@ -64,8 +64,8 @@ export default class WebSocketService { }); } - public async close(): Promise { - return new Promise(() => this.ws?.close()); + public close(): void { + this.ws?.close(); } public isOpen(): boolean { diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx index 02751f3..cd7b297 100644 --- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx @@ -31,6 +31,7 @@ export const GameComponent: Component = () => { game.connectToServer(); startGameLoop(); + return () => game.disconnect(); }, []); return ( diff --git a/pac-man-board-game/ClientApp/src/game/game.ts b/pac-man-board-game/ClientApp/src/game/game.ts index ee9fc7b..95528fd 100644 --- a/pac-man-board-game/ClientApp/src/game/game.ts +++ b/pac-man-board-game/ClientApp/src/game/game.ts @@ -3,7 +3,7 @@ import {Action} from "../classes/actions"; export default class Game { - private _wsService: WebSocketService; + private readonly _wsService: WebSocketService; constructor() { this._wsService = new WebSocketService("wss://localhost:3000/api/game"); @@ -38,6 +38,10 @@ export default class Game { public isConnected(): boolean { return this._wsService.isOpen(); } + + public disconnect(): void { + this._wsService.close(); + } private createPlayers(): void { throw new Error("Not implemented");