redux-logic icon indicating copy to clipboard operation
redux-logic copied to clipboard

Redux middleware for organizing all your business logic. Intercept actions and perform async processing.

Results 62 redux-logic issues
Sort by recently updated
recently updated
newest added

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...

request

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...

question

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.

question

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...

discussion

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...

question
request

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...

question

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...

discussion