2017-02-13 00:39:54 +02:00
|
|
|
/**
|
|
|
|
* API Request
|
|
|
|
*/
|
|
|
|
|
2017-03-18 13:05:11 +02:00
|
|
|
import CONFIG from './config';
|
2017-02-21 21:19:53 +02:00
|
|
|
|
2017-02-13 00:39:54 +02:00
|
|
|
let spinner = null;
|
|
|
|
let pending = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a request to API
|
|
|
|
* @param {string|Object} i Credential
|
|
|
|
* @param {string} endpoint Endpoint
|
2017-03-01 10:37:01 +02:00
|
|
|
* @param {any} [data={}] Data
|
|
|
|
* @return {Promise<any>} Response
|
2017-02-13 00:39:54 +02:00
|
|
|
*/
|
2017-03-18 13:05:11 +02:00
|
|
|
export default (i, endpoint, data = {}) => {
|
2017-02-13 00:39:54 +02:00
|
|
|
if (++pending === 1) {
|
|
|
|
spinner = document.createElement('div');
|
|
|
|
spinner.setAttribute('id', 'wait');
|
|
|
|
document.body.appendChild(spinner);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append the credential
|
|
|
|
if (i != null) data.i = typeof i === 'object' ? i.token : i;
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
// Send request
|
2017-02-19 08:32:10 +02:00
|
|
|
fetch(endpoint.indexOf('://') > -1 ? endpoint : `${CONFIG.apiUrl}/${endpoint}`, {
|
2017-02-13 00:39:54 +02:00
|
|
|
method: 'POST',
|
|
|
|
body: JSON.stringify(data),
|
|
|
|
credentials: endpoint === 'signin' ? 'include' : 'omit'
|
|
|
|
}).then(res => {
|
|
|
|
if (--pending === 0) spinner.parentNode.removeChild(spinner);
|
|
|
|
if (res.status === 200) {
|
|
|
|
res.json().then(resolve);
|
|
|
|
} else if (res.status === 204) {
|
|
|
|
resolve();
|
|
|
|
} else {
|
|
|
|
res.json().then(err => {
|
|
|
|
reject(err.error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}).catch(reject);
|
|
|
|
});
|
|
|
|
};
|