Fix request() helper

This commit is contained in:
Robbie Antenesse 2019-05-14 17:21:46 -06:00
parent a833cfa160
commit fcfc25e114
1 changed files with 4 additions and 8 deletions

View File

@ -1,5 +1,5 @@
export function request (data = {}, success = () => {}, error = () => {}, fail = () => {}) { export function request (data = {}, success = () => {}, error = () => {}/* , fail = () => {} */) {
fetch('./account/', { return fetch('./api/', {
method: 'POST', // or 'PUT' method: 'POST', // or 'PUT'
body: JSON.stringify(data), // data can be `string` or {object}! body: JSON.stringify(data), // data can be `string` or {object}!
headers: { headers: {
@ -10,12 +10,8 @@ export function request (data = {}, success = () => {}, error = () => {}, fail =
.then(response => { .then(response => {
console.log('Success:', JSON.stringify(response)); console.log('Success:', JSON.stringify(response));
if (response.error) { if (response.error) {
error(response); return error(response.data);
} }
success(response); return success(response.data);
})
.catch(err => {
console.error('Request Error:', err);
fail(err);
}); });
} }