arbret/frontend/app/api/client.ts

72 lines
1.5 KiB
TypeScript
Raw Permalink Normal View History

import { API_URL } from "../config";
2025-12-19 11:08:19 +01:00
/**
* Base API client that centralizes fetch configuration.
2025-12-19 11:08:19 +01:00
* All requests include credentials and proper headers.
*/
export class ApiError extends Error {
constructor(
message: string,
public status: number,
public data?: unknown
) {
super(message);
this.name = "ApiError";
}
}
async function request<T>(endpoint: string, options: RequestInit = {}): Promise<T> {
2025-12-19 11:08:19 +01:00
const url = `${API_URL}${endpoint}`;
2025-12-20 11:12:11 +01:00
const headers: Record<string, string> = {
...(options.headers as Record<string, string>),
2025-12-19 11:08:19 +01:00
};
2025-12-19 11:08:19 +01:00
if (options.body && typeof options.body === "string") {
headers["Content-Type"] = "application/json";
}
2025-12-19 11:08:19 +01:00
const res = await fetch(url, {
...options,
headers,
credentials: "include",
});
2025-12-19 11:08:19 +01:00
if (!res.ok) {
let data: unknown;
try {
data = await res.json();
} catch {
// Response wasn't JSON
}
throw new ApiError(`Request failed: ${res.status}`, res.status, data);
2025-12-19 11:08:19 +01:00
}
2025-12-19 11:08:19 +01:00
return res.json();
}
/**
* Base API client methods.
* Domain-specific APIs should use these internally.
*/
export const client = {
2025-12-19 11:08:19 +01:00
get<T>(endpoint: string): Promise<T> {
return request<T>(endpoint);
},
2025-12-19 11:08:19 +01:00
post<T>(endpoint: string, body?: unknown): Promise<T> {
return request<T>(endpoint, {
method: "POST",
body: body ? JSON.stringify(body) : undefined,
});
},
2025-12-19 11:08:19 +01:00
put<T>(endpoint: string, body?: unknown): Promise<T> {
return request<T>(endpoint, {
method: "PUT",
body: body ? JSON.stringify(body) : undefined,
});
},
};