2017-05-12 13:02:45 +02:00
|
|
|
import dis from '../dispatcher';
|
2017-05-15 15:52:19 +02:00
|
|
|
import {Store} from 'flux/utils';
|
2017-05-12 13:02:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A class for storing application state to do with the session. This is a simple flux
|
|
|
|
* store that listens for actions and updates its state accordingly, informing any
|
2017-05-15 15:52:19 +02:00
|
|
|
* listeners (views) of state changes.
|
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
* ```
|
|
|
|
* sessionStore.addListener(() => {
|
|
|
|
* this.setState({ cachedPassword: sessionStore.getCachedPassword() })
|
|
|
|
* })
|
|
|
|
* ```
|
2017-05-12 13:02:45 +02:00
|
|
|
*/
|
2017-05-15 15:52:19 +02:00
|
|
|
class SessionStore extends Store {
|
2017-05-12 16:58:44 +02:00
|
|
|
constructor() {
|
2017-05-15 15:52:19 +02:00
|
|
|
super(dis);
|
2017-05-12 13:02:45 +02:00
|
|
|
|
2017-05-12 16:58:44 +02:00
|
|
|
// Initialise state
|
|
|
|
this._state = {
|
|
|
|
cachedPassword: localStorage.getItem('mx_pass'),
|
|
|
|
};
|
|
|
|
}
|
2017-05-12 13:02:45 +02:00
|
|
|
|
2017-05-12 16:58:44 +02:00
|
|
|
_update() {
|
|
|
|
// Persist state to localStorage
|
|
|
|
if (this._state.cachedPassword) {
|
|
|
|
localStorage.setItem('mx_pass', this._state.cachedPassword);
|
|
|
|
} else {
|
|
|
|
localStorage.removeItem('mx_pass', this._state.cachedPassword);
|
|
|
|
}
|
2017-05-12 13:02:45 +02:00
|
|
|
|
2017-05-15 15:52:19 +02:00
|
|
|
this.__emitChange();
|
2017-05-12 13:02:45 +02:00
|
|
|
}
|
|
|
|
|
2017-05-12 16:58:44 +02:00
|
|
|
_setState(newState) {
|
|
|
|
this._state = Object.assign(this._state, newState);
|
|
|
|
this._update();
|
2017-05-12 13:02:45 +02:00
|
|
|
}
|
|
|
|
|
2017-05-15 15:52:19 +02:00
|
|
|
__onDispatch(payload) {
|
2017-05-12 16:58:44 +02:00
|
|
|
switch (payload.action) {
|
|
|
|
case 'cached_password':
|
|
|
|
this._setState({
|
|
|
|
cachedPassword: payload.cachedPassword,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case 'password_changed':
|
|
|
|
this._setState({
|
|
|
|
cachedPassword: null,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getCachedPassword() {
|
|
|
|
return this._state.cachedPassword;
|
|
|
|
}
|
|
|
|
}
|
2017-05-12 13:02:45 +02:00
|
|
|
|
|
|
|
let singletonSessionStore = null;
|
2017-05-12 16:50:01 +02:00
|
|
|
if (!singletonSessionStore) {
|
|
|
|
singletonSessionStore = new SessionStore();
|
2017-05-12 13:02:45 +02:00
|
|
|
}
|
2017-05-12 16:50:01 +02:00
|
|
|
module.exports = singletonSessionStore;
|