Giter Site home page Giter Site logo

redux-thunktions's Introduction

redux-thunktions

An FSA/thunk middleware for redux, ideal for use with redux-actions and redux-promise-middleware.

import {createActions} from 'redux-actions'

const {action1, action2, action3, action4} = createActions({
  ACTION_1: data => dispatch => {
    dispatch(action2())

    // the middleware will dispatch action with type ACTION_1 with payload
    // 15 to the reducer
    return 15
  },

  // returns nothing so action with type ACTION_2 is not dispatched
  ACTION_2: () => dispatch => {
    dispatch(action3())
  },

  ACTION_3: () => async (dispatch, getState) => {
    // if using redux-promise-middleware this will dispatch ACTION_3_PENDING
    // and then ACTION_3_FULFILLED (and ACTION_4) or ACTION_3_REJECTED depending on
    // whether the fetch succeeds or not
    const data = await fetch('/api/?type=' + getState().type)
    if (! data.ok)
      throw new Error('bad response from server')

    dispatch(action4())
    return data.json()
  },

  ACTION_4: () => 'plain old action',
})

To apply the middleware:

import {createStore, applyMiddleware} from 'redux'
import reduxThunktions from 'redux-thunktions'

import {globalReducer} from './reducers'  // you have to supply this

const store = createStore(
  globalReducer,
  applyMiddleware(reduxThunktions)
)

If using a promise middleware then redux-thunktions should be applied first so that promises returned by the thunk can be intercepted.

redux-thunktions's People

Contributors

insidewhy avatar

Watchers

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