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-29 17:15:26 +01:00

28 lines
690 B
JavaScript

'use strict';
import { altUser } from '../alt';
import UserActions from '../actions/user_actions';
import SessionPersistentStore from './session_persistent_store';
// import AscribeStorage from '../models/ascribe_storage';
// import { sessionStorageAvailable } from '../utils/feature_detection_utils';
class UserStore extends SessionPersistentStore {
constructor() {
super('UserStore');
this.currentUser = {};
this.bindActions(UserActions);
}
onUpdateCurrentUser(user) {
this.setItem('currentUser', user);
}
onDeleteCurrentUser() {
this.currentUser = {};
}
}
export default altUser.createStore(UserStore, 'UserStore');