1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 21:52:08 +02:00
onion/js/stores/user_store.js
2015-10-30 16:57:03 +01:00

35 lines
792 B
JavaScript

'use strict';
import { altUser } from '../alt';
import UserActions from '../actions/user_actions';
import UserSource from '../sources/user_source';
// import AscribeStorage from '../models/ascribe_storage';
// import { sessionStorageAvailable } from '../utils/feature_detection_utils';
class UserStore {
constructor() {
this.currentUser = {};
this.bindActions(UserActions);
this.registerAsync(UserSource);
}
onFetchCurrentUser() {
if(!this.getInstance().isLoading()) {
this.getInstance().fetchUser();
}
}
onReceiveCurrentUser({users: [user]}) {
this.currentUser = user;
}
onDeleteCurrentUser() {
this.currentUser = {};
}
}
export default altUser.createStore(UserStore, 'UserStore');