// todo: add delay support // todo: merge events onShow, onShown, etc... // todo: add global positioning configuration? import { ApplicationRef, ComponentFactory, ComponentFactoryResolver, ComponentRef, ElementRef, EmbeddedViewRef, EventEmitter, Injector, NgZone, Provider, ReflectiveInjector, Renderer, TemplateRef, Type, ViewContainerRef } from '@angular/core'; import { PositioningOptions, PositioningService } from '../positioning'; import { listenToTriggersV2, registerOutsideClick } from '../utils/triggers'; import { ContentRef } from './content-ref.class'; import { ListenOptions } from './listen-options.model'; export class ComponentLoader { public onBeforeShow: EventEmitter = new EventEmitter(); public onShown: EventEmitter = new EventEmitter(); public onBeforeHide: EventEmitter = new EventEmitter(); public onHidden: EventEmitter = new EventEmitter(); public instance: T; public _componentRef: ComponentRef; public _inlineViewRef: EmbeddedViewRef; private _providers: Provider[] = []; private _componentFactory: ComponentFactory; private _zoneSubscription: any; private _contentRef: ContentRef; private _innerComponent: ComponentRef; private _unregisterListenersFn: Function; public get isShown(): boolean { return !!this._componentRef; }; /** * Placement of a component. Accepts: "top", "bottom", "left", "right" */ private attachment: string; /** * A selector specifying the element the popover should be appended to. * Currently only supports "body". */ private container: string | ElementRef | any; /** * Specifies events that should trigger. Supports a space separated list of * event names. */ private triggers: string; _listenOpts: ListenOptions = {}; _globalListener = Function.prototype; /** * Do not use this directly, it should be instanced via * `ComponentLoadFactory.attach` * @internal */ // tslint:disable-next-line public constructor(private _viewContainerRef: ViewContainerRef, private _renderer: Renderer, private _elementRef: ElementRef, private _injector: Injector, private _componentFactoryResolver: ComponentFactoryResolver, private _ngZone: NgZone, private _applicationRef: ApplicationRef, private _posService: PositioningService) { } public attach(compType: Type): ComponentLoader { this._componentFactory = this._componentFactoryResolver .resolveComponentFactory(compType); return this; } // todo: add behaviour: to target element, `body`, custom element public to(container?: string): ComponentLoader { this.container = container || this.container; return this; } public position(opts?: PositioningOptions): ComponentLoader { this.attachment = opts.attachment || this.attachment; this._elementRef = opts.target as ElementRef || this._elementRef; return this; } public provide(provider: Provider): ComponentLoader { this._providers.push(provider); return this; } // todo: appendChild to element or document.querySelector(this.container) public show(opts: { content?: string | TemplateRef, context?: any, [key: string]: any } = {}): ComponentRef { this._subscribePositioning(); this._innerComponent = null; if (!this._componentRef) { this.onBeforeShow.emit(); this._contentRef = this._getContentRef(opts.content, opts.context); const injector = ReflectiveInjector.resolveAndCreate(this._providers, this._injector); this._componentRef = this._componentFactory.create(injector, this._contentRef.nodes); this._applicationRef.attachView(this._componentRef.hostView); // this._componentRef = this._viewContainerRef // .createComponent(this._componentFactory, 0, injector, this._contentRef.nodes); this.instance = this._componentRef.instance; Object.assign(this._componentRef.instance, opts); if (this.container instanceof ElementRef) { this.container.nativeElement .appendChild(this._componentRef.location.nativeElement); } if (this.container === 'body' && typeof document !== 'undefined') { document.querySelector(this.container as string) .appendChild(this._componentRef.location.nativeElement); } if (!this.container && this._elementRef && this._elementRef.nativeElement.parentElement) { this._elementRef.nativeElement.parentElement .appendChild(this._componentRef.location.nativeElement); } // we need to manually invoke change detection since events registered // via // Renderer::listen() are not picked up by change detection with the // OnPush strategy if (this._contentRef.componentRef) { this._innerComponent = this._contentRef.componentRef.instance; this._contentRef.componentRef.changeDetectorRef.markForCheck(); this._contentRef.componentRef.changeDetectorRef.detectChanges(); } this._componentRef.changeDetectorRef.markForCheck(); this._componentRef.changeDetectorRef.detectChanges(); this.onShown.emit(this._componentRef.instance); } this._registerOutsideClick(); return this._componentRef; } public hide(): ComponentLoader { if (!this._componentRef) { return this; } this.onBeforeHide.emit(this._componentRef.instance); const componentEl = this._componentRef.location.nativeElement; componentEl.parentNode.removeChild(componentEl); if (this._contentRef.componentRef) { this._contentRef.componentRef.destroy(); } this._componentRef.destroy(); if (this._viewContainerRef && this._contentRef.viewRef) { this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._contentRef.viewRef)); } // this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._componentRef.hostView)); // // if (this._contentRef.viewRef && this._viewContainerRef.indexOf(this._contentRef.viewRef) !== -1) { // this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._contentRef.viewRef)); // } this._contentRef = null; this._componentRef = null; this._removeGlobalListener(); this.onHidden.emit(); return this; } public toggle(): void { if (this.isShown) { this.hide(); return; } this.show(); } public dispose(): void { if (this.isShown) { this.hide(); } this._unsubscribePositioning(); if (this._unregisterListenersFn) { this._unregisterListenersFn(); } } public listen(listenOpts: ListenOptions): ComponentLoader { this.triggers = listenOpts.triggers || this.triggers; this._listenOpts.outsideClick = listenOpts.outsideClick; listenOpts.target = listenOpts.target || this._elementRef.nativeElement; const hide = this._listenOpts.hide = () => listenOpts.hide ? listenOpts.hide() : this.hide(); const show = this._listenOpts.show = (registerHide: Function) => { listenOpts.show ? listenOpts.show(registerHide) : this.show(registerHide); registerHide(); }; const toggle = (registerHide: Function) => { this.isShown ? hide() : show(registerHide); }; this._unregisterListenersFn = listenToTriggersV2(this._renderer, { target: listenOpts.target, triggers: listenOpts.triggers, show, hide, toggle }); return this; } _removeGlobalListener() { if (this._globalListener) { this._globalListener(); this._globalListener = null; } } attachInline(vRef: ViewContainerRef, template: TemplateRef): ComponentLoader { this._inlineViewRef = vRef.createEmbeddedView(template); return this; } _registerOutsideClick(): void { if (!this._componentRef || !this._componentRef.location) { return; } // why: should run after first event bubble if (this._listenOpts.outsideClick) { const target = this._componentRef.location.nativeElement; setTimeout(() => { this._globalListener = registerOutsideClick(this._renderer, { targets: [target, this._elementRef.nativeElement], outsideClick: this._listenOpts.outsideClick, hide: () => this._listenOpts.hide() }); }); } } public getInnerComponent(): ComponentRef { return this._innerComponent; } private _subscribePositioning(): void { if (this._zoneSubscription || !this.attachment) { return; } this._zoneSubscription = this._ngZone .onStable.subscribe(() => { if (!this._componentRef) { return; } this._posService.position({ element: this._componentRef.location, target: this._elementRef, attachment: this.attachment, appendToBody: this.container === 'body' }); }); } private _unsubscribePositioning(): void { if (!this._zoneSubscription) { return; } this._zoneSubscription.unsubscribe(); this._zoneSubscription = null; } private _getContentRef(content: string | TemplateRef | any, context?: any): ContentRef { if (!content) { return new ContentRef([]); } if (content instanceof TemplateRef) { if (this._viewContainerRef) { const viewRef = this._viewContainerRef.createEmbeddedView>(content, context); viewRef.markForCheck(); return new ContentRef([viewRef.rootNodes], viewRef); } const viewRef = content.createEmbeddedView({}); this._applicationRef.attachView(viewRef); return new ContentRef([viewRef.rootNodes], viewRef); } if (typeof content === 'function') { const contentCmptFactory = this._componentFactoryResolver.resolveComponentFactory(content); const modalContentInjector = ReflectiveInjector.resolveAndCreate([...this._providers, content], this._injector); const componentRef = contentCmptFactory.create(modalContentInjector); this._applicationRef.attachView(componentRef.hostView); return new ContentRef([[componentRef.location.nativeElement]], componentRef.hostView, componentRef); } return new ContentRef([[this._renderer.createText(null, `${content}`)]]); } }