redux-batched-actions alternatives and similar libraries
Based on the "Data Store" category.
Alternatively, view redux-batched-actions alternatives based on common mentions on social networks and blogs.
-
recompose
A React utility belt for function components and higher-order components. -
mobx-react
React bindings for MobX. Create fully reactive components. -
reflux
A simple library for uni-directional dataflow application architecture with React extensions inspired by Flux -
fluxible
A pluggable container for universal flux applications. -
cerebral
Declarative state and side effects management for popular JavaScript frameworks -
fluxxor
:hammer_and_wrench: Flux architecture tools for React -
shasta
Dead simple + opinionated toolkit for building redux/react applications -
redux-batched-subscribe
store enhancer for https://github.com/reactjs/redux which allows batching subscribe notifications. -
react-i13n
A performant, scalable and pluggable approach to instrumenting your React application. -
fluorine-lib
Reactive state and side effect management for React using a single stream of actions. -
react-controllables
Easily create controllable components -
react-redux-provide
Bridges the gap between Redux and the declarative nature of GraphQL/Relay. Share, manipulate, and replicate application state across any number of components. -
resourcerer
Declarative data-fetching and caching framework for REST APIs with React -
react-3ducks
Simple state management solution for React -
synergies
Create a performant distributed context state for React by composing reusable state logic.
Appwrite - The Open Source Firebase alternative introduces iOS support
Do you think we are missing an alternative of redux-batched-actions or a related project?
README
redux-batched-actions
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.