redux-action-buffer icon indicating copy to clipboard operation
redux-action-buffer copied to clipboard

Buffer Redux Actions

Results 8 redux-action-buffer issues
Sort by recently updated
recently updated
newest added

I discovered some strange behaviour with the `1.1.0` release. When dispatching actions within promises the resulting order is no longer correct (or actions are missing). The problem seems to be...

My application stopped running in IE when trying to implement this middleware. Appears it uses the includes() method, which is not supported in IE: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes Users needing to support IE...

Please add an indication of the MIT license in GitHub (Similarly to https://www.npmjs.com/package/redux-action-buffer) The quick-process is here https://help.github.com/articles/adding-a-license-to-a-repository/ Thanks

I am not able to buffer the actions before hydration occurs on v5. Could someone give an example on how to do it?

Hi. I've noticed that some of the actions are fired before releasing the queue in 1.0.1. It happens here when the result of next is calculated. ```javascript active = false...

Have you experienced any issues when using redux-action-buffer 1.1.0 with redux-loop? For some reason the actions using redux-loop never fire when we updated to 1.1.0

In your documentation, you suggest that the user place the middleware returned `createActionBuffer` after the thunk middleware. Your code does not actually necessitate this, and there are use cases where...

In the docs you show the following: ```js import createActionBuffer from 'redux-action-buffer' ``` `createActionBuffer` is not a default export though (it is exported directly through `module.exports`), so TypeScript complains. Babel...