Files
grafana/public/app/plugins/datasource/influxdb/registerRawInfluxQLEditor.ts
Gábor Farkas cbaf700d64 influxdb: switch the raw influxql editor from angular to react (#31860)
* 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
2021-03-16 10:47:33 +01:00

10 lines
299 B
TypeScript

import coreModule from 'app/core/core_module';
import { RawInfluxQLEditor } from './components/RawInfluxQLEditor';
coreModule.directive('rawInfluxEditor', [
'reactDirective',
(reactDirective: any) => {
return reactDirective(RawInfluxQLEditor, ['query', 'onChange', 'onRunQuery']);
},
]);