I Implemented router reuse strategy by following this THREAD
Here all routes and components instance have been saved on every single visit. This cause some misbehaviour in our functionality. So I decided to store particular instance at particular point based on some condition like using shared service value
or based on property
of a component. RouteReuseStrategy
not allowing to create any constructor.How can I achieve this ?