I have a component that takes user input. When they save, I use an action to update a store's state
In response to this new information, a results component needs to run an async operation and then respond when new information comes back.
No matter what I try, I seem to be left with a hack setTimeout
or a dispatch-within-dispatch error.
The async operation is defined via a datasource and has its own store as outlined here. What's the correct way to structure this behavior?
- User input is received by input component.
- Input component uses an action to update a store's state
- Currently, the store attempts to start the async operation needed by the output component
- My choice at this point seems to be Dispatch-with-dispatch error or a hack solution involving
setTimeout
. Neither feels correct.
What am I missing?