p5.js-web-editor/client/modules/User/reducers.js

26 lines
704 B
JavaScript
Raw Normal View History

2016-06-24 00:29:55 +02:00
import * as ActionTypes from '../../constants';
2016-06-24 00:29:55 +02:00
const user = (state = { authenticated: false }, action) => {
switch (action.type) {
case ActionTypes.AUTH_USER:
return { ...action.user,
authenticated: true };
2016-08-28 02:46:20 +02:00
case ActionTypes.UNAUTH_USER:
return {
authenticated: false
};
2016-06-24 00:29:55 +02:00
case ActionTypes.AUTH_ERROR:
return {
authenticated: false
};
case ActionTypes.RESET_PASSWORD_INITIATE:
return Object.assign(state, {}, { resetPasswordInitiate: true });
2016-10-14 18:08:08 +02:00
case ActionTypes.RESET_PASSWORD_RESET:
return Object.assign(state, {}, { resetPasswordInitiate: false });
2016-06-24 00:29:55 +02:00
default:
return state;
}
};
2016-06-24 00:29:55 +02:00
export default user;