redux-logic
redux-logic copied to clipboard
Redux middleware for organizing all your business logic. Intercept actions and perform async processing.
It would be great to see a video course on udemy (or youtube) where real world redux-logic and redux-logic-test are explained in depth by an expert. Thumbs up to make...
So I had a logic like this: ``` createLogic({ type: 'DO_SOMETHING', debounce: 250, process: etc }); ``` From the docs I assumed that `debounce` would debounce the _process_ function, not...
Hi Jeff, In your [process hook docs](https://github.com/jeffbski/redux-logic/blob/master/docs/api.md#process-hook) you state that the process hook **typically** runs after the state has been updated (*unless other logic delay's execution*). I'm not sure I...
Hey Jeff! We've run into a situation where it would be helpful to transform our dependencies before they actually hit the process method. Essentially, I would like to have an...
I'm wanting the ability to remove a single logic in the most non-disruptive way possible. I saw `replaceLogic`, but that seems a bit heavy-handed.
Following #21, The example you provided works for the promise chaining processing style. This is not the writing you recommanded to me, I have this two process that require unit...
I need to dispatch a logout event when I receive a `err.statusCode = 401`. So far, I have two solutions available: 1. write this on each logic: inconvenient 1. Pass...
Hey, I'm new to redux-logic and in this example I'm using it to filter/query some data, which requires some dispatches inside my logic to query data. This is what my...
Hello, When I run the tests on the example async-fetch-vanilla, it is only a warning: ```bash (node:24566) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: done is not a function...
In this competitive world of JS libraries, many people won't even look at something unless there are compelling testimonials by other users, so I'd like to add some of your...