Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

readme.md

Chapter 8 : Redux

Redux is based on Flux, and it was designed to tackle the challenge of understanding how data changes flow through your application.

Samples

Reducers

  1. Color Reducer (demo, code, bin)
  2. Colors Reducer (demo, code, bin)
  3. Sort Reducer (demo, code, bin)

The Store

  1. createStore (demo, code, bin)
  2. combineReducers (demo, code, bin)
  3. initialState (demo, code, bin)
  4. Dispatching Actions (demo, code, bin)
  5. Subscribe (demo, code, bin)
  6. Unsubscribe (demo, code, bin)
  7. Persistent State Data (demo, code, bin)

Action Creators

  1. Action Creators (demo, code, bin)
  2. Compose (demo, code, bin)

Middleware

  1. logger (demo, code, bin)
  2. saver (demo, code, bin)

Putting it all together

Here is the complete sample store that we have reviewed

Demo | Source