mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Performance: Standardize lodash imports to use destructured members Changes lodash imports of the form `import x from 'lodash/x'` to `import { x } from 'lodash'` to reduce bundle size. * Remove unnecessary _ import from Graph component * Enforce lodash import style * Fix remaining lodash imports
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import angular from 'angular';
|
|
import coreModule from 'app/core/core_module';
|
|
import { assign } 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);
|