The fastest way to write Redux actions
Why yet another Redux action creation library?
Long story short, because with its help you could refactor a code in the following way:
+ import { createSmartAction, createSmartThunk, createReducer, joinTypes } from 'redux-smart-actions';
- const RESET_VALUE = 'RESET_VALUE';
- const SET_VALUE = 'SET_VALUE';
- const INCREMENT_IF_POSITIVE = 'INCREMENT_IF_POSITIVE';
-
- const resetValue = () => ({ type: RESET_VALUE });
+ const resetValue = createSmartAction();
- const setValue = value => ({ type: SET_VALUE, value });
+ const setValue = createSmartAction(value => ({ value }));
- const incrementIfPositive = () => (dispatch, getState) => {
+ const incrementIfPositive = createSmartThunk(() => (dispatch, getState) => {
const currentValue = getState().value;
if (currentValue <= 0) {
return null;
}
- return dispatch({
- type: INCREMENT_IF_POSITIVE,
- value: currentValue + 1,
- });
+ return { value: currentValue + 1 });
- };
+ });
- const valueReducer = (state = 0, action) => {
- switch (action.type) {
- case RESET_VALUE:
- return 0;
- case SET_VALUE:
- case INCREMENT_IF_POSITIVE:
- return action.value;
- default:
- return state;
- }
- }
+ const valueReducer = createReducer({
+ [resetValue]: () => 0,
+ [joinTypes(setValue, incrementIfPositive)]: (state, action) => action.value;
+ }, 0);
Or, to express it verbally:
- writing Redux actions without any addon requires writing constants which is very verbose and error-prone
- other addons often force conventions about action structure
- other addons still require to pass strings as first argument to define action type - here you won't have to with optional Babel plugin
- some addons solve problem with unique types automatically, but then they are not determenistic, this library allows to prefix all action types with file paths, providing safe and deterministic uniqueness
- this library also provides thunks creators - you can create thunk like normal action and also forget about types
- thanks to Typescript generics, using helpers from this library will still give you proper autocomplete functionality for your actions in a text editor like Visual Studio Code, even when not using Typescript!
To install the package, just run:
$ npm install redux-smart-actions
or you can just use CDN: https://unpkg.com/redux-smart-actions
.
Let's say you have an action written without any addon:
const doSomething = () => ({ type: 'DO_SOMETHING' });
With createAction
, you could convert it like that:
import { createAction } from 'redux-smart-actions';
const doSomething = createAction('DO_SOMETHING');
This looks similar, but there is one big benefit - doSomething.toString() === 'DO_SOMETHING'
,
so doSomething
can be used as action creator like normally, but also in reducers or any other places
where you need action types.
What about actions with arguments like that?
const doSomething = x => ({ type: 'DO_SOMETHING', x });
Easy, just use 2nd argument:
const doSomething = createAction('DO_SOMETHING', x => ({ x }));
Basically 2nd argument is an action creator, you write it like usually, just you don't
need to worry about type
.
If you happen to use redux-thunk
, you might like using createThunk
from this library.
Often you need to use thunks which look very similar to normal actions, but they need to
dispatch an extra action or need an access to Redux state directly (which is often more convenient
than passing as param to action).
But what about constants? This is the main benefit of create-thunk
. Imagine a thunk like that:
const doSomething = () => (dispatch, getState, extraArguments) => {
const state = getState();
dispatch({ type: 'EXTRA_ACTION' });
return dispatch({ type: 'DO_SOMETHING', x: state.x });
};
As you can see, again, what about constants? It would be nice if we could forget about them:
import { createAction, createThunk } from 'redux-smart-actions';
const extraAction = createAction('EXTRA_ACTION');
const doSomething = createThunk(
'DO_SOMETHING',
() => (dispatch, getState, extraArguments) => {
const state = getState();
dispatch(extraAction());
return { x: state.x };
},
);
So what changed? doSomething.toString() === 'DO_SOMETHING'
, so you can use doSomething
in reducers directly,
like constants didn't even exist. Also notice that we do not dispatch { x: state.x }
action,
we return it, createThunk
will add type
for us and dispatch it automatically.
Of course, it is possible to pass arguments like in createAction
, for example:
import { createThunk } from 'redux-smart-actions';
const doSomething = createThunk('DO_SOMETHING', x => (dispatch, getState) => {
const state = getState();
return { x, y: state.y };
// then doSomething(1) would dispatch { type: 'DO_SOMETHING', x: 1, y: state.y }
});
Also, it is possible not to dispatch anything by returning null
in passed thunk:
import { createThunk } from 'redux-smart-actions';
const maybeDispatch = createThunk(
'MAYBE_DISPATCH',
() => (dispatch, getState) => {
const state = getState();
if (shouldWeDispatch(state)) {
return {}; // will dispatch { type: MAYBE_DISPATCH }
}
return null; // won't dispatch anything
},
);
This library provides also a reducer helper. You might like it if you don't want to use switch statements. You use it like that:
import { createReducer } from 'redux-smart-actions';
const defaultState = 0;
const reducer = createReducer(
{
INCREMENT: (state, action) => state + action.value,
DECREMENT: (state, action) => state - action.value,
},
defaultState,
);
You probably don't use constants though, but rather createAction
and createThunk
.
You can pass them instead of constants as computed properties like that:
import { createReducer, createAction } from 'redux-smart-actions';
const increment = createAction('INCREMENT', value => ({ value }));
const decrement = createAction('DECREMENT', value => ({ value }));
const defaultState = 0;
const reducer = createReducer(
{
[increment]: (state, action) => state + action.value,
[decrement]: (state, action) => state - action.value,
},
defaultState,
);
It is also possible to handle multiple types by one handler, for instance:
import { createReducer, createAction, joinTypes } from 'redux-smart-actions';
const doSomething = createAction('DO_SOMETHING', value => ({ value }));
const doSomethingElse = createAction('DO_SOMETHING_ELSE', value => ({ value }));
const defaultState = 0;
const reducer = createReducer(
{
[joinTypes(doSomething, doSomethingElse)]: (state, action) =>
state + action.value,
},
defaultState,
);
which is more convenient than passing the same handler to multiple types.
This plugin it totally optional, but very recommended. With just no work you will be able
to omit first arguments (action types) for both createAction
and createThunk
-
they will be taken from action name automatically!
To install it, just run:
npm install --save-dev babel-plugin-redux-smart-actions
and add it to babel plugins, for example in .babelrc
:
{
"plugins": ["redux-smart-actions"]
}
Then, you could use new functions from this library.
import { createSmartAction } from 'redux-smart-actions';
const doSomething = createSmartAction();
const doSomethingElse = createSmartAction(x => ({ x }));
which would be the same as:
import { createAction } from 'redux-smart-actions';
const doSomething = createAction('DO_SOMETHING');
const doSomethingElse = createAction('DO_SOMETHING_ELSE', x => ({ x }));
which saves you any need to pass action type strings manually.
The cousin of createSmartAction
, the usage is the same, just use createSmartThunk
instead of createThunk
and omit the first string argument - it will be again
interpolated from variable name you attach thunk to.
It is possible to pass several options:
{
"plugins": [
[
"redux-smart-actions",
{
"transformTypes": false,
"prefixTypes": true,
"basePath": "src/"
}
]
]
}
Here you can find explanation for these options:
transformTypes
:true
by default, whentrue
it transforms types toTHIS_FORM
, which is how people write types manually most often, so for exampledoSth
will becomeDO_STH
prefixTypes
:false
by default, it prefixes all types with file paths, which guarantees uniqueness and prevents any collisions, for exampledoSth
with path/src/stores
would become/src/stores/doSth
, or/SRC/STORES/DO_STH
iftransformTypes
istrue
basePath
:null
by default, it is useful to define ifprefixTypes
istrue
, because if not passed absolute paths for type prefixes will be used, which could be long and could vary between environments, for example if your all actions are in directory/projects/my-project/src/stores
, you could passbasePath: src/stores/
MIT