1 import { NgModuleRef, ApplicationRef } from '@angular/core'
2 import { createNewHosts } from '@angularclass/hmr'
3 import { enableDebugTools } from '@angular/platform-browser'
5 export const hmrBootstrap = (module: any, bootstrap: () => Promise<NgModuleRef<any>>) => {
6 let ngModule: NgModuleRef<any>
12 const applicationRef = ngModule.injector.get(ApplicationRef)
13 const componentRef = applicationRef.components[ 0 ]
14 // allows to run `ng.profiler.timeChangeDetection();`
15 enableDebugTools(componentRef)
17 module.hot.dispose(() => {
18 const appRef: ApplicationRef = ngModule.injector.get(ApplicationRef)
19 const elements = appRef.components.map(c => c.location.nativeElement)
20 const makeVisible = createNewHosts(elements)