// Libraries import React, { PureComponent } from 'react'; import classNames from 'classnames'; import _ from 'lodash'; // Utils & Services import { getDatasourceSrv } from 'app/features/plugins/datasource_srv'; import { AngularComponent, getAngularLoader } from 'app/core/services/AngularLoader'; import { Emitter } from 'app/core/utils/emitter'; // Types import { PanelModel } from '../panel_model'; import { DataQuery, DataSourceApi } from '@grafana/ui'; interface Props { panel: PanelModel; query: DataQuery; onAddQuery: (query?: DataQuery) => void; onRemoveQuery: (query: DataQuery) => void; onMoveQuery: (query: DataQuery, direction: number) => void; datasourceName: string | null; inMixedMode: boolean; } interface State { datasource: DataSourceApi | null; isCollapsed: boolean; angularScope: AngularQueryComponentScope | null; } export class QueryEditorRow extends PureComponent { element: HTMLElement | null = null; angularQueryEditor: AngularComponent | null = null; state: State = { datasource: null, isCollapsed: false, angularScope: null, }; componentDidMount() { this.loadDatasource(); } getAngularQueryComponentScope(): AngularQueryComponentScope { const { panel, query } = this.props; const { datasource } = this.state; return { datasource: datasource, target: query, panel: panel, refresh: () => panel.refresh(), render: () => panel.render, events: panel.events, }; } async loadDatasource() { const { query, panel } = this.props; const dataSourceSrv = getDatasourceSrv(); const datasource = await dataSourceSrv.get(query.datasource || panel.datasource); this.setState({ datasource }); } componentDidUpdate() { const { datasource } = this.state; // check if we need to load another datasource if (datasource && datasource.name !== this.props.datasourceName) { if (this.angularQueryEditor) { this.angularQueryEditor.destroy(); this.angularQueryEditor = null; } this.loadDatasource(); return; } if (!this.element || this.angularQueryEditor) { return; } const loader = getAngularLoader(); const template = ''; const scopeProps = { ctrl: this.getAngularQueryComponentScope() }; this.angularQueryEditor = loader.load(this.element, scopeProps, template); // give angular time to compile setTimeout(() => { this.setState({ angularScope: scopeProps.ctrl }); }, 10); } componentWillUnmount() { if (this.angularQueryEditor) { this.angularQueryEditor.destroy(); } } onToggleCollapse = () => { this.setState({ isCollapsed: !this.state.isCollapsed }); }; renderPluginEditor() { const { datasource } = this.state; if (datasource.pluginExports.QueryCtrl) { return
(this.element = element)} />; } if (datasource.pluginExports.QueryEditor) { const QueryEditor = datasource.pluginExports.QueryEditor; return ; } return
Data source plugin does not export any Query Editor component
; } onToggleEditMode = () => { const { angularScope } = this.state; if (angularScope && angularScope.toggleEditorMode) { angularScope.toggleEditorMode(); this.angularQueryEditor.digest(); } if (this.state.isCollapsed) { this.setState({ isCollapsed: false }); } }; get hasTextEditMode() { const { angularScope } = this.state; return angularScope && angularScope.toggleEditorMode; } onRemoveQuery = () => { this.props.onRemoveQuery(this.props.query); }; onCopyQuery = () => { const copy = _.cloneDeep(this.props.query); this.props.onAddQuery(copy); }; onDisableQuery = () => { this.props.query.hide = !this.props.query.hide; this.forceUpdate(); }; renderCollapsedText(): string | null { const { angularScope } = this.state; if (angularScope && angularScope.getCollapsedText) { return angularScope.getCollapsedText(); } return null; } render() { const { query, datasourceName, inMixedMode } = this.props; const { datasource, isCollapsed } = this.state; const isDisabled = query.hide; const bodyClasses = classNames('query-editor-row__body gf-form-query', { 'query-editor-row__body--collapsed': isCollapsed, }); const rowClasses = classNames('query-editor-row', { 'query-editor-row--disabled': isDisabled, 'gf-form-disabled': isDisabled, }); if (!datasource) { return null; } return (
{isCollapsed && } {!isCollapsed && } {query.refId} {inMixedMode && ({datasourceName})} {isDisabled && Disabled}
{isCollapsed &&
{this.renderCollapsedText()}
}
{this.hasTextEditMode && ( )}
{this.renderPluginEditor()}
); } } export interface AngularQueryComponentScope { target: DataQuery; panel: PanelModel; events: Emitter; refresh: () => void; render: () => void; datasource: DataSourceApi; toggleEditorMode?: () => void; getCollapsedText?: () => string; }