1.0.2 • Published 8 years ago

retax-utils v1.0.2

Weekly downloads
10
License
MIT
Repository
github
Last release
8 years ago

Retax-Utils

Join the chat at https://gitter.im/hourliert/retax Build Status Version codecov.io

This is a set of utils for all retax modules. It also includes 2 helpers for creating redux actions creators and reducers.

Getting started

npm install --save retax-utils

Creating a reducer

This helper creates a redux reducers. It relies on the fact that an action object must have a type property.

import { reducerFactory } from 'retax';

const initialState = {
  value: 0,
};

const reducer = reducerFactory(
  initialState,
  {
    INC: (state, action) => state + action.payload,
    DEC: (state, action) => state - action.payload,
  }
);

reducer();

/*
{
  value: 0
}
*/

Creating an actions creator

import { actionsCreatorFactory } from 'retax';

const actionsCreator = actionsCreatorFactory(
  'INC'
);

actionsCreator();

/*
{
  type: 'INC'
}
*/

actionsCreator(5);

/*
{
  type: 'INC',
  payload: 5
}
*/

You could also provide a payloadCreator and a metaCreator (similar to redux-actions).

import { actionsCreatorFactory } from 'retax';

const actionsCreator = actionsCreatorFactory(
  'INC',
  x => 2 * x,
  y => 3 * y
);

actionsCreator();

/*
{
  type: 'INC'
}
*/

actionsCreator(5);

/*
{
  type: 'INC',
  payload: 10,
  meta: 15
}
*/

FAQ

I don't understand how this library is built

Check builder and builder-ts-library

Typescript support

This project is shipped with typescript typings. If you are using typescript@^1.6, you don't have to do anything, it will detect the definition types automatically.

##License

MIT License (MIT)