I have a mat-tab-group (angular material) and I want to be able to add from code behind mat-tabs including other components. I am using ComponentFactoryResolver to create the component but I am not able to add the new component to the new mat-tab through the ViewContainerRef
html
<mat-tab-group>
<mat-tab *ngFor="let tab of tabs" [label]="tab.title">
<div #test></div>
</mat-tab>
</mat-tab-group>
code behind
private open(type:string):void{
var tab = {title:'test'};
this.tabs.push(tab);
const factory = this.componentFactoryResolver.resolveComponentFactory(DiscountGridComponent );
//this will add it in the end of the view
const newComponentRef = this.viewContainerRef.createComponent(factory);
}
Update 2022, Angular v14 but applicable to lower versions as well.
@LeonardoRick solution is very proper.
Nevertheless, there is another solution, more adequate to Angular docs official example for dynamic component loader (link to docs).
So, there is proposal to make a usage of
directive
, which has definedviewContainerRef
.This directive in a component is defined with
ViewChild
:So, how to apply above solution to asked question and render multiple dynamic components?
Solution:
Directive keeps the same. However in component, instead of using
ViewChild
there will usedViewChildren
andQueryList
as above:Due to usage of
QueryList
there must be applied alsongAfterViewInit
lifecycle hook cuz right then theQueryList
is ready and loaded. Have a closer look atpopulateViewContainersWithComponents
method, in which is dynamic components assignment to tabs.In the template: