| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- // Libraries
- import React, { PureComponent } from 'react';
- import _ from 'lodash';
- // Components
- import { EditorTabBody, EditorToolbarView } from './EditorTabBody';
- import { DataSourcePicker } from 'app/core/components/Select/DataSourcePicker';
- import { QueryInspector } from './QueryInspector';
- import { QueryOptions } from './QueryOptions';
- import { PanelOptionsGroup } from '@grafana/ui';
- import { QueryEditorRow } from './QueryEditorRow';
- // Services
- import { getDatasourceSrv } from 'app/features/plugins/datasource_srv';
- import { getBackendSrv } from 'app/core/services/backend_srv';
- import config from 'app/core/config';
- // Types
- import { PanelModel } from '../state/PanelModel';
- import { DashboardModel } from '../state/DashboardModel';
- import { DataQuery, DataSourceSelectItem, PanelData } from '@grafana/ui';
- import { LoadingState } from '@grafana/data';
- import { PluginHelp } from 'app/core/components/PluginHelp/PluginHelp';
- import { PanelQueryRunnerFormat } from '../state/PanelQueryRunner';
- import { Unsubscribable } from 'rxjs';
- import { isSharedDashboardQuery } from 'app/plugins/datasource/dashboard/SharedQueryRunner';
- import { DashboardQueryEditor } from 'app/plugins/datasource/dashboard/DashboardQueryEditor';
- interface Props {
- panel: PanelModel;
- dashboard: DashboardModel;
- }
- interface State {
- currentDS: DataSourceSelectItem;
- helpContent: JSX.Element;
- isLoadingHelp: boolean;
- isPickerOpen: boolean;
- isAddingMixed: boolean;
- scrollTop: number;
- data: PanelData;
- }
- export class QueriesTab extends PureComponent<Props, State> {
- datasources: DataSourceSelectItem[] = getDatasourceSrv().getMetricSources();
- backendSrv = getBackendSrv();
- querySubscription: Unsubscribable;
- state: State = {
- isLoadingHelp: false,
- currentDS: this.findCurrentDataSource(),
- helpContent: null,
- isPickerOpen: false,
- isAddingMixed: false,
- scrollTop: 0,
- data: {
- state: LoadingState.NotStarted,
- series: [],
- },
- };
- componentDidMount() {
- const { panel } = this.props;
- const queryRunner = panel.getQueryRunner();
- this.querySubscription = queryRunner.subscribe(this.panelDataObserver, PanelQueryRunnerFormat.both);
- }
- componentWillUnmount() {
- if (this.querySubscription) {
- this.querySubscription.unsubscribe();
- this.querySubscription = null;
- }
- }
- // Updates the response with information from the stream
- panelDataObserver = {
- next: (data: PanelData) => {
- try {
- const { panel } = this.props;
- if (data.state === LoadingState.Error) {
- panel.events.emit('data-error', data.error);
- } else if (data.state === LoadingState.Done) {
- panel.events.emit('data-received', data.legacy);
- }
- } catch (err) {
- console.log('Panel.events handler error', err);
- }
- this.setState({ data });
- },
- };
- findCurrentDataSource(): DataSourceSelectItem {
- const { panel } = this.props;
- return this.datasources.find(datasource => datasource.value === panel.datasource) || this.datasources[0];
- }
- onChangeDataSource = (datasource: any) => {
- const { panel } = this.props;
- const { currentDS } = this.state;
- // switching to mixed
- if (datasource.meta.mixed) {
- panel.targets.forEach(target => {
- target.datasource = panel.datasource;
- if (!target.datasource) {
- target.datasource = config.defaultDatasource;
- }
- });
- } else if (currentDS) {
- // if switching from mixed
- if (currentDS.meta.mixed) {
- for (const target of panel.targets) {
- delete target.datasource;
- }
- } else if (currentDS.meta.id !== datasource.meta.id) {
- // we are changing data source type, clear queries
- panel.targets = [{ refId: 'A' }];
- }
- }
- panel.datasource = datasource.value;
- panel.refresh();
- this.setState({
- currentDS: datasource,
- });
- };
- renderQueryInspector = () => {
- const { panel } = this.props;
- return <QueryInspector panel={panel} />;
- };
- renderHelp = () => {
- return <PluginHelp plugin={this.state.currentDS.meta} type="query_help" />;
- };
- onAddQuery = (query?: Partial<DataQuery>) => {
- this.props.panel.addQuery(query);
- this.setState({ scrollTop: this.state.scrollTop + 100000 });
- };
- onAddQueryClick = () => {
- if (this.state.currentDS.meta.mixed) {
- this.setState({ isAddingMixed: true });
- return;
- }
- this.onAddQuery();
- };
- onRemoveQuery = (query: DataQuery) => {
- const { panel } = this.props;
- const index = _.indexOf(panel.targets, query);
- panel.targets.splice(index, 1);
- panel.refresh();
- this.forceUpdate();
- };
- onMoveQuery = (query: DataQuery, direction: number) => {
- const { panel } = this.props;
- const index = _.indexOf(panel.targets, query);
- // @ts-ignore
- _.move(panel.targets, index, index + direction);
- this.forceUpdate();
- };
- renderToolbar = () => {
- const { currentDS, isAddingMixed } = this.state;
- const showAddButton = !(isAddingMixed || isSharedDashboardQuery(currentDS.name));
- return (
- <>
- <DataSourcePicker datasources={this.datasources} onChange={this.onChangeDataSource} current={currentDS} />
- <div className="flex-grow-1" />
- {showAddButton && (
- <button className="btn navbar-button" onClick={this.onAddQueryClick}>
- Add Query
- </button>
- )}
- {isAddingMixed && this.renderMixedPicker()}
- </>
- );
- };
- renderMixedPicker = () => {
- return (
- <DataSourcePicker
- datasources={this.datasources}
- onChange={this.onAddMixedQuery}
- current={null}
- autoFocus={true}
- onBlur={this.onMixedPickerBlur}
- openMenuOnFocus={true}
- />
- );
- };
- onAddMixedQuery = (datasource: any) => {
- this.onAddQuery({ datasource: datasource.name });
- this.setState({ isAddingMixed: false, scrollTop: this.state.scrollTop + 10000 });
- };
- onMixedPickerBlur = () => {
- this.setState({ isAddingMixed: false });
- };
- onQueryChange = (query: DataQuery, index: number) => {
- this.props.panel.changeQuery(query, index);
- this.forceUpdate();
- };
- setScrollTop = (event: React.MouseEvent<HTMLElement>) => {
- const target = event.target as HTMLElement;
- this.setState({ scrollTop: target.scrollTop });
- };
- render() {
- const { panel, dashboard } = this.props;
- const { currentDS, scrollTop, data } = this.state;
- const queryInspector: EditorToolbarView = {
- title: 'Query Inspector',
- render: this.renderQueryInspector,
- };
- const dsHelp: EditorToolbarView = {
- heading: 'Help',
- icon: 'fa fa-question',
- render: this.renderHelp,
- };
- return (
- <EditorTabBody
- heading="Query"
- renderToolbar={this.renderToolbar}
- toolbarItems={[queryInspector, dsHelp]}
- setScrollTop={this.setScrollTop}
- scrollTop={scrollTop}
- >
- {isSharedDashboardQuery(currentDS.name) ? (
- <DashboardQueryEditor panel={panel} panelData={data} onChange={query => this.onQueryChange(query, 0)} />
- ) : (
- <>
- <div className="query-editor-rows">
- {panel.targets.map((query, index) => (
- <QueryEditorRow
- dataSourceValue={query.datasource || panel.datasource}
- key={query.refId}
- panel={panel}
- dashboard={dashboard}
- data={data}
- query={query}
- onChange={query => this.onQueryChange(query, index)}
- onRemoveQuery={this.onRemoveQuery}
- onAddQuery={this.onAddQuery}
- onMoveQuery={this.onMoveQuery}
- inMixedMode={currentDS.meta.mixed}
- />
- ))}
- </div>
- <PanelOptionsGroup>
- <QueryOptions panel={panel} datasource={currentDS} />
- </PanelOptionsGroup>
- </>
- )}
- </EditorTabBody>
- );
- }
- }
|