File size: 2,170 Bytes
88c4c60 | 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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | /**
* API utility functions for making HTTP requests
*/
const DEFAULT_HEADERS = {
"Content-Type": "application/json",
};
/**
* Make a GET request
* @param {string} url - API endpoint
* @param {object} options - Fetch options
* @returns {Promise<object>}
*/
export async function get(url, options = {}) {
const response = await fetch(url, {
method: "GET",
headers: { ...DEFAULT_HEADERS, ...options.headers },
...options,
});
return handleResponse(response);
}
/**
* Make a POST request
* @param {string} url - API endpoint
* @param {object} data - Request body
* @param {object} options - Fetch options
* @returns {Promise<object>}
*/
export async function post(url, data, options = {}) {
const response = await fetch(url, {
method: "POST",
headers: { ...DEFAULT_HEADERS, ...options.headers },
body: JSON.stringify(data),
...options,
});
return handleResponse(response);
}
/**
* Make a PUT request
* @param {string} url - API endpoint
* @param {object} data - Request body
* @param {object} options - Fetch options
* @returns {Promise<object>}
*/
export async function put(url, data, options = {}) {
const response = await fetch(url, {
method: "PUT",
headers: { ...DEFAULT_HEADERS, ...options.headers },
body: JSON.stringify(data),
...options,
});
return handleResponse(response);
}
/**
* Make a DELETE request
* @param {string} url - API endpoint
* @param {object} options - Fetch options
* @returns {Promise<object>}
*/
export async function del(url, options = {}) {
const response = await fetch(url, {
method: "DELETE",
headers: { ...DEFAULT_HEADERS, ...options.headers },
...options,
});
return handleResponse(response);
}
/**
* Handle API response
* @param {Response} response - Fetch response
* @returns {Promise<object>}
*/
async function handleResponse(response) {
const data = await response.json();
if (!response.ok) {
const error = 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;
|