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

22 lines
470 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
};
default:
return state;
}
};
2016-06-24 00:29:55 +02:00
export default user;