redux-async-dispatch

1.0.4 • Public • Published

redux-async-dispatch

How to use:

example for some ./connector.js

import { asyncConnect } from 'redux-connect';
import asyncLoader from 'redux-async-dispatch';
 
const mapAsyncActions = [{
  promise: ({ store: { dispatch, getState } }) =>
    asyncLoader(dispatch, getState(), [
      [getSomeState, loadSomething], // first array parameter function with @return boolean or boolean
      loadOther(), // load without check state by loaded data
    ]),
}];
 
const mapStateToProps = () => ({});
 
export default asyncConnect(mapAsyncActions, mapStateToProps)(Component);

Dependencies (0)

    Dev Dependencies (5)

    Package Sidebar

    Install

    npm i redux-async-dispatch

    Weekly Downloads

    1

    Version

    1.0.4

    License

    ISC

    Last publish

    Collaborators

    • ipostol