From 4acf8d51b257c30b1a5dd99bd515ac22ddd5b564 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 21 Mar 2025 01:54:54 +0900 Subject: refactor(frontend): api client --- frontend/app/routes/golf.$gameId.play.tsx | 30 +++++++++++------------------- 1 file changed, 11 insertions(+), 19 deletions(-) (limited to 'frontend/app/routes/golf.$gameId.play.tsx') diff --git a/frontend/app/routes/golf.$gameId.play.tsx b/frontend/app/routes/golf.$gameId.play.tsx index 4f8468d..8f41257 100644 --- a/frontend/app/routes/golf.$gameId.play.tsx +++ b/frontend/app/routes/golf.$gameId.play.tsx @@ -3,11 +3,7 @@ import { useMemo } from "react"; import type { LoaderFunctionArgs, MetaFunction } from "react-router"; import { useLoaderData } from "react-router"; import { ensureUserLoggedIn } from "../.server/auth"; -import { - ApiAuthTokenContext, - apiGetGame, - apiGetGamePlayLatestState, -} from "../api/client"; +import { ApiClientContext, createApiClient } from "../api/client"; import GolfPlayApp from "../components/GolfPlayApp"; export const meta: MetaFunction = ({ data }) => [ @@ -20,29 +16,25 @@ export const meta: MetaFunction = ({ data }) => [ export async function loader({ params, request }: LoaderFunctionArgs) { const { token, user } = await ensureUserLoggedIn(request); + const apiClient = createApiClient(token); const gameId = Number(params.gameId); - const fetchGame = async () => { - return (await apiGetGame(token, gameId)).game; - }; - const fetchGameState = async () => { - return (await apiGetGamePlayLatestState(token, gameId)).state; - }; - - const [game, state] = await Promise.all([fetchGame(), fetchGameState()]); + const [{ game }, { state: gameState }] = await Promise.all([ + apiClient.getGame(gameId), + apiClient.getGamePlayLatestState(gameId), + ]); return { - apiAuthToken: token, + apiToken: token, game, player: user, - gameState: state, + gameState, }; } export default function GolfPlay() { - const { apiAuthToken, game, player, gameState } = - useLoaderData(); + const { apiToken, game, player, gameState } = useLoaderData(); const store = useMemo(() => { void game.game_id; @@ -52,14 +44,14 @@ export default function GolfPlay() { return ( - + - + ); } -- cgit v1.2.3-70-g09d2