mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* influxdb: switch the raw influxql editor from angular to react * influxdb: raw-influxql: better callback-naming * influxdb: raw-influxql: use custom hook * influxdb: flux: raw-editor: add unit tests
24 lines
886 B
TypeScript
24 lines
886 B
TypeScript
import InfluxDatasource from './datasource';
|
|
import { InfluxQueryCtrl } from './query_ctrl';
|
|
import InfluxStartPage from './components/InfluxStartPage';
|
|
import { DataSourcePlugin } from '@grafana/data';
|
|
import ConfigEditor from './components/ConfigEditor';
|
|
import VariableQueryEditor from './components/VariableQueryEditor';
|
|
|
|
// This adds a directive that is used in the query editor
|
|
import './components/FluxQueryEditor';
|
|
|
|
// This adds a directive that is used in the query editor
|
|
import './registerRawInfluxQLEditor';
|
|
|
|
class InfluxAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export const plugin = new DataSourcePlugin(InfluxDatasource)
|
|
.setConfigEditor(ConfigEditor)
|
|
.setQueryCtrl(InfluxQueryCtrl)
|
|
.setAnnotationQueryCtrl(InfluxAnnotationsQueryCtrl)
|
|
.setVariableQueryEditor(VariableQueryEditor)
|
|
.setQueryEditorHelp(InfluxStartPage);
|