1.0.0 • Published 5 years ago

distribute-reducer v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

About

distributeReducerByDomain is wrapper to apply over your redux reducer.

When applied it turns passed state into hierarchy of nested states. Every state is accessible by path, called here "domain". Wrapped reducer will be applied only to state of domain specified in action.

Domain used to select either particular state or array of all states in hierarchy

Domain is represented as string with "." delimiters. Each part is domain name in appropriate level of domains hierarchy.

"Libraries.Redux" domain is nested in "Libraries" domain. If select all states of "Libraries" domain "Libraries.Redux" will be in list.

Example use case

or original purpose of this module

Manage related server requests. Utility give handy access to states of all requests on current page by domain "%page%". This is convenient to show errors and loading indicators. Moreover requests could be divided as "fetch" and "submit", or "%component%" or "%actionType%", etc.

API

const {
  /* Provided API */
  reducer,
  selectDomainState,
  selectDomainStates,
} = distributeReducerByDomain({
  /* Configuration */
  domainSeparator,
  domainProperty,
  reducer, // only required
});

Provided API

  1. reducer(state, action) => state – wrapped reducer
  2. selectDomainState(state, domain) => domainState – select only state of specified domain. No nested states included
  3. selectDomainStates(state, domain) => ...domainStates – select array, consist of specified domain state and all it nested (recursively) domains state

Configuration

  1. domainSeparator – sign used to separate nested domain names in path. Default to '.'
  2. domainProperty – specify domain path property in redux action. Could be string (dot-separated path) or function, that receives action. Default to 'meta.domain'
  3. reducer – wrapped reducer. Required!