Wersja kątowa, której używałem - Angular 4.2.0
Angular 4 został wymyślony z ComponentFactoryResolver do ładowania komponentów w czasie wykonywania. Jest to taka sama implementacja $ compile w Angular 1.0, która spełnia twoje potrzeby
W poniższym przykładzie ładuję komponent ImageWidget dynamicznie do DashboardTileComponent
Aby załadować komponent, potrzebujesz dyrektywy, którą możesz zastosować do ng-template, która pomoże umieścić komponent dynamiczny
WidgetHostDirective
import { Directive, ViewContainerRef } from '@angular/core';
@Directive({
selector: '[widget-host]',
})
export class DashboardTileWidgetHostDirective {
constructor(public viewContainerRef: ViewContainerRef) {
}
}
ta dyrektywa wstrzykuje ViewContainerRef, aby uzyskać dostęp do kontenera widoku elementu, który będzie hostował dynamicznie dodawany składnik.
DashboardTileComponent (komponent zastępczy do renderowania komponentu dynamicznego)
Ten komponent akceptuje dane wejściowe pochodzące z komponentów nadrzędnych lub można je załadować z usługi na podstawie implementacji. Ten komponent pełni główną rolę w rozwiązywaniu komponentów w czasie wykonywania. W tej metodzie można również zobaczyć metodę o nazwie renderComponent (), która ostatecznie ładuje nazwę komponentu z usługi i rozwiązuje ją za pomocą ComponentFactoryResolver i ostatecznie ustawia dane na komponent dynamiczny.
import { Component, Input, OnInit, AfterViewInit, ViewChild, ComponentFactoryResolver, OnDestroy } from '@angular/core';
import { DashboardTileWidgetHostDirective } from './DashbardWidgetHost.Directive';
import { TileModel } from './Tile.Model';
import { WidgetComponentService } from "./WidgetComponent.Service";
@Component({
selector: 'dashboard-tile',
templateUrl: 'app/tile/DashboardTile.Template.html'
})
export class DashboardTileComponent implements OnInit {
@Input() tile: any;
@ViewChild(DashboardTileWidgetHostDirective) widgetHost: DashboardTileWidgetHostDirective;
constructor(private _componentFactoryResolver: ComponentFactoryResolver,private widgetComponentService:WidgetComponentService) {
}
ngOnInit() {
}
ngAfterViewInit() {
this.renderComponents();
}
renderComponents() {
let component=this.widgetComponentService.getComponent(this.tile.componentName);
let componentFactory = this._componentFactoryResolver.resolveComponentFactory(component);
let viewContainerRef = this.widgetHost.viewContainerRef;
let componentRef = viewContainerRef.createComponent(componentFactory);
(<TileModel>componentRef.instance).data = this.tile;
}
}
DashboardTileComponent.html
<div class="col-md-2 col-lg-2 col-sm-2 col-default-margin col-default">
<ng-template widget-host></ng-template>
</div>
WidgetComponentService
Jest to fabryka usług, która rejestruje wszystkie komponenty, które chcesz rozwiązywać dynamicznie
import { Injectable } from '@angular/core';
import { ImageTextWidgetComponent } from "../templates/ImageTextWidget.Component";
@Injectable()
export class WidgetComponentService {
getComponent(componentName:string) {
if(componentName==="ImageTextWidgetComponent"){
return ImageTextWidgetComponent
}
}
}
ImageTextWidgetComponent (komponent, który ładujemy w czasie wykonywania)
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'dashboard-imagetextwidget',
templateUrl: 'app/templates/ImageTextWidget.html'
})
export class ImageTextWidgetComponent implements OnInit {
@Input() data: any;
constructor() { }
ngOnInit() { }
}
Dodaj Na koniec dodaj ten ImageTextWidgetComponent do modułu aplikacji jako entryComponent
@NgModule({
imports: [BrowserModule],
providers: [WidgetComponentService],
declarations: [
MainApplicationComponent,
DashboardHostComponent,
DashboardGroupComponent,
DashboardTileComponent,
DashboardTileWidgetHostDirective,
ImageTextWidgetComponent
],
exports: [],
entryComponents: [ImageTextWidgetComponent],
bootstrap: [MainApplicationComponent]
})
export class DashboardModule {
constructor() {
}
}
TileModel
export interface TileModel {
data: any;
}
Oryginalne odniesienie z mojego bloga
Oficjalna dokumentacja
Pobierz przykładowy kod źródłowy