mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #3391 from overleaf/ta-fetch-json
Add fetch-json Helper for React GitOrigin-RevId: ac1ad925b8b02377109aeacc973b00322fe2895c
This commit is contained in:
parent
16847bc70b
commit
d0b624d419
1 changed files with 48 additions and 0 deletions
48
services/web/frontend/js/infrastructure/fetch-json.js
Normal file
48
services/web/frontend/js/infrastructure/fetch-json.js
Normal file
|
@ -0,0 +1,48 @@
|
|||
// fetch wrapper to make simple JSON requests:
|
||||
// - send the CSRF token in the request
|
||||
// - set the JSON content-type in the request headers
|
||||
// - throw errors on non-ok response
|
||||
// - parse JSON response body, unless response is empty
|
||||
|
||||
export function getJSON(path, options) {
|
||||
return fetchJSON(path, { ...options, method: 'GET' })
|
||||
}
|
||||
|
||||
export function postJSON(path, options) {
|
||||
return fetchJSON(path, { ...options, method: 'POST' })
|
||||
}
|
||||
|
||||
export function deleteJSON(path, options) {
|
||||
return fetchJSON(path, { ...options, method: 'DELETE' })
|
||||
}
|
||||
|
||||
export default function fetchJSON(
|
||||
path,
|
||||
{ body = {}, headers = {}, method = 'GET', ...otherOptions }
|
||||
) {
|
||||
const options = {
|
||||
...otherOptions,
|
||||
headers: {
|
||||
...headers,
|
||||
'Content-Type': 'application/json',
|
||||
'X-Csrf-Token': window.csrfToken
|
||||
},
|
||||
method
|
||||
}
|
||||
|
||||
if (method !== 'GET' && method !== 'HEAD') {
|
||||
options.body = JSON.stringify(body)
|
||||
}
|
||||
|
||||
return fetch(path, options)
|
||||
.then(response => {
|
||||
if (!response.ok) throw new Error(response.status)
|
||||
|
||||
// get the response as text first as .json() fails on empty responses.
|
||||
// (e.g. 204 responses)
|
||||
return response.text()
|
||||
})
|
||||
.then(responseText => {
|
||||
return responseText ? JSON.parse(responseText) : responseText
|
||||
})
|
||||
}
|
Loading…
Reference in a new issue