mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Fixes under public/app/plugins * Fixes under public/app/plugins/datasource * Fixes under public/app/features * Fixes under public/app/features * Fixes under public/app/features * Fixes under public/app/components * Fix PanelNotSupported test * Fix one more warning * Fix warning in usePanelSave * Fix traceview empty response * Azure monitor fixes * More fixes * Fix tests for azure monitor * Fixes after merging master * Add comment for disabled rules * Fixes after merging master * Fixes after merging master * Adress review comments * Fix azure tests * Address review feedbacks
82 lines
2.5 KiB
TypeScript
82 lines
2.5 KiB
TypeScript
import React, { memo, FC, useEffect } from 'react';
|
|
|
|
// Types
|
|
import { ExploreQueryFieldProps } from '@grafana/data';
|
|
|
|
import { PrometheusDatasource } from '../datasource';
|
|
import { PromQuery, PromOptions } from '../types';
|
|
|
|
import PromQueryField from './PromQueryField';
|
|
import { PromExploreExtraField } from './PromExploreExtraField';
|
|
|
|
export type Props = ExploreQueryFieldProps<PrometheusDatasource, PromQuery, PromOptions>;
|
|
|
|
export const PromExploreQueryEditor: FC<Props> = (props: Props) => {
|
|
const { range, query, data, datasource, history, onChange, onRunQuery } = props;
|
|
|
|
useEffect(() => {
|
|
if (query.exemplar === undefined) {
|
|
onChange({ ...query, exemplar: true });
|
|
}
|
|
}, [onChange, query]);
|
|
|
|
function onChangeQueryStep(value: string) {
|
|
const { query, onChange } = props;
|
|
const nextQuery = { ...query, interval: value };
|
|
onChange(nextQuery);
|
|
}
|
|
|
|
function onStepChange(e: React.SyntheticEvent<HTMLInputElement>) {
|
|
if (e.currentTarget.value !== query.interval) {
|
|
onChangeQueryStep(e.currentTarget.value);
|
|
}
|
|
}
|
|
|
|
function onReturnKeyDown(e: React.KeyboardEvent<HTMLInputElement>) {
|
|
if (e.key === 'Enter' && (e.shiftKey || e.ctrlKey)) {
|
|
onRunQuery();
|
|
}
|
|
}
|
|
|
|
function onQueryTypeChange(value: string) {
|
|
const { query, onChange } = props;
|
|
let nextQuery;
|
|
if (value === 'instant') {
|
|
nextQuery = { ...query, instant: true, range: false };
|
|
} else if (value === 'range') {
|
|
nextQuery = { ...query, instant: false, range: true };
|
|
} else {
|
|
nextQuery = { ...query, instant: true, range: true };
|
|
}
|
|
onChange(nextQuery);
|
|
}
|
|
|
|
return (
|
|
<PromQueryField
|
|
datasource={datasource}
|
|
query={query}
|
|
range={range}
|
|
onRunQuery={onRunQuery}
|
|
onChange={onChange}
|
|
onBlur={() => {}}
|
|
history={history}
|
|
data={data}
|
|
ExtraFieldElement={
|
|
<PromExploreExtraField
|
|
// Select "both" as default option when Explore is opened. In legacy requests, range and instant can be undefined. In this case, we want to run queries with "both".
|
|
queryType={query.range === query.instant ? 'both' : query.instant ? 'instant' : 'range'}
|
|
stepValue={query.interval || ''}
|
|
onQueryTypeChange={onQueryTypeChange}
|
|
onStepChange={onStepChange}
|
|
onKeyDownFunc={onReturnKeyDown}
|
|
query={query}
|
|
onChange={onChange}
|
|
datasource={datasource}
|
|
/>
|
|
}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default memo(PromExploreQueryEditor);
|