Transformation Patterns
Explore how transformation patterns in Redux help modify actions before they reach reducers. Understand enriching to add missing data, normalization to adjust server responses, and translation to map UI actions to reducer expectations.
We'll cover the following...
We'll cover the following...
Transformation patterns (such as enriching, normalization, and translation) change the contents of actions before they reach the reducer. Sometimes an action sent from the UI is different from the action expected by the reducer or middleware, either because it is missing some of the required information at the time of sending or because the original action is more ...