1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 17:45:10 +01:00
onion/js/actions/user_actions.js

37 lines
849 B
JavaScript
Raw Normal View History

'use strict';
2015-05-20 16:19:40 +02:00
import alt from '../alt';
import UserFetcher from '../fetchers/user_fetcher';
2015-05-20 16:44:45 +02:00
2015-05-20 16:19:40 +02:00
class UserActions {
constructor() {
this.generateActions(
2015-06-20 16:43:18 +02:00
'updateCurrentUser',
'deleteCurrentUser'
2015-05-20 16:19:40 +02:00
);
}
fetchCurrentUser() {
UserFetcher.fetchOne()
.then((res) => {
this.actions.updateCurrentUser(res.users[0]);
2015-05-20 16:19:40 +02:00
})
.catch((err) => {
2015-07-17 15:41:09 +02:00
console.logGlobal(err);
this.actions.updateCurrentUser({});
2015-05-20 16:19:40 +02:00
});
}
2015-06-20 16:43:18 +02:00
logoutCurrentUser() {
2015-07-17 18:53:04 +02:00
return UserFetcher.logout()
2015-06-20 16:43:18 +02:00
.then(() => {
this.actions.deleteCurrentUser();
})
.catch((err) => {
2015-07-17 15:41:09 +02:00
console.logGlobal(err);
2015-06-20 16:43:18 +02:00
});
}
}
2015-05-20 16:19:40 +02:00
export default alt.createActions(UserActions);