You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Section 5.1 shows a tapProgram HOP that lets you add an onChange event-listener to a program.
I was pondering intergration with Redux DevTools, and found this a bit limited, since it doesn't let you observe the actual messages - only the resulting state.
This is already quite useful for debugging - I feel like the reason for a change is likely going to be interesting if you're monitoring an app for changes, so maybe consider changing this is section 5.1?
The text was updated successfully, but these errors were encountered:
The framework doesn't seem to expect any return-value from view functions?
Maybe this is a historical artifact from a time when this was a way of doing effects? Today, it seems, the view can simply dispatch if rendering the view has side-effects. (?)
It's a bit confusing and should probably be removed either way?
Section 5.1 shows a
tapProgram
HOP that lets you add anonChange
event-listener to a program.I was pondering intergration with Redux DevTools, and found this a bit limited, since it doesn't let you observe the actual messages - only the resulting state.
I ended up with this instead:
For example, this lets you see every message and resulting state in the console:
This is already quite useful for debugging - I feel like the reason for a change is likely going to be interesting if you're monitoring an app for changes, so maybe consider changing this is section 5.1?
The text was updated successfully, but these errors were encountered: