Angular router – reuse strategy recommendations
I am implementing router reuse strategy to reuse a component on multiple routes. The reuse is not because it’s the same component but because the user will a lot of interactions with it, and I need to preserve all the states, data, etc.
My question is this. While a component is detached it still receives events that it has been subscribed to. I am not sure it would work to my advantage, can someone who has used that technology recommend whether having the subscribed events firing while the component is detached is a good/bad idea?