umami/lib/web.js

39 lines
1020 B
JavaScript
Raw Normal View History

2020-07-26 09:12:42 +02:00
export const apiRequest = (method, url, body) =>
2020-07-24 04:56:55 +02:00
fetch(url, {
2020-07-26 09:12:42 +02:00
method,
2020-07-24 04:56:55 +02:00
cache: 'no-cache',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
2020-07-26 09:12:42 +02:00
body,
}).then(res => (res.ok ? res.json() : null));
function parseQuery(url, params) {
const query =
params &&
Object.keys(params).reduce((values, key) => {
if (params[key] !== undefined) {
return values.concat(`${key}=${encodeURIComponent(params[key])}`);
}
return values;
}, []);
return query.length ? `${url}?${query.join('&')}` : url;
}
export const get = (url, params) => apiRequest('get', parseQuery(url, params));
export const post = (url, params) => apiRequest('post', url, JSON.stringify(params));
export const del = (url, params) => apiRequest('del', parseQuery(url, params));
export const hook = (_this, method, callback) => {
const orig = _this[method];
return (...args) => {
callback.apply(null, args);
return orig.apply(_this, args);
};
};