我们的应用程序中有一个标准模态。
<ng-template [ngIf]="true" #editDataModal>
<div class="modal-header">
<h5 class="modal-title">Edit Modal</h5>
<button type="button" class="close" aria-label="Close" (click)="onCancelClicked()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" #editDataModalBody>CUSTOM COMPONENT GOES HERE</div>
</ng-template>
我们希望能够将自定义组件作为身体传递。 ngx引导程序中有没有办法做到这一点?
该模式似乎出现在主要内容之外,因此我们无法使用ViewChild来找到它。
我们使用模式服务来称呼它。像这样:-
constructor(
private modalService: BsModalService
) { }
ngOnInit() {
this.modalConfig = {
ignoreBackdropClick: true
};
this.ModalRef = this.modalService.show(this.editModal, this.modalConfig);
}
答案 0 :(得分:0)
模态组件可以获取并发布ViewContainerRef。例如,它可以使用BehaviorSubject。当viewContainerRef发布时,父组件可以创建自定义组件并将其添加到模式中。我只是这样做而不是仅仅使用getter,因为ViewChild直到afterViewInit才有效,因此您需要一种处理方法。
// EditModalComponent
export class EditModalComponent implements AfterViewInit {
@ViewChild("editDataModalBody", {read: ViewContainerRef}) vc: ViewContainerRef;
public bodyRefSubject: BehaviorSubject<ViewContainerRef> = new BehaviorSubject<ViewContainerRef>(null);
constructor(
public bsModalRef: BsModalRef,
public vcRef: ViewContainerRef
) {}
ngAfterViewInit() {
this.bodyRefSubject.next(this.vc);
}
onCancelClicked() {
console.log('cancel clicked');
this.bsModalRef.hide()
}
}
在父组件中:
// Parent Component
export class AppComponent {
bsModalRef: BsModalRef;
bodyContainerRef: ViewContainerRef;
customComponentFactory: ComponentFactory<CustomComponent>;
modalConfig: ModalOptions;
constructor(
private modalService: BsModalService,
private resolver: ComponentFactoryResolver
) {
this.customComponentFactory = resolver.resolveComponentFactory(CustomComponent);
}
openModalWithComponent() {
this.modalConfig = {
ignoreBackdropClick: true,
}
this.bsModalRef = this.modalService.show(EditModalComponent, this.modalConfig);
this.bsModalRef.content.bodyRefSubject.subscribe((ref) => {
this.bodyContainerRef = ref;
if (this.bodyContainerRef) {
this.bodyContainerRef.createComponent(this.customComponentFactory);
}
})
}
}
不使用ViewChild的另一种方法是在div上放置指令,而不是#editDataModalBody,该指令可以注入ViewContainerRef并使用服务或类似方法将其发布。