2020-09-15 17:22:13 +02:00
|
|
|
const apiCall = method => async (
|
2020-09-17 17:36:39 +02:00
|
|
|
url,
|
|
|
|
body,
|
2020-09-15 17:22:13 +02:00
|
|
|
headers = { "Content-Type": "application/json" }
|
|
|
|
) => {
|
2020-04-28 15:39:35 +02:00
|
|
|
const response = await fetch(url, {
|
2020-02-03 10:24:25 +01:00
|
|
|
method: method,
|
|
|
|
body: body && JSON.stringify(body),
|
2020-06-18 17:59:31 +02:00
|
|
|
headers,
|
2020-02-03 10:24:25 +01:00
|
|
|
})
|
2019-07-28 09:03:11 +02:00
|
|
|
|
2020-05-07 11:53:34 +02:00
|
|
|
return response
|
2020-04-28 15:39:35 +02:00
|
|
|
}
|
|
|
|
|
2020-06-03 18:05:36 +02:00
|
|
|
export const post = apiCall("POST")
|
|
|
|
export const get = apiCall("GET")
|
|
|
|
export const patch = apiCall("PATCH")
|
|
|
|
export const del = apiCall("DELETE")
|
|
|
|
export const put = apiCall("PUT")
|
2019-07-28 09:03:11 +02:00
|
|
|
|
2020-06-19 18:19:30 +02:00
|
|
|
export default {
|
|
|
|
post: apiCall("POST"),
|
|
|
|
get: apiCall("GET"),
|
|
|
|
patch: apiCall("PATCH"),
|
|
|
|
delete: apiCall("DELETE"),
|
|
|
|
put: apiCall("PUT"),
|
|
|
|
}
|