1.0.2 • Published 7 years ago

redux-delayed v1.0.2

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

redux-delayed

Redux middleware for accepting actions with delayed dispatch

Usage

import delayedMiddleware from 'redux-delayed';

// Here our middleware's
const middlewares = [
  ...
  delayedMiddleware,
  ...
];

const enhancer = applyMiddleware(...middlewares)

// And creating store
const store = createStore(
  rootReducer,
  initState,
  enhancer
);

Types of actions

Default action (as object)

export function testAction() {
  return {
    type: TEST_ACTION,
    payload
  };
};

Action as function:

export function testAction(data) {
  ...
  return dispatch => {
    dispatch({
      type,
      payload
    })
  };
};

Action as Promise:

export function testAction(data) {
  return new Promise((resolve, reject) => {
     ...
     // Should be resolved/rejected with FSA
     resolve({
       type,
       payload
     })
  });
};

Combined action with promise and types:

export function testAction(data) {
  return {
    types: [
        TEST_ACTION, // dispatched on call
        TEST_ACTION_ON_RESOLVE, // dispatched if promise resolved
        TEST_ACTION_ON_REJECT // if rejected
    ],
    promise: () =>
      source.fetchSomeData(data)
  };
};

Contributing

If something is unclear, confusing, or needs to be refactored, please let me know. Will appreciate any help :3

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.9.0

7 years ago

0.8.1

7 years ago

0.8.0

7 years ago