aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-custom-markup/dynamic-element.service.ts
blob: a129070553b35dc7e2bd7da023721eff0c6107d3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

                 
               
                  







                      
                                                    





                                    
                                          




                                             




                                                        













                                                                           
                                                    



                                                      
                                                                                                     









                                                                                
import {
  ApplicationRef,
  ComponentRef,
  createComponent,
  EmbeddedViewRef,
  Injectable,
  Injector,
  OnChanges,
  SimpleChange,
  SimpleChanges,
  Type
} from '@angular/core'
import { objectKeysTyped } from '@shared/core-utils'

@Injectable()
export class DynamicElementService {

  constructor (
    private injector: Injector,
    private applicationRef: ApplicationRef
  ) { }

  createElement <T> (ofComponent: Type<T>) {
    const div = document.createElement('div')

    const component = createComponent(ofComponent, {
      environmentInjector: this.applicationRef.injector,
      elementInjector: this.injector,
      hostElement: div
    })

    return component
  }

  injectElement <T> (wrapper: HTMLElement, componentRef: ComponentRef<T>) {
    const hostView = componentRef.hostView as EmbeddedViewRef<any>

    this.applicationRef.attachView(hostView)
    wrapper.appendChild(hostView.rootNodes[0])
  }

  setModel <T> (componentRef: ComponentRef<T>, attributes: Partial<T>) {
    const changes: SimpleChanges = {}

    for (const key of objectKeysTyped(attributes)) {
      const previousValue = componentRef.instance[key]
      const newValue = attributes[key]

      componentRef.instance[key] = newValue
      changes[key as string] = new SimpleChange(previousValue, newValue, previousValue === undefined)
    }

    const component = componentRef.instance
    if (typeof (component as unknown as OnChanges).ngOnChanges === 'function') {
      (component as unknown as OnChanges).ngOnChanges(changes)
    }

    componentRef.changeDetectorRef.detectChanges()
  }
}