2015-06-05 11:06:36 +02:00
|
|
|
'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) => {
|
2015-06-05 11:06:36 +02:00
|
|
|
this.actions.updateCurrentUser(res.users[0]);
|
2015-05-20 16:19:40 +02:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
2015-06-05 11:06:36 +02:00
|
|
|
console.log(err);
|
2015-05-20 16:19:40 +02:00
|
|
|
});
|
|
|
|
}
|
2015-06-20 16:43:18 +02:00
|
|
|
logoutCurrentUser() {
|
|
|
|
UserFetcher.logout()
|
|
|
|
.then(() => {
|
|
|
|
this.actions.deleteCurrentUser();
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.log(err);
|
|
|
|
});
|
|
|
|
}
|
2015-06-05 11:06:36 +02:00
|
|
|
}
|
2015-05-20 16:19:40 +02:00
|
|
|
|
|
|
|
export default alt.createActions(UserActions);
|