redux-batched-actions
redux-batched-actions copied to clipboard
redux higher order reducer + action to reduce actions under a single subscriber notification
Using redux-batched-actions in a Microsoft Internet Explorer (tested with IE11) causes an Error because of a missing propertyname inside the returned object. The error message in IE says a colon...
- fixes all batchAction calls emitting TS errors about BatchAction not being compatible with UnknownAction - break compatibility with Redux < 5.0.0, therefore including a major version bump - update...
Fixes #23 Also, check out the discussion around this on the original batch middleware PR: #18 ## Problem: Calling `store.dispatch` sends the action through all the middlewares again _and updates...
This is my call with `batchActions` ``` dispatch(batchActions([ this.props.actions.setTags({ tags : activeTags }), this.props.actions.setNuggets({ nuggets : activeNuggets}), this.props.actions.setSelectedDomain({ selectedDomainId : nextActiveDomain }), ])) ``` I've put a `console.log` in each...
Hi! My batch includes simple actions which return plain objects and also [thunks](https://github.com/gaearon/redux-thunk), which, in place, also can hold some batches. Is it planned to support thunks in batches? ```...
At the moment I cannot use it with redux-observable. So if I dispatch batched(action1, action2), redux-observable only receives the batchedAction. So not good. I could make the redux-observable to look...
When testing and when reading the code of the batchDispatchMiddleware I do not see the batching of actions. Each action is dispatched individually to the store and each action is...
original comment: https://github.com/tshelburne/redux-batched-actions/pull/18#issuecomment-364916115
In your async example you don't import `batchActions`, so does this need to happen, if so, could you update the docs?
It's not a big problem but perhaps there's a general warning we can put in the README with a specific warning about things like `react-router-redux`. The related issue is here:...