View on GitHub

reading-notes

Readings: Redux - Asynchronous Actions

Review, Research, and Discussion

  1. How granular should your reducers be?
    • focus on more complex or unusual interactions which differ from the default of “update of this input means update of that property in the state
  2. named action is dispatched
    • dispatch is used as a callback which gets invoked once some async action is complete. In redux-thunk dispatch is simply a function which dispatches an action to the Redux store
  3. Name a strategy for preventing the above
    • use middlewares

      Document the following Vocabulary Terms

      store
      A store is an immutable object tree in Redux. A store is a state container which holds the application’s state.
combined reducers
unction turns an object whose values are different reducing functions into a single reducing function you can pass to createStore

Review :