Reading-Notes

Class 38 Summary:

Redux - Asynchronous Actions :

How granular should your reducers be?

Pro or Con – multiple reducers can “fire” when a commonly named action is dispatched.

Name a strategy for preventing the above

Document the following Vocabulary Terms :

Term  
store holds the whole state tree of your application. The only way to change the state inside it is to dispatch an action on it.
combined reducers helper function turns an object whose values are different reducing functions into a single reducing function you can pass to createStore.

Redux Fundamentals:

Redux Middleware and Side Effects:

Using Middleware to Enable Async Logic :

image1

Using the Redux Thunk Middleware :

Understanding Asynchronous Redux Actions with Redux Thunk :

Sources:

source1

source2