SlugUI DataBind is the means through which data can be passed through from any root surface to lower components written by user or by library. DataBind will provide different approaches for data provision which includes Redux, Static and more that may be added later.
Redux The idea is to take the approach of Redux, simplify and keep essentials which then can be used like in React to provide a single flow of existing data from higher components to lower components without loosing swift efficient updating and change propagation.
Redux in javascript land has 3 very simple concepts has explained below:
- Reducers which I like to call Data Source Reducers (I feel this is better, but because Reducers can also do some work or filtering just like in MapReduce you can understand why Redux uses Reducers), the idea of reducer is that they can the means through which properties declared in the React props will get their value from, such that the reducers can return either a static data or ever changing data values whi