AllenYuan

settings common reducer

May 5th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ...
  2.     // remove auth data from state
  3.     case 'LOGOUT':
  4.       return { ...state, redirectTo: '/', token: null, currentUser: null };
  5.     // redirect to home and put user into state
  6.     case 'SETTINGS_SAVED':
  7.       return {
  8.         ...state,
  9.         redirectTo: action.error ? null : '/',
  10.         currentUser: action.error ? null : action.payload.user
  11.       };
  12. // ...
Advertisement
Add Comment
Please, Sign In to add comment