Giter Club home page Giter Club logo

redux-mw-dispatcher's Introduction

redux-mw-dispatcher

This is a library implementing a pattern I've used on a couple of Redux projects with a lot of moving parts. Instead of using thunks and action creators that return functions, which I've found a little hard to manage, it allows defining a dispatcher to listen for namespaced actions and trigger asynchronous tasks.

Usage

import dispatcher from 'redux-mw-dispatcher';

export async function doAsync(action) {
  // asynchronous work
}

export default dispatcher('test', {
  'execute': doAsync
});

Now, when an action of type 'test/execute' is dispatched, the doAsync function will execute.

Parameters

The properties passed to the asynchronous function are, in order:

  • the dispatched action that triggered the call
  • the redux store's dispatch function
  • the redux store's getState function

So, dispatch and getState can be used as in thunks to interact with redux.

When unit testing, it can be beneficial to pass additional dependencies as arguments:

export async function loadData(fetch, action, dispatch) {
  let response = await fetch('/getData');
  if (response.ok) {
    let model = parseModel(response);
    dispatch(dataLoaded(model));
  }
}

export default dispatcher('test', {
  'load': loadData.bind(fetch);
});

Now, we can pass a stub to the function when testing it:

let response = { id: '1' };
let fetchStub = async (url, options) => {
  return { ok: true, json: async () => response };
}
await loadData(fetchStub, { type: 'test/load' });

redux-mw-dispatcher's People

Contributors

acrees avatar

Watchers

James Cloos avatar  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.