aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfPlayApp.client.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-11 22:51:03 +0900
committernsfisis <nsfisis@gmail.com>2024-08-11 22:51:12 +0900
commitc7599c74722864d54c96a3f3d52e28290abb9eac (patch)
tree18ace008aa147f0ea17d4a3ecdba4b9794afd15d /frontend/app/components/GolfPlayApp.client.tsx
parentfe8b14ccc77c829a2baa4034edb22daff9d5d8f8 (diff)
downloadphperkaigi-2025-albatross-c7599c74722864d54c96a3f3d52e28290abb9eac.tar.gz
phperkaigi-2025-albatross-c7599c74722864d54c96a3f3d52e28290abb9eac.tar.zst
phperkaigi-2025-albatross-c7599c74722864d54c96a3f3d52e28290abb9eac.zip
refactor(frontend): add stronger typing to useWebSocket()
Diffstat (limited to 'frontend/app/components/GolfPlayApp.client.tsx')
-rw-r--r--frontend/app/components/GolfPlayApp.client.tsx11
1 files changed, 7 insertions, 4 deletions
diff --git a/frontend/app/components/GolfPlayApp.client.tsx b/frontend/app/components/GolfPlayApp.client.tsx
index 70c463f..4e200e2 100644
--- a/frontend/app/components/GolfPlayApp.client.tsx
+++ b/frontend/app/components/GolfPlayApp.client.tsx
@@ -1,14 +1,15 @@
import { useEffect, useState } from "react";
-import useWebSocket, { ReadyState } from "react-use-websocket";
import { useDebouncedCallback } from "use-debounce";
import type { components } from "../.server/api/schema";
+import useWebSocket, { ReadyState } from "../hooks/useWebSocket";
import GolfPlayAppConnecting from "./GolfPlayApps/GolfPlayAppConnecting";
import GolfPlayAppFinished from "./GolfPlayApps/GolfPlayAppFinished";
import GolfPlayAppGaming from "./GolfPlayApps/GolfPlayAppGaming";
import GolfPlayAppStarting from "./GolfPlayApps/GolfPlayAppStarting";
import GolfPlayAppWaiting from "./GolfPlayApps/GolfPlayAppWaiting";
-type WebSocketMessage = components["schemas"]["GamePlayerMessageS2C"];
+type GamePlayerMessageS2C = components["schemas"]["GamePlayerMessageS2C"];
+type GamePlayerMessageC2S = components["schemas"]["GamePlayerMessageC2S"];
type Game = components["schemas"]["Game"];
@@ -26,8 +27,10 @@ export default function GolfPlayApp({
? `ws://localhost:8002/iosdc-japan/2024/code-battle/sock/golf/${game.game_id}/play?token=${sockToken}`
: `wss://t.nil.ninja/iosdc-japan/2024/code-battle/sock/golf/${game.game_id}/play?token=${sockToken}`;
- const { sendJsonMessage, lastJsonMessage, readyState } =
- useWebSocket<WebSocketMessage>(socketUrl, {});
+ const { sendJsonMessage, lastJsonMessage, readyState } = useWebSocket<
+ GamePlayerMessageS2C,
+ GamePlayerMessageC2S
+ >(socketUrl);
const [gameState, setGameState] = useState<GameState>("connecting");