1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
import { useAtomValue, useSetAtom } from "jotai";
import { useHydrateAtoms } from "jotai/utils";
import { useContext, useEffect, useState } from "react";
import { useTimer } from "react-use-precision-timer";
import { useDebouncedCallback } from "use-debounce";
import { ApiClientContext } from "../api/client";
import type { components } from "../api/schema";
import {
gameStateKindAtom,
handleSubmitCodePostAtom,
handleSubmitCodePreAtom,
setCurrentTimestampAtom,
setDurationSecondsAtom,
setGameStartedAtAtom,
setLatestGameStateAtom,
} from "../states/play";
import GolfPlayAppFinished from "./GolfPlayApps/GolfPlayAppFinished";
import GolfPlayAppGaming from "./GolfPlayApps/GolfPlayAppGaming";
import GolfPlayAppLoading from "./GolfPlayApps/GolfPlayAppLoading";
import GolfPlayAppStarting from "./GolfPlayApps/GolfPlayAppStarting";
import GolfPlayAppWaiting from "./GolfPlayApps/GolfPlayAppWaiting";
type Game = components["schemas"]["Game"];
type User = components["schemas"]["User"];
type LatestGameState = components["schemas"]["LatestGameState"];
type Props = {
game: Game;
player: User;
initialGameState: LatestGameState;
};
export default function GolfPlayApp({ game, player, initialGameState }: Props) {
useHydrateAtoms([
[setDurationSecondsAtom, game.duration_seconds],
[setGameStartedAtAtom, game.started_at ?? null],
[setLatestGameStateAtom, initialGameState],
]);
const apiClient = useContext(ApiClientContext)!;
const gameStateKind = useAtomValue(gameStateKindAtom);
const setGameStartedAt = useSetAtom(setGameStartedAtAtom);
const setCurrentTimestamp = useSetAtom(setCurrentTimestampAtom);
const handleSubmitCodePre = useSetAtom(handleSubmitCodePreAtom);
const handleSubmitCodePost = useSetAtom(handleSubmitCodePostAtom);
const setLatestGameState = useSetAtom(setLatestGameStateAtom);
useTimer({ delay: 1000, startImmediately: true }, setCurrentTimestamp);
const playerProfile = {
id: player.user_id,
displayName: player.display_name,
iconPath: player.icon_path ?? null,
};
const onCodeChange = useDebouncedCallback(async (code: string) => {
if (game.game_type === "1v1") {
console.log("player:c2s:code");
await apiClient.postGamePlayCode(game.game_id, code);
}
}, 1000);
const onCodeSubmit = useDebouncedCallback(async (code: string) => {
if (code === "") {
return;
}
console.log("player:c2s:submit");
handleSubmitCodePre();
await apiClient.postGamePlaySubmit(game.game_id, code);
handleSubmitCodePost();
}, 1000);
const [isDataPolling, setIsDataPolling] = useState(false);
useEffect(() => {
if (isDataPolling) {
return;
}
const timerId = setInterval(async () => {
if (isDataPolling) {
return;
}
setIsDataPolling(true);
try {
if (gameStateKind === "waiting") {
const { game: g } = await apiClient.getGame(game.game_id);
if (g.started_at != null) {
setGameStartedAt(g.started_at);
}
} else if (gameStateKind === "gaming") {
const { state } = await apiClient.getGamePlayLatestState(
game.game_id,
);
setLatestGameState(state);
}
} catch (error) {
console.error(error);
} finally {
setIsDataPolling(false);
}
}, 1000);
return () => {
clearInterval(timerId);
};
}, [
isDataPolling,
apiClient,
game.game_id,
gameStateKind,
setGameStartedAt,
setLatestGameState,
]);
if (gameStateKind === "loading") {
return <GolfPlayAppLoading />;
} else if (gameStateKind === "waiting") {
return (
<GolfPlayAppWaiting
gameDisplayName={game.display_name}
playerProfile={playerProfile}
/>
);
} else if (gameStateKind === "starting") {
return <GolfPlayAppStarting gameDisplayName={game.display_name} />;
} else if (gameStateKind === "gaming") {
return (
<GolfPlayAppGaming
gameDisplayName={game.display_name}
playerProfile={playerProfile}
problemTitle={game.problem.title}
problemDescription={game.problem.description}
sampleCode={game.problem.sample_code}
initialCode={initialGameState.code}
onCodeChange={onCodeChange}
onCodeSubmit={onCodeSubmit}
/>
);
} else if (gameStateKind === "finished") {
return <GolfPlayAppFinished />;
}
}
|