0.5.0 • Published 4 years ago

redux-batched-actions v0.5.0

Weekly downloads
38,060
License
MIT
Repository
github
Last release
4 years ago

redux-batched-actions

Build Status

Batching action creator and associated higher order reducer for redux that enables batching subscriber notifications for an array of actions.

npm install --save redux-batched-actions

Usage

import {createStore, applyMiddleware} from 'redux';
import {batchActions, enableBatching, batchDispatchMiddleware} from 'redux-batched-actions';
import {createAction} from 'redux-actions';

const doThing = createAction('DO_THING')
const doOther = createAction('DO_OTHER')

function reducer(state, action) {
	switch (action.type) {
		case 'DO_THING': return 'thing'
		case 'DO_OTHER': return 'other'
		default: return state
	}
}

// Handle bundled actions in reducer
const store = createStore(enableBatching(reducer), initialState)

store.dispatch(batchActions([doThing(), doOther()]))
// OR
store.dispatch(batchActions([doThing(), doOther()], 'DO_BOTH'))

Recipes

Async

Usage for action creators that return objects is trivial, but it also works well with thunks to perform large reductions on multiple asynchronous actions, or actions that rely on external services. For example:

const setLoading = createAction('SET_LOADING')
const setUser = createAction('SET_USER')
const unsetLoading = createAction('UNSET_LOADING')

function login(credentials) {
	return function(dispatch) {
		dispatch(setLoading());

		authenticate(credentials)
			.then(user => {
				dispatch(batchActions([
					setUser(user),
					unsetLoading()
				], 'LOGIN_SUCCESS'))
			})
		})
	}
}

In this example, the subscribers would be notified twice: once when the state is loading, and then again once the user has been loaded.

Middleware integration

You can add a middleware to dispatch each of the bundled actions. This can be used if other middlewares are listening for one of the bundled actions to be dispatched.

const store = createStore(
		reducer,
		initialState,
		applyMiddleware(batchDispatchMiddleware)
)

Note that batchDispatchMiddleware and enableBatching should not be used together as batchDispatchMiddleware calls next on the action it receives, whilst also dispatching each of the bundled actions.

Thanks

Thanks to Dan Abramov for help in Redux best practices and original idea.

@gooddata/sdk-ui-dashboard@wildberries/content-redux-ui-moduleforest-runner@ventusrisk/jslibscm-ui@dmsi-agility/providersblindajemattermost-webapp-libpds-dev-kit@img-arena/dde-ui-components-testprogram_leader_portal_py@infinitebrahmanuniverse/nolb-redux-b@everything-registry/sub-chunk-2637higlass-appkoleznevdfgsdfgfsdgsdfgrsbet-frontendladifire-reduxladipos-reduxlandingheat-reduxlegit-schedulerlegit-scheduler-multi-eventsjoyent-cp-frontendn2o-frameworkmath3d-componentmattermost-redux-betaember-redux-batched-actionsentmanerschema-suiteerschema-actionsgenome-spyformalist-composeformwiz-publicweb-controls@wildberries/redux-core-modules@wildberries/vendors-redux@wedgekit/a11y@thechatshop/chat-widget@visit-x/vxmessenger@szero/pc-redux@vikadata/core@vikadata/widget-sdkreact-pandaviewer@apitable/core@apitable/widget-sdkastrazeneca-vdcpiling.js@talend/cmf-designer@talend/react-components-kit@talend/react-cmf@types/redux-batched-actionssaga-query@elie222/ex-navigation@exponent/ex-navigation@expo/ex-navigation@img-arena/dde-ui-componentstwo-way-restui-apptopbetta-frontend@jsierles/ex-navigation@mihanizm56/redux-core-modules@kleros/dx-reactzero-pc@genome-spy/appsoc-reduxsync-mattermost-reduxtalend-dq-dictionarytc-tool@brizy/cms-ui@brizy/media-gallery@brizy/plugin-cmstes-int-matterdm-uikitscpx-walletrigado-thingy-starter-dashboard@bookassist/ba-header@bentley/monaco-editor@botxo_team/fe-sharedredux-controlredux-express-queryredux-restifyredux-session-server@leovigna/web3-redux@lighthouse/sdk@shoutem/redux-io@mattermost/mattermost-redux
0.5.0

4 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.1

6 years ago

0.1.6

7 years ago

0.2.0

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago