mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
* updated * Experimenting with event bus with legacy support * Before switch to emitter * EventBus & Emitter unification * Everything using new EventBus * Making progress * Fixing merge issues * Final merge issues * Updated * Updates * Fix * Updated * Update * Update * Rename methods to publish and subscribe * Ts fixes * Updated * updated * fixing doc warnigns * removed unused file
94 lines
2.6 KiB
TypeScript
94 lines
2.6 KiB
TypeScript
// Libraries
|
|
import React, { PureComponent } from 'react';
|
|
|
|
// Services
|
|
import { getAngularLoader, AngularComponent } from '@grafana/runtime';
|
|
|
|
// Types
|
|
import { DataQuery, TimeRange, EventBusExtended } from '@grafana/data';
|
|
import 'app/features/plugins/plugin_loader';
|
|
|
|
interface QueryEditorProps {
|
|
error?: any;
|
|
datasource: any;
|
|
onExecuteQuery?: () => void;
|
|
onQueryChange?: (value: DataQuery) => void;
|
|
initialQuery: DataQuery;
|
|
exploreEvents: EventBusExtended;
|
|
range: TimeRange;
|
|
textEditModeEnabled?: boolean;
|
|
}
|
|
|
|
export default class QueryEditor extends PureComponent<QueryEditorProps, any> {
|
|
element: any;
|
|
component: AngularComponent;
|
|
angularScope: any;
|
|
|
|
async componentDidMount() {
|
|
if (!this.element) {
|
|
return;
|
|
}
|
|
|
|
const { datasource, initialQuery, exploreEvents } = this.props;
|
|
|
|
const loader = getAngularLoader();
|
|
const template = '<plugin-component type="query-ctrl"> </plugin-component>';
|
|
const target = { datasource: datasource.name, ...initialQuery };
|
|
const scopeProps = {
|
|
ctrl: {
|
|
datasource,
|
|
target,
|
|
refresh: () => {
|
|
setTimeout(() => {
|
|
this.props.onQueryChange?.(target);
|
|
this.props.onExecuteQuery?.();
|
|
}, 1);
|
|
},
|
|
onQueryChange: () => {
|
|
setTimeout(() => {
|
|
this.props.onQueryChange?.(target);
|
|
}, 1);
|
|
},
|
|
events: exploreEvents,
|
|
panel: { datasource, targets: [target] },
|
|
dashboard: {},
|
|
},
|
|
};
|
|
|
|
this.component = loader.load(this.element, scopeProps, template);
|
|
this.angularScope = scopeProps.ctrl;
|
|
|
|
setTimeout(() => {
|
|
this.props.onQueryChange?.(target);
|
|
this.props.onExecuteQuery?.();
|
|
}, 1);
|
|
}
|
|
|
|
componentDidUpdate(prevProps: QueryEditorProps) {
|
|
const hasToggledEditorMode = prevProps.textEditModeEnabled !== this.props.textEditModeEnabled;
|
|
const hasNewError = prevProps.error !== this.props.error;
|
|
|
|
if (this.component) {
|
|
if (hasToggledEditorMode && this.angularScope && this.angularScope.toggleEditorMode) {
|
|
this.angularScope.toggleEditorMode();
|
|
}
|
|
|
|
if (hasNewError || hasToggledEditorMode) {
|
|
// Some query controllers listen to data error events and need a digest
|
|
// for some reason this needs to be done in next tick
|
|
setTimeout(this.component.digest);
|
|
}
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.component) {
|
|
this.component.destroy();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return <div className="gf-form-query" ref={element => (this.element = element)} style={{ width: '100%' }} />;
|
|
}
|
|
}
|