Is it possible to have router named outlets that are activated once and then never destroyed, no matter what route is navigated in primary outlet?
The intention is t
Router needs information about named outlets, so there are good chances that implementing your own UrlSerializer
will help.
Idea is simple, deserialization process should be aware of routes which have static named outlets and produce UrlTree
which contains named outlets i.e. for /login
url should produce the same UrlTree
as default serializer will produce for url /login(popup:compose)
. During serialization static named outlet parameters should not be included into resulting url.