Skip to content

Creates reducer function for Redux from an object

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

pmagaz/create-reduxreducer

Repository files navigation

create-reduxreducer

Build-Status Build status Coverage Status License

create-reduxreducer creates a reducer from an object. so you can easyly split your reduce functions as individual function for each actionType instead of use switch case for filter them.

Table of contents

  1. Installation
  2. Usage

Installation

You can install it via npm. If you'll use it in a Isomorphic/Universal App i recommend you installing it as production dependency.

$ npm install create-reduxreducer --save

Usage

It only takes two arguments: an object with the action types as a key and the reduce function that will handle the actionType and an initial state.

In this example we define an actionHandlers object and it's reduce functions:

myReducer.js

import createReduxReducer from 'create-reduxreducer';
import ActionTypes from '../actionTypes';

const actionHandlers = {
  [ActionTypes.INPUT_NUMBER]: inputNumber,
  [ActionTypes.INPUT_DECIMAL]: inputDecimal,
  ...
};

function inputNumber(state, action) {
  ...
}

function inputDecimal(state, action) {
  ...
}

const myReducer = createReducer(actionHandlers, {});

export { myReducer };

Then you can use this reducer as a regular redux reducer and pass it to combineReducers when you configure your store.

If you want to use arrow functions remember to define your actionHandlers object after your arrow functions:

import createReduxReducer from 'create-reduxreducer';
import ActionTypes from '../actionTypes';

const imputNumber = (state, action) => state;
const imputDecimal = (state, action) => state;

const actionHandlers = {
  [ActionTypes.INPUT_NUMBER]: inputNumber,
  [ActionTypes.INPUT_DECIMAL]: inputDecimal,
  ...
};

const myReducer = createReducer(actionHandlers, {});

You can pass as initial state whatever you want, regular objets or even ImmutableJs objects:

import { Record } from 'immutable';

const DataModel = Record({
  id:0,
  age: 50,
  ...
});

export default createReducer(actionHandlers, new DataModel());

Projects using create-reduxreducer

License

MIT

About

Creates reducer function for Redux from an object

Topics

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Packages

No packages published