Replies: 1 comment 6 replies
-
Hi @wtruppel, I'm not entirely sure what you mean by "concatenate does not work when trying to fire effects recursively.". Could you give us a failing test case that demonstrates the behavior you want to have? |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello :)
After much exploration on my own and digging through the forum discussions, I was shocked to find out that
concatenate
does not work when trying to fire effects recursively.I'd like to suggest that an effect supporting recursiveness be added to the library because setting up, cleaning up, and dismissing scenes in a navigation stack are extremely common and very basic operations that are more easily achieved recursively.
The only alternative that I can see is to have explicit actions for starting and completing each of those 3 processes. That's 6 actions plus their reducer logic, per child scene, just to support navigation. So, if a parent scene can present 5 different child scenes, that's 30 actions in the parent scene, just to support navigation! 😳
Beta Was this translation helpful? Give feedback.
All reactions