npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

redux-action-chain-hor

v1.0.6

Published

Higher-order reducer which makes possible dispatching an array of actions at once.

Downloads

21

Readme

redux-action-chain-hor

NPM version NPM downloads MIT License Coverage

Higher-order reducer which makes possible dispatching an array of actions at once.

Usage

This package provides a Redux action creator and higher-order reducer handling that action which allows to dispatch an array of actions notifying connected components only once.

It should be used like this:

// during store creation
import { createStore } from 'redux'
import { supportActionChain } from 'redux-action-chain-hor'

const reducer = (state, action) => {
  // reducer code goes here
}
const store = createStore(
  // wrap your reducer with supportActionChain
  supportActionChain(reducer)
)

// -------------------------

// when dispatching multiple actions
// use `actionChain` action creator
import actionChain from 'redux-action-chain-hor'

dispatch(actionChain([action1(), action2('foo', 123), action3('boo')]))

In the example above reducers for actions action1, action2, action3 will be executed in order, passing state from the previous reducer to the next one. At the end Redux will notify connected components (only once!).

Rationale

Dispatching multiple redux actions sequentially results in multiple updates of connected components.

For example, if one dispatches redux actions action1, action2, action3 like this:

dispatch(action1())
dispatch(action2('foo', 123))
dispatch(action3('boo'))

components connected to Redux store will be notified 3 times - once after each dispatch call.
Depending on connected components that can have negative impact on performance.

License

MIT (http://www.opensource.org/licenses/mit-license.php)