В сервисе Angular 7 я создаю модальный Stackblitz .
Модал - это просто DIV, добавленный в документ следующим образом:
const modal = document.createElement('div');
modal.classList.add('modal');
modal.appendChild(this.element);
document.body.appendChild(this.modal);
Содержимое modal
(this.element) - это компонент, создаваемый динамически.
Мне бы хотелось, чтобы modal
также был динамически добавленным компонентом:
- Создать модал из ModalComponent (я думаю, что похоже на 2);
- Создать компонент (DONE);
- Добавить компонентный элемент как дочерний для модального компонента;
- Добавление модального компонента в документ.
Может ли кто-нибудь помочь мне с (3) и (4)? Не уверен, как это сделать.
Модальные
export class Modal {
protected modal: any = null;
close() {
this.modal.close();
}
}
ModalService
import { ApplicationRef, ComponentFactoryResolver, EmbeddedViewRef, Injectable, Injector, ComponentRef, ReflectiveInjector } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class ModalService {
private component: ComponentRef<any>;
private element: any;
private stage: any;
constructor(private componentFactoryResolver: ComponentFactoryResolver, private application: ApplicationRef, private injector: Injector) { }
open(component: any, data: any): void {
if(this.element)
return;
const injector: Injector = ReflectiveInjector.resolveAndCreate([{ provide: 'modal', useValue: data }]);
this.component = this.componentFactoryResolver.resolveComponentFactory(component).create(injector);
this.component.instance.modal = this;
this.application.attachView(this.component.hostView);
this.element = (this.component.hostView as EmbeddedViewRef<any>).rootNodes[0] as HTMLElement;
const modal = document.createElement('div');
modal.classList.add('modal');
modal.appendChild(this.element);
document.body.appendChild(this.modal);
}
close(): void {
this.application.detachView(this.component.hostView);
this.stage.parentNode.removeChild(this.stage);
this.component.destroy();
this.element = null;
}
}