Skip to content
Snippets Groups Projects
Commit bd530562 authored by scmoritz's avatar scmoritz
Browse files

Merge branch 'events' into 'master'

Add generic api resource class

See merge request amiv-website!18
parents 79ba6674 e01d026a
No related branches found
No related tags found
1 merge request!18Add generic api resource class
// Generic API resource
import { apiUrl } from './config';
import { getToken, logout } from './auth';
const m = require('mithril');
export default class Resource {
constructor(name, query = {}) {
this.name = name;
this.list = [];
this.query = query;
}
load() {
// Parse query such that the backend understands it
const parsedQuery = {};
Object.keys(this.query).forEach((key) => {
parsedQuery[key] = JSON.stringify(this.query[key]);
});
const queryString = m.buildQueryString(parsedQuery);
return m.request({
method: 'GET',
url: `${apiUrl}/${this.resource}/?${queryString}`,
headers: { Authorization: `Token ${getToken()}` },
}).catch((err) => {
// If the error is 401, the token is invalid -> auto log out
if (err._error.code === 401) { logout(); }
// Actual error information is in the '_error' field, pass this on
throw err._error;
});
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment