2017-12-30 15:29:04 -05:00
|
|
|
import indexOf from 'lodash/indexOf';
|
2017-12-11 12:44:53 -05:00
|
|
|
|
|
|
|
export const filter = (i: any, arr: any[]) => {
|
|
|
|
return -1 !== indexOf(arr, i) ? true : false;
|
|
|
|
};
|
|
|
|
|
2017-12-19 17:46:34 -05:00
|
|
|
export function checkHttpStatus(response: Response) {
|
2017-07-31 18:14:30 -05:00
|
|
|
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-12-19 17:46:34 -05:00
|
|
|
export function parseJSON(response: Response) {
|
2017-07-31 18:14:30 -05:00
|
|
|
return response.json();
|
2017-04-12 00:04:27 -05:00
|
|
|
}
|
2017-08-31 10:30:46 -06:00
|
|
|
|
2017-12-19 17:46:34 -05:00
|
|
|
export async function handleJSONResponse(response: Response, errorMessage: string) {
|
2017-08-31 10:30:46 -06:00
|
|
|
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;
|
|
|
|
}
|