This is a service that dynamically adds a component to the DOM.
@angular/cdk
npm install --save @angular/cdk
constructor(private loaderservice: LoaderService){ }
attach() {
this.loaderservice.create(COMPONENT);
this.loaderservice.reveal();
}
detach(){
this.loaderservice.hide();
}