jecht83
(Julio Montoya)
1
Communication between parent and child is quite simple but complexity increases when the app starts growing in size
For example from A to E the communication can be:
A <--delegateAction-- B <--delegateAction-- C <--delegateAction-- D <--delegateAction-- E
Or it could be:
A <-- B <-- C <-- D <--delegateAction-- E
Or:
A <-delegateAction- E
is there any recommendation for this kind of scenarios?
jecht83
(Julio Montoya)
2
@mbrandonw any suggestion?
mbrandonw
(Brandon Williams)
3
I don't have a concrete answer for you. Any of those scenarios can work depending on the context. And of course the new shared state tools can often obviate the need for delegate actions, so you may want to look into that.
1 Like
jecht83
(Julio Montoya)
4
Got it, Thanks for your time