File size: 1,634 Bytes
116b4cb | 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 | /**
* API utility functions for making HTTP requests
*/
const DEFAULT_HEADERS: Record<string, string> = {
"Content-Type": "application/json",
};
interface ApiOptions extends RequestInit {
headers?: Record<string, string>;
}
export async function get(url: string, options: ApiOptions = {}) {
const response = await fetch(url, {
...options,
method: "GET",
headers: { ...DEFAULT_HEADERS, ...options.headers },
});
return handleResponse(response);
}
export async function post(url: string, data: unknown, options: ApiOptions = {}) {
const response = await fetch(url, {
...options,
method: "POST",
headers: { ...DEFAULT_HEADERS, ...options.headers },
body: JSON.stringify(data),
});
return handleResponse(response);
}
export async function put(url: string, data: unknown, options: ApiOptions = {}) {
const response = await fetch(url, {
...options,
method: "PUT",
headers: { ...DEFAULT_HEADERS, ...options.headers },
body: JSON.stringify(data),
});
return handleResponse(response);
}
export async function del(url: string, options: ApiOptions = {}) {
const response = await fetch(url, {
...options,
method: "DELETE",
headers: { ...DEFAULT_HEADERS, ...options.headers },
});
return handleResponse(response);
}
async function handleResponse(response: Response) {
const data = await response.json();
if (!response.ok) {
const error: any = new Error(data.error || "An error occurred");
error.status = response.status;
error.data = data;
throw error;
}
return data;
}
const api = { get, post, put, del };
export default api;
|