2016-06-23 22:29:55 +00:00
|
|
|
import * as ActionTypes from '../../constants';
|
2016-06-09 20:28:21 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
const user = (state = { authenticated: false }, action) => {
|
|
|
|
switch (action.type) {
|
|
|
|
case ActionTypes.AUTH_USER:
|
2018-05-05 00:22:39 +00:00
|
|
|
return {
|
|
|
|
...action.user,
|
|
|
|
authenticated: true
|
|
|
|
};
|
2016-08-28 00:46:20 +00:00
|
|
|
case ActionTypes.UNAUTH_USER:
|
|
|
|
return {
|
|
|
|
authenticated: false
|
|
|
|
};
|
2016-06-23 22:29:55 +00:00
|
|
|
case ActionTypes.AUTH_ERROR:
|
|
|
|
return {
|
|
|
|
authenticated: false
|
|
|
|
};
|
2016-10-12 21:19:43 +00:00
|
|
|
case ActionTypes.RESET_PASSWORD_INITIATE:
|
2016-10-18 21:06:53 +00:00
|
|
|
return Object.assign({}, state, { resetPasswordInitiate: true });
|
2016-10-14 16:08:08 +00:00
|
|
|
case ActionTypes.RESET_PASSWORD_RESET:
|
2016-10-18 21:06:53 +00:00
|
|
|
return Object.assign({}, state, { resetPasswordInitiate: false });
|
|
|
|
case ActionTypes.INVALID_RESET_PASSWORD_TOKEN:
|
|
|
|
return Object.assign({}, state, { resetPasswordInvalid: true });
|
2017-06-26 16:48:28 +00:00
|
|
|
case ActionTypes.EMAIL_VERIFICATION_INITIATE:
|
|
|
|
return Object.assign({}, state, { emailVerificationInitiate: true });
|
|
|
|
case ActionTypes.EMAIL_VERIFICATION_VERIFY:
|
|
|
|
return Object.assign({}, state, { emailVerificationTokenState: 'checking' });
|
|
|
|
case ActionTypes.EMAIL_VERIFICATION_VERIFIED:
|
|
|
|
return Object.assign({}, state, { emailVerificationTokenState: 'verified' });
|
|
|
|
case ActionTypes.EMAIL_VERIFICATION_INVALID:
|
|
|
|
return Object.assign({}, state, { emailVerificationTokenState: 'invalid' });
|
2017-03-16 22:25:12 +00:00
|
|
|
case ActionTypes.SETTINGS_UPDATED:
|
|
|
|
return { ...state, ...action.user };
|
2019-05-15 14:39:53 +00:00
|
|
|
case ActionTypes.API_KEY_REMOVED:
|
2018-10-15 22:22:56 +00:00
|
|
|
return { ...state, ...action.user };
|
2019-05-14 09:25:14 +00:00
|
|
|
case ActionTypes.API_KEY_CREATED:
|
2018-10-15 22:22:56 +00:00
|
|
|
return { ...state, ...action.user };
|
2016-06-23 22:29:55 +00:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|
2016-06-09 20:28:21 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
export default user;
|