Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
redux-batched-actions
Advanced tools
redux higher order reducer + action creator to reduce actions under a single subscriber notification
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
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'))
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.
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 to Dan Abramov for help in Redux best practices and original idea.
FAQs
redux higher order reducer + action creator to reduce actions under a single subscriber notification
The npm package redux-batched-actions receives a total of 0 weekly downloads. As such, redux-batched-actions popularity was classified as not popular.
We found that redux-batched-actions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.