文件操作 - AngularLoader.ts
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/core/services/AngularLoader.ts
编辑文件内容
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);
修改文件时间
将文件时间修改为当前时间的前一年
删除文件