Assume I have action A
which is dispatched to reducer R1
and R2
. I also have smart component C
which is connect
ed to the states returned by R1
and R2
Is it possible that component C
were rerendered when R1
is executed but before R2
is executed?
How if I want to rerender C
only when both R1
and R2
are executed? Or is it possible to tell Redux dispatcher
to dispatch the action to R2
first?
*R1
is actually the results
state returned by redux normalizr
and R2
is the entities
state. The entities
are needed to denormalize the results