mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 09:05:45 -06:00
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import angular from 'angular';
|
|
import coreModule from 'app/core/core_module';
|
|
import _ from 'lodash';
|
|
|
|
import {
|
|
AngularComponent,
|
|
AngularLoader as AngularLoaderInterface,
|
|
setAngularLoader as setAngularLoaderInterface,
|
|
} from '@grafana/runtime';
|
|
import { GrafanaRootScope } from 'app/routes/GrafanaCtrl';
|
|
|
|
export class AngularLoader implements AngularLoaderInterface {
|
|
/** @ngInject */
|
|
constructor(private $compile: any, private $rootScope: GrafanaRootScope) {}
|
|
|
|
load(elem: any, scopeProps: any, template: string): AngularComponent {
|
|
const scope = this.$rootScope.$new();
|
|
|
|
_.assign(scope, scopeProps);
|
|
|
|
const compiledElem = this.$compile(template)(scope);
|
|
const rootNode = angular.element(elem);
|
|
rootNode.append(compiledElem);
|
|
|
|
return {
|
|
destroy: () => {
|
|
scope.$destroy();
|
|
compiledElem.remove();
|
|
},
|
|
digest: () => {
|
|
if (!scope.$$phase) {
|
|
scope.$digest();
|
|
}
|
|
},
|
|
getScope: () => {
|
|
return scope;
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
export function setAngularLoader(v: AngularLoader) {
|
|
setAngularLoaderInterface(v);
|
|
}
|
|
|
|
coreModule.service('angularLoader', AngularLoader);
|