You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I know if custom-component gets removed from DOM so that I can actually destroy services (OnDestroy lifecycle) that was injected to root module?
I see that services that are injected in root do not get destroyed when custom-component gets removed from the DOM as a WebComponent.
ngDoBootstrap(appRef: ApplicationRef, platformRef: PlatformRef) {
if (environment.build=== 'custom') {
if (!customElements.get('custom-component')) {
customElements.define('custom-component', createCustomElement(AppComponent, { injector: this.injector }));
}
}
The text was updated successfully, but these errors were encountered:
How can I know if custom-component gets removed from DOM so that I can actually destroy services (OnDestroy lifecycle) that was injected to root module?
I see that services that are injected in root do not get destroyed when custom-component gets removed from the DOM as a WebComponent.
The text was updated successfully, but these errors were encountered: