Coder Social home page Coder Social logo

redux-delayed's Introduction

redux-delayed

Build Status npm

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

redux-delayed's People

Contributors

n4bcak3 avatar

Stargazers

Oleksii Smirnov avatar Andrew Poddubny avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.