| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- // Libraries
- import React, { PureComponent } from 'react';
- import _ from 'lodash';
- import { hot } from 'react-hot-loader';
- import { connect } from 'react-redux';
- // Components
- import QueryEditor from './QueryEditor';
- import QueryTransactionStatus from './QueryTransactionStatus';
- // Actions
- import { changeQuery, modifyQueries, runQueries, addQueryRow } from './state/actions';
- // Types
- import { StoreState } from 'app/types';
- import { RawTimeRange, DataQuery, ExploreDataSourceApi, QueryHint, QueryFixAction } from '@grafana/ui';
- import { QueryTransaction, HistoryItem, ExploreItemState, ExploreId } from 'app/types/explore';
- import { Emitter } from 'app/core/utils/emitter';
- import { highlightLogsExpressionAction, removeQueryRowAction } from './state/actionTypes';
- function getFirstHintFromTransactions(transactions: QueryTransaction[]): QueryHint {
- const transaction = transactions.find(qt => qt.hints && qt.hints.length > 0);
- if (transaction) {
- return transaction.hints[0];
- }
- return undefined;
- }
- interface QueryRowProps {
- addQueryRow: typeof addQueryRow;
- changeQuery: typeof changeQuery;
- className?: string;
- exploreId: ExploreId;
- datasourceInstance: ExploreDataSourceApi;
- highlightLogsExpressionAction: typeof highlightLogsExpressionAction;
- history: HistoryItem[];
- index: number;
- query: DataQuery;
- modifyQueries: typeof modifyQueries;
- queryTransactions: QueryTransaction[];
- exploreEvents: Emitter;
- range: RawTimeRange;
- removeQueryRowAction: typeof removeQueryRowAction;
- runQueries: typeof runQueries;
- }
- export class QueryRow extends PureComponent<QueryRowProps> {
- onExecuteQuery = () => {
- const { exploreId } = this.props;
- this.props.runQueries(exploreId);
- };
- onChangeQuery = (query: DataQuery, override?: boolean) => {
- const { datasourceInstance, exploreId, index } = this.props;
- this.props.changeQuery(exploreId, query, index, override);
- if (query && !override && datasourceInstance.getHighlighterExpression && index === 0) {
- // Live preview of log search matches. Only use on first row for now
- this.updateLogsHighlights(query);
- }
- };
- componentWillUnmount() {
- console.log('QueryRow will unmount');
- }
- onClickAddButton = () => {
- const { exploreId, index } = this.props;
- this.props.addQueryRow(exploreId, index);
- };
- onClickClearButton = () => {
- this.onChangeQuery(null, true);
- };
- onClickHintFix = (action: QueryFixAction) => {
- const { datasourceInstance, exploreId, index } = this.props;
- if (datasourceInstance && datasourceInstance.modifyQuery) {
- const modifier = (queries: DataQuery, action: QueryFixAction) => datasourceInstance.modifyQuery(queries, action);
- this.props.modifyQueries(exploreId, action, index, modifier);
- }
- };
- onClickRemoveButton = () => {
- const { exploreId, index } = this.props;
- this.props.removeQueryRowAction({ exploreId, index });
- };
- updateLogsHighlights = _.debounce((value: DataQuery) => {
- const { datasourceInstance } = this.props;
- if (datasourceInstance.getHighlighterExpression) {
- const { exploreId } = this.props;
- const expressions = [datasourceInstance.getHighlighterExpression(value)];
- this.props.highlightLogsExpressionAction({ exploreId, expressions });
- }
- }, 500);
- render() {
- const { datasourceInstance, history, index, query, queryTransactions, exploreEvents, range } = this.props;
- const transactions = queryTransactions.filter(t => t.rowIndex === index);
- const transactionWithError = transactions.find(t => t.error !== undefined);
- const hint = getFirstHintFromTransactions(transactions);
- const queryError = transactionWithError ? transactionWithError.error : null;
- const QueryField = datasourceInstance.pluginExports.ExploreQueryField;
- return (
- <div className="query-row">
- <div className="query-row-status">
- <QueryTransactionStatus transactions={transactions} />
- </div>
- <div className="query-row-field flex-shrink-1">
- {QueryField ? (
- <QueryField
- datasource={datasourceInstance}
- query={query}
- error={queryError}
- hint={hint}
- history={history}
- onExecuteQuery={this.onExecuteQuery}
- onExecuteHint={this.onClickHintFix}
- onQueryChange={this.onChangeQuery}
- />
- ) : (
- <QueryEditor
- datasource={datasourceInstance}
- error={queryError}
- onQueryChange={this.onChangeQuery}
- onExecuteQuery={this.onExecuteQuery}
- initialQuery={query}
- exploreEvents={exploreEvents}
- range={range}
- />
- )}
- </div>
- <div className="gf-form-inline flex-shrink-0">
- <div className="gf-form">
- <button className="gf-form-label gf-form-label--btn" onClick={this.onClickClearButton}>
- <i className="fa fa-times" />
- </button>
- </div>
- <div className="gf-form">
- <button className="gf-form-label gf-form-label--btn" onClick={this.onClickAddButton}>
- <i className="fa fa-plus" />
- </button>
- </div>
- <div className="gf-form">
- <button className="gf-form-label gf-form-label--btn" onClick={this.onClickRemoveButton}>
- <i className="fa fa-minus" />
- </button>
- </div>
- </div>
- </div>
- );
- }
- }
- function mapStateToProps(state: StoreState, { exploreId, index }) {
- const explore = state.explore;
- const item: ExploreItemState = explore[exploreId];
- const { datasourceInstance, history, queries, queryTransactions, range } = item;
- const query = queries[index];
- return { datasourceInstance, history, query, queryTransactions, range };
- }
- const mapDispatchToProps = {
- addQueryRow,
- changeQuery,
- highlightLogsExpressionAction,
- modifyQueries,
- removeQueryRowAction,
- runQueries,
- };
- export default hot(module)(
- connect(
- mapStateToProps,
- mapDispatchToProps
- )(QueryRow)
- );
|