2020-01-30 03:54:11 -06:00
|
|
|
import 'core-js/stable';
|
|
|
|
import 'regenerator-runtime/runtime';
|
|
|
|
|
2020-01-22 01:15:31 -06:00
|
|
|
import 'whatwg-fetch'; // fetch polyfill needed for PhantomJs rendering
|
|
|
|
import 'abortcontroller-polyfill/dist/polyfill-patch-fetch'; // fetch polyfill needed for PhantomJs rendering
|
2020-01-30 03:54:11 -06:00
|
|
|
// @ts-ignore
|
|
|
|
import ttiPolyfill from 'tti-polyfill';
|
|
|
|
|
2017-12-20 05:33:33 -06:00
|
|
|
import 'file-saver';
|
|
|
|
import 'lodash';
|
|
|
|
import 'jquery';
|
|
|
|
import 'angular';
|
|
|
|
import 'angular-route';
|
|
|
|
import 'angular-sanitize';
|
|
|
|
import 'angular-native-dragdrop';
|
|
|
|
import 'angular-bindonce';
|
|
|
|
import 'react';
|
|
|
|
import 'react-dom';
|
|
|
|
|
|
|
|
import 'vendor/bootstrap/bootstrap';
|
|
|
|
import 'vendor/angular-other/angular-strap';
|
|
|
|
|
|
|
|
import $ from 'jquery';
|
|
|
|
import angular from 'angular';
|
|
|
|
import config from 'app/core/config';
|
2019-03-15 01:19:34 -05:00
|
|
|
// @ts-ignore ignoring this for now, otherwise we would have to extend _ interface with move
|
2017-12-20 05:33:33 -06:00
|
|
|
import _ from 'lodash';
|
2020-03-26 15:48:46 -05:00
|
|
|
import {
|
|
|
|
AppEvents,
|
|
|
|
setLocale,
|
|
|
|
setMarkdownOptions,
|
|
|
|
standardEditorsRegistry,
|
|
|
|
standardFieldConfigEditorRegistry,
|
|
|
|
} from '@grafana/data';
|
2019-10-23 03:30:31 -05:00
|
|
|
import appEvents from 'app/core/app_events';
|
2019-01-23 07:57:19 -06:00
|
|
|
import { addClassIfNoOverlayScrollbar } from 'app/core/utils/scrollbar';
|
2019-10-23 03:30:31 -05:00
|
|
|
import { checkBrowserCompatibility } from 'app/core/utils/browser';
|
2019-04-11 01:02:22 -05:00
|
|
|
import { importPluginModule } from 'app/features/plugins/plugin_loader';
|
2020-01-22 01:15:31 -06:00
|
|
|
import { angularModules, coreModule } from 'app/core/core_module';
|
2018-10-14 09:31:20 -05:00
|
|
|
import { registerAngularDirectives } from 'app/core/core';
|
|
|
|
import { setupAngularRoutes } from 'app/routes/routes';
|
2020-01-22 01:15:31 -06:00
|
|
|
import { registerEchoBackend, setEchoSrv } from '@grafana/runtime';
|
2019-12-05 01:30:39 -06:00
|
|
|
import { Echo } from './core/services/echo/Echo';
|
|
|
|
import { reportPerformance } from './core/services/echo/EchoSrv';
|
|
|
|
import { PerformanceBackend } from './core/services/echo/backends/PerformanceBackend';
|
2018-10-14 09:31:20 -05:00
|
|
|
|
|
|
|
import 'app/routes/GrafanaCtrl';
|
|
|
|
import 'app/features/all';
|
2020-03-26 15:48:46 -05:00
|
|
|
import { getStandardFieldConfigs, getStandardOptionEditors } from '@grafana/ui';
|
2020-03-23 09:33:17 -05:00
|
|
|
import { getDefaultVariableAdapters, variableAdapters } from './features/variables/adapters';
|
2015-12-17 07:27:34 -06:00
|
|
|
|
2020-01-22 01:15:31 -06:00
|
|
|
// add move to lodash for backward compatabiltiy
|
|
|
|
// @ts-ignore
|
|
|
|
_.move = (array: [], fromIndex: number, toIndex: number) => {
|
|
|
|
array.splice(toIndex, 0, array.splice(fromIndex, 1)[0]);
|
|
|
|
return array;
|
|
|
|
};
|
|
|
|
|
2018-10-12 00:19:05 -05:00
|
|
|
// import symlinked extensions
|
|
|
|
const extensionsIndex = (require as any).context('.', true, /extensions\/index.ts/);
|
2019-03-15 01:19:34 -05:00
|
|
|
extensionsIndex.keys().forEach((key: any) => {
|
2018-10-12 00:19:05 -05:00
|
|
|
extensionsIndex(key);
|
2018-10-11 05:36:04 -05:00
|
|
|
});
|
|
|
|
|
2015-12-17 07:27:34 -06:00
|
|
|
export class GrafanaApp {
|
|
|
|
registerFunctions: any;
|
|
|
|
ngModuleDependencies: any[];
|
2019-08-05 05:07:35 -05:00
|
|
|
preBootModules: any[] | null;
|
2015-12-17 07:27:34 -06:00
|
|
|
|
2015-12-21 09:00:58 -06:00
|
|
|
constructor() {
|
2019-01-23 07:57:19 -06:00
|
|
|
addClassIfNoOverlayScrollbar('no-overlay-scrollbar');
|
2015-12-21 09:00:58 -06:00
|
|
|
this.preBootModules = [];
|
|
|
|
this.registerFunctions = {};
|
|
|
|
this.ngModuleDependencies = [];
|
|
|
|
}
|
|
|
|
|
2019-03-15 01:19:34 -05:00
|
|
|
useModule(module: angular.IModule) {
|
2015-12-17 07:27:34 -06:00
|
|
|
if (this.preBootModules) {
|
|
|
|
this.preBootModules.push(module);
|
|
|
|
} else {
|
|
|
|
_.extend(module, this.registerFunctions);
|
|
|
|
}
|
|
|
|
this.ngModuleDependencies.push(module.name);
|
|
|
|
return module;
|
|
|
|
}
|
|
|
|
|
|
|
|
init() {
|
2018-08-26 14:52:57 -05:00
|
|
|
const app = angular.module('grafana', []);
|
2015-12-17 07:27:34 -06:00
|
|
|
|
2019-05-08 06:51:44 -05:00
|
|
|
setLocale(config.bootData.user.locale);
|
2016-07-05 10:59:43 -05:00
|
|
|
|
2019-06-26 06:15:45 -05:00
|
|
|
setMarkdownOptions({ sanitize: !config.disableSanitizeHtml });
|
2020-03-26 15:48:46 -05:00
|
|
|
|
|
|
|
standardEditorsRegistry.setInit(getStandardOptionEditors);
|
2020-02-13 14:37:24 -06:00
|
|
|
standardFieldConfigEditorRegistry.setInit(getStandardFieldConfigs);
|
2020-03-23 09:33:17 -05:00
|
|
|
variableAdapters.setInit(getDefaultVariableAdapters);
|
2019-06-26 06:15:45 -05:00
|
|
|
|
2019-03-15 01:19:34 -05:00
|
|
|
app.config(
|
|
|
|
(
|
|
|
|
$locationProvider: angular.ILocationProvider,
|
|
|
|
$controllerProvider: angular.IControllerProvider,
|
|
|
|
$compileProvider: angular.ICompileProvider,
|
|
|
|
$filterProvider: angular.IFilterProvider,
|
|
|
|
$httpProvider: angular.IHttpProvider,
|
|
|
|
$provide: angular.auto.IProvideService
|
|
|
|
) => {
|
|
|
|
// pre assing bindings before constructor calls
|
|
|
|
$compileProvider.preAssignBindingsEnabled(true);
|
|
|
|
|
|
|
|
if (config.buildInfo.env !== 'development') {
|
|
|
|
$compileProvider.debugInfoEnabled(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
$httpProvider.useApplyAsync(true);
|
|
|
|
|
|
|
|
this.registerFunctions.controller = $controllerProvider.register;
|
|
|
|
this.registerFunctions.directive = $compileProvider.directive;
|
|
|
|
this.registerFunctions.factory = $provide.factory;
|
|
|
|
this.registerFunctions.service = $provide.service;
|
|
|
|
this.registerFunctions.filter = $filterProvider.register;
|
|
|
|
|
|
|
|
$provide.decorator('$http', [
|
|
|
|
'$delegate',
|
|
|
|
'$templateCache',
|
|
|
|
($delegate: any, $templateCache: any) => {
|
|
|
|
const get = $delegate.get;
|
|
|
|
$delegate.get = (url: string, config: any) => {
|
|
|
|
if (url.match(/\.html$/)) {
|
|
|
|
// some template's already exist in the cache
|
|
|
|
if (!$templateCache.get(url)) {
|
|
|
|
url += '?v=' + new Date().getTime();
|
|
|
|
}
|
2017-12-21 01:39:31 -06:00
|
|
|
}
|
2019-03-15 01:19:34 -05:00
|
|
|
return get(url, config);
|
|
|
|
};
|
|
|
|
return $delegate;
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
);
|
2015-12-17 07:27:34 -06:00
|
|
|
|
|
|
|
this.ngModuleDependencies = [
|
2017-12-20 05:33:33 -06:00
|
|
|
'grafana.core',
|
|
|
|
'ngRoute',
|
|
|
|
'ngSanitize',
|
|
|
|
'$strap.directives',
|
|
|
|
'ang-drag-drop',
|
|
|
|
'grafana',
|
|
|
|
'pasvaz.bindonce',
|
|
|
|
'react',
|
2015-12-17 07:27:34 -06:00
|
|
|
];
|
|
|
|
|
2016-01-13 15:31:29 -06:00
|
|
|
// makes it possible to add dynamic stuff
|
2019-03-15 01:19:34 -05:00
|
|
|
_.each(angularModules, (m: angular.IModule) => {
|
2018-10-14 09:31:20 -05:00
|
|
|
this.useModule(m);
|
|
|
|
});
|
2016-01-13 15:31:29 -06:00
|
|
|
|
2017-10-22 05:48:20 -05:00
|
|
|
// register react angular wrappers
|
2017-12-21 04:56:45 -06:00
|
|
|
coreModule.config(setupAngularRoutes);
|
2017-10-22 05:48:20 -05:00
|
|
|
registerAngularDirectives();
|
|
|
|
|
2018-10-14 09:31:20 -05:00
|
|
|
// disable tool tip animation
|
|
|
|
$.fn.tooltip.defaults.animation = false;
|
2015-12-17 07:27:34 -06:00
|
|
|
|
2018-10-14 09:31:20 -05:00
|
|
|
// bootstrap the app
|
|
|
|
angular.bootstrap(document, this.ngModuleDependencies).invoke(() => {
|
2019-03-15 01:19:34 -05:00
|
|
|
_.each(this.preBootModules, (module: angular.IModule) => {
|
2018-10-14 09:31:20 -05:00
|
|
|
_.extend(module, this.registerFunctions);
|
2015-12-17 07:27:34 -06:00
|
|
|
});
|
2018-10-14 09:31:20 -05:00
|
|
|
|
|
|
|
this.preBootModules = null;
|
2019-10-23 03:30:31 -05:00
|
|
|
|
|
|
|
if (!checkBrowserCompatibility()) {
|
|
|
|
setTimeout(() => {
|
|
|
|
appEvents.emit(AppEvents.alertWarning, [
|
|
|
|
'Your browser is not fully supported',
|
|
|
|
'A newer browser version is recommended',
|
|
|
|
]);
|
|
|
|
}, 1000);
|
|
|
|
}
|
2018-10-14 09:31:20 -05:00
|
|
|
});
|
2019-04-11 01:02:22 -05:00
|
|
|
|
|
|
|
// Preload selected app plugins
|
|
|
|
for (const modulePath of config.pluginsToPreload) {
|
|
|
|
importPluginModule(modulePath);
|
|
|
|
}
|
2015-12-17 07:27:34 -06:00
|
|
|
}
|
2019-12-05 01:30:39 -06:00
|
|
|
|
|
|
|
initEchoSrv() {
|
|
|
|
setEchoSrv(new Echo({ debug: process.env.NODE_ENV === 'development' }));
|
|
|
|
|
|
|
|
ttiPolyfill.getFirstConsistentlyInteractive().then((tti: any) => {
|
|
|
|
// Collecting paint metrics first
|
2019-12-16 02:40:12 -06:00
|
|
|
const paintMetrics = performance && performance.getEntriesByType ? performance.getEntriesByType('paint') : [];
|
2019-12-05 01:30:39 -06:00
|
|
|
|
|
|
|
for (const metric of paintMetrics) {
|
|
|
|
reportPerformance(metric.name, Math.round(metric.startTime + metric.duration));
|
|
|
|
}
|
|
|
|
reportPerformance('tti', tti);
|
|
|
|
});
|
|
|
|
|
|
|
|
registerEchoBackend(new PerformanceBackend({}));
|
|
|
|
|
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
|
|
reportPerformance('dcl', Math.round(performance.now()));
|
|
|
|
});
|
|
|
|
}
|
2015-12-21 03:02:39 -06:00
|
|
|
}
|
2015-12-17 07:27:34 -06:00
|
|
|
|
2015-12-21 03:02:39 -06:00
|
|
|
export default new GrafanaApp();
|