How to reset the state of a Redux store?

前端 未结 30 2618
陌清茗
陌清茗 2020-11-22 06:20

I am using Redux for state management.
How do I reset the store to its initial state?

For example, let’s say I have two user accounts (u1 and

30条回答
  •  时光说笑
    2020-11-22 06:23

    One way to do that would be to write a root reducer in your application.

    The root reducer would normally delegate handling the action to the reducer generated by combineReducers(). However, whenever it receives USER_LOGOUT action, it returns the initial state all over again.

    For example, if your root reducer looked like this:

    const rootReducer = combineReducers({
      /* your app’s top-level reducers */
    })
    

    You can rename it to appReducer and write a new rootReducer delegating to it:

    const appReducer = combineReducers({
      /* your app’s top-level reducers */
    })
    
    const rootReducer = (state, action) => {
      return appReducer(state, action)
    }
    

    Now we just need to teach the new rootReducer to return the initial state after USER_LOGOUT action. As we know, reducers are supposed to return the initial state when they are called with undefined as the first argument, no matter the action. Let’s use this fact to conditionally strip the accumulated state as we pass it to appReducer:

     const rootReducer = (state, action) => {
      if (action.type === 'USER_LOGOUT') {
        state = undefined
      }
    
      return appReducer(state, action)
    }
    

    Now, whenever USER_LOGOUT fires, all reducers will be initialized anew. They can also return something different than they did initially if they want to because they can check action.type as well.

    To reiterate, the full new code looks like this:

    const appReducer = combineReducers({
      /* your app’s top-level reducers */
    })
    
    const rootReducer = (state, action) => {
      if (action.type === 'USER_LOGOUT') {
        state = undefined
      }
    
      return appReducer(state, action)
    }
    

    Note that I’m not mutating the state here, I am merely reassigning the reference of a local variable called state before passing it to another function. Mutating a state object would be a violation of Redux principles.

    In case you are using redux-persist, you may also need to clean your storage. Redux-persist keeps a copy of your state in a storage engine, and the state copy will be loaded from there on refresh.

    First, you need to import the appropriate storage engine and then, to parse the state before setting it to undefined and clean each storage state key.

    const rootReducer = (state, action) => {
        if (action.type === SIGNOUT_REQUEST) {
            // for all keys defined in your persistConfig(s)
            storage.removeItem('persist:root')
            // storage.removeItem('persist:otherKey')
    
            state = undefined;
        }
        return appReducer(state, action);
    };
    

提交回复
热议问题