2017-02-13 00:39:54 +02:00
|
|
|
/**
|
|
|
|
* API Request
|
|
|
|
*/
|
|
|
|
|
2017-11-22 22:43:00 +02:00
|
|
|
declare const _API_URL_: string;
|
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-11-15 20:06:52 +02:00
|
|
|
export default (i, endpoint, data = {}): Promise<{ [x: string]: any }> => {
|
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
|
2017-11-13 11:05:35 +02:00
|
|
|
if (i != null) (data as any).i = typeof i === 'object' ? i.token : i;
|
2017-02-13 00:39:54 +02:00
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
// Send request
|
2017-11-22 22:43:00 +02:00
|
|
|
fetch(endpoint.indexOf('://') > -1 ? endpoint : `${_API_URL_}/${endpoint}`, {
|
2017-02-13 00:39:54 +02:00
|
|
|
method: 'POST',
|
|
|
|
body: JSON.stringify(data),
|
2017-11-28 08:05:55 +02:00
|
|
|
credentials: endpoint === 'signin' ? 'include' : 'omit',
|
|
|
|
cache: 'no-cache'
|
2017-02-13 00:39:54 +02:00
|
|
|
}).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);
|
2018-01-19 02:22:30 +02:00
|
|
|
}, reject);
|
2017-02-13 00:39:54 +02:00
|
|
|
}
|
|
|
|
}).catch(reject);
|
|
|
|
});
|
|
|
|
};
|