umami/src/lib/fetch.ts
2025-02-08 23:38:21 -08:00

51 lines
1.3 KiB
TypeScript

import { buildUrl } from '@/lib/url';
export interface FetchResponse {
ok: boolean;
status: number;
data?: any;
error?: any;
}
export async function request(
method: string,
url: string,
body?: string,
headers: object = {},
): Promise<FetchResponse> {
return fetch(url, {
method,
cache: 'no-cache',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
...headers,
},
body,
}).then(async res => {
const data = await res.json();
return {
ok: res.ok,
status: res.status,
data: res.ok ? data : undefined,
error: res.ok ? undefined : data,
};
});
}
export async function httpGet(url: string, params: object = {}, headers: object = {}) {
return request('GET', buildUrl(url, params), undefined, headers);
}
export async function httpDelete(url: string, params: object = {}, headers: object = {}) {
return request('DELETE', buildUrl(url, params), undefined, headers);
}
export async function httpPost(url: string, params: object = {}, headers: object = {}) {
return request('POST', url, JSON.stringify(params), headers);
}
export async function httpPut(url: string, params: object = {}, headers: object = {}) {
return request('PUT', url, JSON.stringify(params), headers);
}