2017-07-31 18:14:30 -05:00
|
|
|
export function checkHttpStatus(response) {
|
|
|
|
if (response.status >= 200 && response.status < 300) {
|
|
|
|
return response;
|
|
|
|
} else {
|
2017-09-25 20:41:11 -07:00
|
|
|
return new Error(response.statusText);
|
2017-07-03 22:28:56 -05:00
|
|
|
}
|
2017-04-12 00:04:27 -05:00
|
|
|
}
|
|
|
|
|
2017-07-31 18:14:30 -05:00
|
|
|
export function parseJSON(response) {
|
|
|
|
return response.json();
|
2017-04-12 00:04:27 -05:00
|
|
|
}
|
2017-08-31 10:30:46 -06:00
|
|
|
|
|
|
|
export async function handleJSONResponse(response, errorMessage) {
|
|
|
|
if (response.ok) {
|
2017-09-25 20:41:11 -07:00
|
|
|
return await response.json();
|
2017-08-31 10:30:46 -06:00
|
|
|
}
|
|
|
|
if (errorMessage) {
|
|
|
|
throw new Error(errorMessage);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|