I realize this question is 10 months old but I'll post this just in case anyone else lands here... I was recently having a similar problem getting Angular 2 to work with a third party js library where I needed to add an Angular component to the third party lib via html strings. I eventually found this answer to a similar question and it solved my problem.
Radim gives an excellent explanation of how to dynamically load components, but I ended up modifying his code slightly to show the component loading a little clearer.
I only changed the dynamic.component.holder file to have a button that loads the component with the addComponent() function like so... Check out this plunker for all the code.
import {Component,OnInit} from '@angular/core';
import {ComponentResolver,ViewChild,ViewContainerRef} from '@angular/core';
import {FORM_DIRECTIVES} from "@angular/common";
import { IHaveDynamicData, CustomComponentBuilder } from './custom.component.builder';
@Component({
selector: 'dynamic-holder',
template: `
<div>
<h1>Dynamic content holder</h1>
<hr />
<div #dynamicContentPlaceHolder></div>
<hr />
change description <input [(ngModel)]="entity.description" style="width:500px" />
<button (click)="addComponent()">Add Component</button>
</div>
`,
providers: [CustomComponentBuilder],
})
export class DynamicHolder implements OnInit
{
public entity: { description: string };
dynamicComponent: IHaveDynamicData;
// reference for a <div> with #
@ViewChild('dynamicContentPlaceHolder', {read: ViewContainerRef})
protected dynamicComponentTarget: ViewContainerRef;
// ng loader and our custom builder
constructor(
protected componentResolver: ComponentResolver,
protected customComponentBuilder: CustomComponentBuilder
)
{}
public ngOnInit(){
// just init the entity for this example
this.entity = {
description: "The description of the user instance, passed as (shared) reference"
};
// dynamic template built (TODO driven by some incoming settings)
var template = this.customComponentBuilder
.CreateTemplate();
// now we get built component, just to load it
this.dynamicComponent = this.customComponentBuilder
.CreateComponent(template, FORM_DIRECTIVES);
}
public addComponent() {
// we have a component and its target
this.componentResolver
.resolveComponent(this.dynamicComponent)
.then((factory: ng.ComponentFactory<IHaveDynamicData>) =>
{
// Instantiates a single {@link Component} and inserts its Host View
// into this container at the specified `index`
let dynamicComponent = this.dynamicComponentTarget.createComponent(factory, 0);
// and here we have access to our dynamic component
let component: IHaveDynamicData = dynamicComponent.instance;
component.name = "The name passed to component as a value";
component.entity = this.entity;
});
}
}