redux-hor
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

Redux-HOR

Higher-order Redux is a utility belt for Redux that makes heavy use of higher-order reducers to provide:

  • Reduced boilerplate 🔩
  • Increased modularity 📦
  • Development speedup 🚄

Oh, btw... Higher-order reducer is a function that takes a reducer argument and returns a new reducer:

HigherOrderReducer<State, Action> = (innerReducer: Reducer<State, Action>): Reducer<State, Action>

Installation

yarn add redux-hor

Quick start

Here's a standard reducer that we all know an love:

export default function reducer (state = initialState, action) {
  if (action.type === 'UPDATE_AUTHOR') {
    return {
      ...state,
      author: action.payload
    }
  }
 
  return state
}

Compare it with HoR style:

import { compose, withActionType, withInitialState, mergeState, identity } from 'redux-hor'
 
export compose(
  onAction('UPDATE_AUTHOR', () => merge({ author: action.payload }))
)(init(initialState))

API docs

Read them here

Package Sidebar

Install

npm i redux-hor

Weekly Downloads

1

Version

0.0.7

License

MIT

Unpacked Size

18.7 kB

Total Files

35

Last publish

Collaborators

  • pwlmaciejewski