19ab0fe108
* Chore: Enable Users to create multiple accounts Addresses: #402 - migrations to split roles and other attributes from users table - make changes in code to accommodate this change Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
48 lines
948 B
JavaScript
48 lines
948 B
JavaScript
/* global axios */
|
|
|
|
const API_VERSION = `/api/v1`;
|
|
|
|
class ApiClient {
|
|
constructor(resource, options = {}) {
|
|
this.apiVersion = API_VERSION;
|
|
this.options = options;
|
|
this.resource = resource;
|
|
}
|
|
|
|
get url() {
|
|
let url = this.apiVersion;
|
|
if (this.options.accountScoped) {
|
|
const isInsideAccountScopedURLs = window.location.pathname.includes(
|
|
'/app/accounts'
|
|
);
|
|
|
|
if (isInsideAccountScopedURLs) {
|
|
const accountId = window.location.pathname.split('/')[3];
|
|
url = `${url}/accounts/${accountId}`;
|
|
}
|
|
}
|
|
return `${url}/${this.resource}`;
|
|
}
|
|
|
|
get() {
|
|
return axios.get(this.url);
|
|
}
|
|
|
|
show(id) {
|
|
return axios.get(`${this.url}/${id}`);
|
|
}
|
|
|
|
create(data) {
|
|
return axios.post(this.url, data);
|
|
}
|
|
|
|
update(id, data) {
|
|
return axios.patch(`${this.url}/${id}`, data);
|
|
}
|
|
|
|
delete(id) {
|
|
return axios.delete(`${this.url}/${id}`);
|
|
}
|
|
}
|
|
|
|
export default ApiClient;
|