1
0
mirror of https://github.com/ascribe/onion.git synced 2024-09-28 03:58:55 +02:00
onion/js/stores/user_store.js

22 lines
404 B
JavaScript
Raw Normal View History

'use strict';
2015-05-20 16:19:40 +02:00
import alt from '../alt';
2015-06-03 11:49:39 +02:00
import UserActions from '../actions/user_actions';
2015-05-20 16:19:40 +02:00
2015-05-20 16:44:45 +02:00
2015-06-03 11:49:39 +02:00
class UserStore {
2015-05-20 16:19:40 +02:00
constructor() {
2015-06-01 18:59:47 +02:00
this.currentUser = {};
2015-06-03 11:49:39 +02:00
this.bindActions(UserActions);
2015-05-20 16:19:40 +02:00
}
onUpdateCurrentUser(user) {
this.currentUser = user;
}
2015-06-20 16:43:18 +02:00
onDeleteCurrentUser() {
this.currentUser = {};
}
2015-06-01 18:59:47 +02:00
}
2015-05-20 16:19:40 +02:00
2015-06-15 08:44:44 +02:00
export default alt.createStore(UserStore, 'UserStore');