mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
36 lines
778 B
JavaScript
36 lines
778 B
JavaScript
'use strict';
|
|
|
|
import alt from '../alt';
|
|
import UserFetcher from '../fetchers/user_fetcher';
|
|
|
|
|
|
class UserActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'updateCurrentUser',
|
|
'deleteCurrentUser'
|
|
);
|
|
}
|
|
|
|
fetchCurrentUser() {
|
|
UserFetcher.fetchOne()
|
|
.then((res) => {
|
|
this.actions.updateCurrentUser(res.users[0]);
|
|
})
|
|
.catch((err) => {
|
|
console.log(err);
|
|
});
|
|
}
|
|
logoutCurrentUser() {
|
|
UserFetcher.logout()
|
|
.then(() => {
|
|
this.actions.deleteCurrentUser();
|
|
})
|
|
.catch((err) => {
|
|
console.log(err);
|
|
});
|
|
}
|
|
}
|
|
|
|
export default alt.createActions(UserActions);
|