mirror of
https://github.com/grafana/grafana.git
synced 2025-09-21 09:32:28 +08:00

* Migrate annotation editor to react * Gio patch * Update types * Optional and conform to older design
112 lines
3.8 KiB
TypeScript
112 lines
3.8 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { getDefaultTimeRange, GrafanaTheme2, QueryEditorProps } from '@grafana/data';
|
|
import { Alert, InlineField, InlineLabel, Input, QueryField, useStyles2 } from '@grafana/ui';
|
|
|
|
import { ElasticDatasource } from '../../datasource';
|
|
import { useNextId } from '../../hooks/useNextId';
|
|
import { useDispatch } from '../../hooks/useStatelessReducer';
|
|
import { ElasticsearchOptions, ElasticsearchQuery } from '../../types';
|
|
import { isSupportedVersion } from '../../utils';
|
|
|
|
import { BucketAggregationsEditor } from './BucketAggregationsEditor';
|
|
import { ElasticsearchProvider } from './ElasticsearchQueryContext';
|
|
import { MetricAggregationsEditor } from './MetricAggregationsEditor';
|
|
import { metricAggregationConfig } from './MetricAggregationsEditor/utils';
|
|
import { changeAliasPattern, changeQuery } from './state';
|
|
|
|
export type ElasticQueryEditorProps = QueryEditorProps<ElasticDatasource, ElasticsearchQuery, ElasticsearchOptions>;
|
|
|
|
export const QueryEditor = ({ query, onChange, onRunQuery, datasource, range }: ElasticQueryEditorProps) => {
|
|
if (!isSupportedVersion(datasource.esVersion)) {
|
|
return (
|
|
<Alert
|
|
title={`Support for Elasticsearch versions after their end-of-life (currently versions < 7.10) was removed`}
|
|
></Alert>
|
|
);
|
|
}
|
|
return (
|
|
<ElasticsearchProvider
|
|
datasource={datasource}
|
|
onChange={onChange}
|
|
onRunQuery={onRunQuery}
|
|
query={query}
|
|
range={range || getDefaultTimeRange()}
|
|
>
|
|
<QueryEditorForm value={query} />
|
|
</ElasticsearchProvider>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
root: css`
|
|
display: flex;
|
|
`,
|
|
queryFieldWrapper: css`
|
|
flex-grow: 1;
|
|
margin: 0 ${theme.spacing(0.5)} ${theme.spacing(0.5)} 0;
|
|
`,
|
|
});
|
|
|
|
interface Props {
|
|
value: ElasticsearchQuery;
|
|
}
|
|
|
|
export const ElasticSearchQueryField = ({ value, onChange }: { value?: string; onChange: (v: string) => void }) => {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
return (
|
|
<div className={styles.queryFieldWrapper}>
|
|
<QueryField
|
|
query={value}
|
|
// By default QueryField calls onChange if onBlur is not defined, this will trigger a rerender
|
|
// And slate will claim the focus, making it impossible to leave the field.
|
|
onBlur={() => {}}
|
|
onChange={onChange}
|
|
placeholder="Lucene Query"
|
|
portalOrigin="elasticsearch"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const QueryEditorForm = ({ value }: Props) => {
|
|
const dispatch = useDispatch();
|
|
const nextId = useNextId();
|
|
const styles = useStyles2(getStyles);
|
|
|
|
// To be considered a time series query, the last bucked aggregation must be a Date Histogram
|
|
const isTimeSeriesQuery = value?.bucketAggs?.slice(-1)[0]?.type === 'date_histogram';
|
|
|
|
const showBucketAggregationsEditor = value.metrics?.every(
|
|
(metric) => !metricAggregationConfig[metric.type].isSingleMetric
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<div className={styles.root}>
|
|
<InlineLabel width={17}>Query</InlineLabel>
|
|
<ElasticSearchQueryField onChange={(query) => dispatch(changeQuery(query))} value={value?.query} />
|
|
|
|
<InlineField
|
|
label="Alias"
|
|
labelWidth={15}
|
|
disabled={!isTimeSeriesQuery}
|
|
tooltip="Aliasing only works for timeseries queries (when the last group is 'Date Histogram'). For all other query types this field is ignored."
|
|
>
|
|
<Input
|
|
id={`ES-query-${value.refId}_alias`}
|
|
placeholder="Alias Pattern"
|
|
onBlur={(e) => dispatch(changeAliasPattern(e.currentTarget.value))}
|
|
defaultValue={value.alias}
|
|
/>
|
|
</InlineField>
|
|
</div>
|
|
|
|
<MetricAggregationsEditor nextId={nextId} />
|
|
{showBucketAggregationsEditor && <BucketAggregationsEditor nextId={nextId} />}
|
|
</>
|
|
);
|
|
};
|