This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

action-helper

1.1.0 • Public • Published

action-helper

Build Status

The simplest action creator for redux.

Install

npm install --save action-helper

Why?

To reduce code generation. I was dead tired to write all these actions each time.

const CONSTANT = 'CONSTANT'; // WHY?! constant string itself is a constant

const action = ({param}) => ({
  type: CONSTANT,
  param
});

So I came with action-helper to reduce all of these with:

import action from 'action-helper';

export const login = action('LOGIN', 'username', 'password');

// also, you can declare an action using the shorter method
// this action creator will be able to receive any property
// right into the action, without any restriction like the method above
export const auth = action('AUTH');

And now you can get a type of this action by simply doing:

console.log(login.type); // prints LOGIN

And get an action object simply by doing:

console.log(login({username: 'root', password: 'qwerty'}));
// logs {type: 'LOGIN', username: 'root', password: 'qwerty'}

When you explicitly declare the properties of an action, you won't get anything except them in the result. But, if you do not declare the properties, action creator function will be able to create an action with any properties that can be passed as an object.

login({username: 'root', password: 'qwerty', rememberMe: true});
// {type: 'LOGIN', username: 'root', password: 'qwerty'}

auth({idToken: 'token'});
// {type: 'AUTH', idToken: 'token'}

Less code, less stress.

Readme

Keywords

Package Sidebar

Install

npm i action-helper

Weekly Downloads

2

Version

1.1.0

License

MIT

Last publish

Collaborators

  • ayatkevich