Git Product home page Git Product logo

redux-promise-inspection-middleware's Introduction

Redux Promise Inspection Middleware

Installation

$ npm install --save redux-promise-inspection-middleware

Usage

import {createStore, applyMiddleware} from 'redux';
import reduxPromiseInspectionMiddleware from 'redux-promise-inspection-middleware';

const promiseMiddleware = reduxPromiseInspectionMiddleware()
const store = createStore(/*...*/, applyMiddleware(promiseMiddleware));

Examples

For actions which are a flux standard action where the payload is a promise if dispatches the following actions

dispatch({
  type: 'MY_ACTION'
  payload: Promise.resolve()
})

// Immediately dispatches the two following actions
{
  type: "MY_ACTION"
  payload: {pending: true}
}

{
  type: "PROMISE_PENDING"
  payload: {
    actionType: 'MY_ACTION',
  }
}


// If the promise resolves (with 'value') it dispatches the two following actions
{
  type: "MY_ACTION"
  payload: {fulfilled: true, value: 'value'}
}

{
  type: "PROMISE_FULFILLED"
  payload: {actionType: 'MY_ACTION', value: 'value'}}
}


// If the promise rejects (with 'error') it dispatches the two following actions
{
  type: "MY_ACTION"
  payload: {rejected: true, reason: 'error'}
}

{
  type: "PROMISE_REJECTED"
  payload: {actionType: 'MY_ACTION', reason: 'error'}}
}

Configuration

The default configuration is

{
  globalActionTypes: {
    fulfilled: 'PROMISE_FULFILLED',
    pending: 'PROMISE_PENDING',
    rejected: 'PROMISE_REJECTED'
  },
  payloadKeys: {
    actionType: 'actionType'
    fulfilled: 'fulfilled',
    pending: 'pending',
    rejected: 'rejected',
    value: 'value'
    reason: 'reason'
  }
}

An example of overriding the configuration is as follows:

const promiseMiddleware = reduxPromiseInspectionMiddleware({
  globalActionTypes: {
    fulfilled: 'promise/fulfilled'
    pending: 'promise/pending'
    rejected: 'promise/rejected'
  },
  payloadKeys: {
    value: 'result'
    reason: 'error'
  }
})

redux-promise-inspection-middleware's People

Contributors

charlierudolph avatar

Watchers

 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.