Skip to content

Instantly share code, notes, and snippets.

@coderkan
Created March 9, 2020 05:14
Show Gist options
  • Select an option

  • Save coderkan/5b479a6c88e622d8eeca631869566130 to your computer and use it in GitHub Desktop.

Select an option

Save coderkan/5b479a6c88e622d8eeca631869566130 to your computer and use it in GitHub Desktop.
import { NgModuleRef, ApplicationRef } from '@angular/core';
import { createNewHosts } from '@angularclass/hmr';
export const hmrBootstrap = (module: any, bootstrap: () => Promise<NgModuleRef<any>>) => {
let ngModule: NgModuleRef<any>;
module.hot.accept();
bootstrap().then(mod => ngModule = mod);
module.hot.dispose(() => {
const appRef: ApplicationRef = ngModule.injector.get(ApplicationRef);
const elements = appRef.components.map(c => c.location.nativeElement);
const makeVisible = createNewHosts(elements);
ngModule.destroy();
makeVisible();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment