forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
494 B
23 lines
494 B
import { auto } from 'angular';
|
|
|
|
let injector: auto.IInjectorService | undefined;
|
|
|
|
/**
|
|
* Future poc to lazy load angular app, not yet used
|
|
*/
|
|
export async function getAngularInjector(): Promise<auto.IInjectorService> {
|
|
if (injector) {
|
|
return injector;
|
|
}
|
|
|
|
const { AngularApp } = await import(/* webpackChunkName: "AngularApp" */ './index');
|
|
if (injector) {
|
|
return injector;
|
|
}
|
|
|
|
const app = new AngularApp();
|
|
app.init();
|
|
injector = app.bootstrap();
|
|
|
|
return injector;
|
|
}
|
|
|