The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/variables/query/QueryVariableEditor.tsx

163 lines
5.5 KiB

import React, { FormEvent, PureComponent } from 'react';
import { connect, ConnectedProps } from 'react-redux';
import { DataSourceInstanceSettings, getDataSourceRef, SelectableValue } from '@grafana/data';
import { QueryVariableEditorForm } from 'app/features/dashboard-scene/settings/variables/components/QueryVariableForm';
import { StoreState } from '../../../types';
import { getTimeSrv } from '../../dashboard/services/TimeSrv';
import { initialVariableEditorState } from '../editor/reducer';
import { getQueryVariableEditorState } from '../editor/selectors';
import { VariableEditorProps } from '../editor/types';
import { changeVariableMultiValue } from '../state/actions';
import { getVariablesState } from '../state/selectors';
import { QueryVariableModel, VariableRefresh, VariableSort } from '../types';
import { toKeyedVariableIdentifier } from '../utils';
import { changeQueryVariableDataSource, changeQueryVariableQuery, initQueryVariableEditor } from './actions';
const mapStateToProps = (state: StoreState, ownProps: OwnProps) => {
const { rootStateKey } = ownProps.variable;
if (!rootStateKey) {
console.error('QueryVariableEditor: variable has no rootStateKey');
return {
extended: getQueryVariableEditorState(initialVariableEditorState),
};
}
const { editor } = getVariablesState(rootStateKey, state);
return {
extended: getQueryVariableEditorState(editor),
};
};
const mapDispatchToProps = {
initQueryVariableEditor,
changeQueryVariableDataSource,
changeQueryVariableQuery,
changeVariableMultiValue,
};
const connector = connect(mapStateToProps, mapDispatchToProps);
export interface OwnProps extends VariableEditorProps<QueryVariableModel> {}
export type Props = OwnProps & ConnectedProps<typeof connector>;
export interface State {
regex: string | null;
tagsQuery: string | null;
tagValuesQuery: string | null;
}
export class QueryVariableEditorUnConnected extends PureComponent<Props, State> {
state: State = {
regex: null,
tagsQuery: null,
tagValuesQuery: null,
};
async componentDidMount() {
await this.props.initQueryVariableEditor(toKeyedVariableIdentifier(this.props.variable));
}
componentDidUpdate(prevProps: Readonly<Props>): void {
if (prevProps.variable.datasource !== this.props.variable.datasource) {
this.props.changeQueryVariableDataSource(
toKeyedVariableIdentifier(this.props.variable),
this.props.variable.datasource
);
}
}
onDataSourceChange = (dsSettings: DataSourceInstanceSettings) => {
this.props.onPropChange({
propName: 'datasource',
propValue: dsSettings.isDefault ? null : getDataSourceRef(dsSettings),
});
};
onLegacyQueryChange = async (query: any, definition: string) => {
if (this.props.variable.query !== query) {
this.props.changeQueryVariableQuery(toKeyedVariableIdentifier(this.props.variable), query, definition);
}
};
onQueryChange = async (query: any) => {
if (this.props.variable.query !== query) {
let definition = '';
if (query && query.hasOwnProperty('query') && typeof query.query === 'string') {
definition = query.query;
}
this.props.changeQueryVariableQuery(toKeyedVariableIdentifier(this.props.variable), query, definition);
}
};
onRegExBlur = async (event: FormEvent<HTMLTextAreaElement>) => {
const regex = event.currentTarget.value;
if (this.props.variable.regex !== regex) {
this.props.onPropChange({ propName: 'regex', propValue: regex, updateOptions: true });
}
};
onRefreshChange = (option: VariableRefresh) => {
this.props.onPropChange({ propName: 'refresh', propValue: option });
};
onSortChange = async (option: SelectableValue<VariableSort>) => {
this.props.onPropChange({ propName: 'sort', propValue: option.value, updateOptions: true });
};
onMultiChange = (event: FormEvent<HTMLInputElement>) => {
this.props.onPropChange({ propName: 'multi', propValue: event.currentTarget.checked });
};
onIncludeAllChange = (event: FormEvent<HTMLInputElement>) => {
this.props.onPropChange({ propName: 'includeAll', propValue: event.currentTarget.checked });
};
onAllValueChange = (event: FormEvent<HTMLInputElement>) => {
this.props.onPropChange({ propName: 'allValue', propValue: event.currentTarget.value });
};
render() {
const { extended, variable } = this.props;
if (!extended || !extended.dataSource || !extended.VariableQueryEditor) {
return null;
}
const datasource = extended.dataSource;
const VariableQueryEditor = extended.VariableQueryEditor;
const timeRange = getTimeSrv().timeRange();
return (
<QueryVariableEditorForm
datasource={datasource}
onDataSourceChange={this.onDataSourceChange}
query={variable.query}
onQueryChange={this.onQueryChange}
onLegacyQueryChange={this.onLegacyQueryChange}
VariableQueryEditor={VariableQueryEditor}
timeRange={timeRange}
regex={variable.regex}
onRegExChange={this.onRegExBlur}
sort={variable.sort}
onSortChange={this.onSortChange}
refresh={variable.refresh}
onRefreshChange={this.onRefreshChange}
isMulti={variable.multi}
includeAll={variable.includeAll}
allValue={variable.allValue ?? ''}
onMultiChange={this.onMultiChange}
onIncludeAllChange={this.onIncludeAllChange}
onAllValueChange={this.onAllValueChange}
/>
);
}
}
export const QueryVariableEditor = connector(QueryVariableEditorUnConnected);