diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-03-06 02:18:40 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-03-06 02:18:40 +0900 |
| commit | 46f9ba5d8c295454381655e6ec02ad3cf8bd79db (patch) | |
| tree | c54719cb129ee05f96c4898219588062f71daa36 /frontend/app/api/client.ts | |
| parent | 27f509ccf4fbfeaa1bc2580ae2251461dc44ebfa (diff) | |
| download | phperkaigi-2026-albatross-46f9ba5d8c295454381655e6ec02ad3cf8bd79db.tar.gz phperkaigi-2026-albatross-46f9ba5d8c295454381655e6ec02ad3cf8bd79db.tar.zst phperkaigi-2026-albatross-46f9ba5d8c295454381655e6ec02ad3cf8bd79db.zip | |
style: switch from tab to space indentation in frontend and worker/php
Update biome.json indentStyle from "tab" to "space" and reformat all
files in both workspaces.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'frontend/app/api/client.ts')
| -rw-r--r-- | frontend/app/api/client.ts | 212 |
1 files changed, 106 insertions, 106 deletions
diff --git a/frontend/app/api/client.ts b/frontend/app/api/client.ts index acc1ee9..9835e62 100644 --- a/frontend/app/api/client.ts +++ b/frontend/app/api/client.ts @@ -4,140 +4,140 @@ import { API_BASE_PATH } from "../config"; import type { paths } from "./schema"; const apiOrigin = - import.meta.env.VITE_API_BASE_URL ?? - (import.meta.env.DEV ? "http://localhost:8007" : ""); + import.meta.env.VITE_API_BASE_URL ?? + (import.meta.env.DEV ? "http://localhost:8007" : ""); const client = createClient<paths>({ - baseUrl: `${apiOrigin}${API_BASE_PATH}`, - credentials: "include", + baseUrl: `${apiOrigin}${API_BASE_PATH}`, + credentials: "include", }); export async function apiLogin(username: string, password: string) { - const { data, error } = await client.POST("/login", { - body: { - username, - password, - }, - }); - if (error) throw new Error(error.message); - return data; + const { data, error } = await client.POST("/login", { + body: { + username, + password, + }, + }); + if (error) throw new Error(error.message); + return data; } export async function apiLogout() { - const { error } = await client.POST("/logout"); - if (error) throw new Error(error.message); + const { error } = await client.POST("/logout"); + if (error) throw new Error(error.message); } export async function apiGetMe() { - const { data, error } = await client.GET("/me"); - if (error) return null; - return data; + const { data, error } = await client.GET("/me"); + if (error) return null; + return data; } class AuthenticatedApiClient { - async getGames() { - const { data, error } = await client.GET("/games"); - if (error) throw new Error(error.message); - return data; - } + async getGames() { + const { data, error } = await client.GET("/games"); + if (error) throw new Error(error.message); + return data; + } - async getGame(gameId: number) { - const { data, error } = await client.GET("/games/{game_id}", { - params: { - path: { game_id: gameId }, - }, - }); - if (error) throw new Error(error.message); - return data; - } + async getGame(gameId: number) { + const { data, error } = await client.GET("/games/{game_id}", { + params: { + path: { game_id: gameId }, + }, + }); + if (error) throw new Error(error.message); + return data; + } - async getGamePlayLatestState(gameId: number) { - const { data, error } = await client.GET( - "/games/{game_id}/play/latest_state", - { - params: { - path: { game_id: gameId }, - }, - }, - ); - if (error) throw new Error(error.message); - return data; - } + async getGamePlayLatestState(gameId: number) { + const { data, error } = await client.GET( + "/games/{game_id}/play/latest_state", + { + params: { + path: { game_id: gameId }, + }, + }, + ); + if (error) throw new Error(error.message); + return data; + } - async postGamePlayCode(gameId: number, code: string) { - const { error } = await client.POST("/games/{game_id}/play/code", { - params: { - path: { game_id: gameId }, - }, - body: { code }, - }); - if (error) throw new Error(error.message); - } + async postGamePlayCode(gameId: number, code: string) { + const { error } = await client.POST("/games/{game_id}/play/code", { + params: { + path: { game_id: gameId }, + }, + body: { code }, + }); + if (error) throw new Error(error.message); + } - async postGamePlaySubmit(gameId: number, code: string) { - const { data, error } = await client.POST("/games/{game_id}/play/submit", { - params: { - path: { game_id: gameId }, - }, - body: { code }, - }); - if (error) throw new Error(error.message); - return data; - } + async postGamePlaySubmit(gameId: number, code: string) { + const { data, error } = await client.POST("/games/{game_id}/play/submit", { + params: { + path: { game_id: gameId }, + }, + body: { code }, + }); + if (error) throw new Error(error.message); + return data; + } - async getGamePlaySubmissions(gameId: number) { - const { data, error } = await client.GET( - "/games/{game_id}/play/submissions", - { - params: { - path: { game_id: gameId }, - }, - }, - ); - if (error) throw new Error(error.message); - return data; - } + async getGamePlaySubmissions(gameId: number) { + const { data, error } = await client.GET( + "/games/{game_id}/play/submissions", + { + params: { + path: { game_id: gameId }, + }, + }, + ); + if (error) throw new Error(error.message); + return data; + } - async getGameWatchRanking(gameId: number) { - const { data, error } = await client.GET("/games/{game_id}/watch/ranking", { - params: { - path: { game_id: gameId }, - }, - }); - if (error) throw new Error(error.message); - return data; - } + async getGameWatchRanking(gameId: number) { + const { data, error } = await client.GET("/games/{game_id}/watch/ranking", { + params: { + path: { game_id: gameId }, + }, + }); + if (error) throw new Error(error.message); + return data; + } - async getGameWatchLatestStates(gameId: number) { - const { data, error } = await client.GET( - "/games/{game_id}/watch/latest_states", - { - params: { - path: { game_id: gameId }, - }, - }, - ); - if (error) throw new Error(error.message); - return data; - } + async getGameWatchLatestStates(gameId: number) { + const { data, error } = await client.GET( + "/games/{game_id}/watch/latest_states", + { + params: { + path: { game_id: gameId }, + }, + }, + ); + if (error) throw new Error(error.message); + return data; + } - async getTournament(tournamentId: number) { - const { data, error } = await client.GET("/tournaments/{tournament_id}", { - params: { - path: { tournament_id: tournamentId }, - }, - }); - if (error) throw new Error(error.message); - return data; - } + async getTournament(tournamentId: number) { + const { data, error } = await client.GET("/tournaments/{tournament_id}", { + params: { + path: { tournament_id: tournamentId }, + }, + }); + if (error) throw new Error(error.message); + return data; + } } const apiClient = new AuthenticatedApiClient(); export function createApiClient() { - return apiClient; + return apiClient; } export const ApiClientContext = createContext<AuthenticatedApiClient | null>( - null, + null, ); |
