36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import {BaseStore} from '../common/BaseStore';
|
|
import axios from 'axios';
|
|
import * as config from '../config';
|
|
import {action} from 'mobx';
|
|
import {SnackReporter} from '../snack/SnackManager';
|
|
|
|
export class UserStore extends BaseStore<IUser> {
|
|
constructor(private readonly snack: SnackReporter) {
|
|
super();
|
|
}
|
|
|
|
protected requestItems = (): Promise<IUser[]> => {
|
|
return axios.get<IUser[]>(`${config.get('url')}user`).then((response) => response.data);
|
|
};
|
|
|
|
protected requestDelete(id: number): Promise<void> {
|
|
return axios
|
|
.delete(`${config.get('url')}user/${id}`)
|
|
.then(() => this.snack('User deleted'));
|
|
}
|
|
|
|
@action
|
|
public create = async (name: string, pass: string, admin: boolean) => {
|
|
await axios.post(`${config.get('url')}user`, {name, pass, admin});
|
|
await this.refresh();
|
|
this.snack('User created');
|
|
};
|
|
|
|
@action
|
|
public update = async (id: number, name: string, pass: string | null, admin: boolean) => {
|
|
await axios.post(config.get('url') + 'user/' + id, {name, pass, admin});
|
|
await this.refresh();
|
|
this.snack('User updated');
|
|
};
|
|
}
|