1
0
Fork 0
mirror of synced 2024-09-15 00:38:01 +12:00
budibase/packages/builder/src/builderStore/api.js

30 lines
532 B
JavaScript
Raw Normal View History

const apiCall = method => async (url, body) => {
const response = await fetch(url, {
method: method,
headers: {
"Content-Type": "application/json",
},
body: body && JSON.stringify(body),
})
2019-07-28 19:03:11 +12:00
// if (response.status === 500) {
// throw new Error("Server Error");
// }
2020-05-07 21:53:34 +12:00
return response
}
const post = apiCall("POST")
const get = apiCall("GET")
const patch = apiCall("PATCH")
const del = apiCall("DELETE")
2020-05-23 03:32:23 +12:00
const put = apiCall("PUT")
2019-07-28 19:03:11 +12:00
export default {
post,
get,
patch,
delete: del,
put,
}