philomena/assets/js/utils/requests.ts
2023-05-18 12:50:19 +02:00

39 lines
944 B
TypeScript

// Request Utils
type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH';
export function fetchJson(verb: HttpMethod, endpoint: string, body?: Record<string, unknown>): Promise<Response> {
const data: RequestInit = {
method: verb,
credentials: 'same-origin',
headers: {
'Content-Type': 'application/json',
'x-csrf-token': window.booru.csrfToken,
'x-requested-with': 'xmlhttprequest'
},
};
if (body) {
body._method = verb;
data.body = JSON.stringify(body);
}
return fetch(endpoint, data);
}
export function fetchHtml(endpoint: string): Promise<Response> {
return fetch(endpoint, {
credentials: 'same-origin',
headers: {
'x-csrf-token': window.booru.csrfToken,
'x-requested-with': 'xmlhttprequest'
},
});
}
export function handleError(response: Response): Response {
if (!response.ok) {
throw new Error('Received error from server');
}
return response;
}