mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 04:09:50 +08:00
74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
import { SelectableValue } from '@grafana/data';
|
|
import { Select } from '@grafana/ui';
|
|
import React, { FC, useMemo } from 'react';
|
|
|
|
import { QueryEditorField } from '.';
|
|
import { getAggregationOptionsByMetric } from '../functions';
|
|
import { MetricDescriptor, MetricKind, ValueTypes } from '../types';
|
|
|
|
export interface Props {
|
|
refId: string;
|
|
onChange: (metricDescriptor: string) => void;
|
|
metricDescriptor?: MetricDescriptor;
|
|
crossSeriesReducer: string;
|
|
groupBys: string[];
|
|
templateVariableOptions: Array<SelectableValue<string>>;
|
|
}
|
|
|
|
export const Aggregation: FC<Props> = (props) => {
|
|
const aggOptions = useAggregationOptionsByMetric(props);
|
|
const selected = useSelectedFromOptions(aggOptions, props);
|
|
|
|
return (
|
|
<QueryEditorField
|
|
labelWidth={18}
|
|
label="Group by function"
|
|
data-testid="cloud-monitoring-aggregation"
|
|
htmlFor={`${props.refId}-group-by-function`}
|
|
>
|
|
<Select
|
|
menuShouldPortal
|
|
width={16}
|
|
onChange={({ value }) => props.onChange(value!)}
|
|
value={selected}
|
|
options={[
|
|
{
|
|
label: 'Template Variables',
|
|
options: props.templateVariableOptions,
|
|
},
|
|
{
|
|
label: 'Aggregations',
|
|
expanded: true,
|
|
options: aggOptions,
|
|
},
|
|
]}
|
|
placeholder="Select Reducer"
|
|
inputId={`${props.refId}-group-by-function`}
|
|
/>
|
|
</QueryEditorField>
|
|
);
|
|
};
|
|
|
|
const useAggregationOptionsByMetric = ({ metricDescriptor }: Props): Array<SelectableValue<string>> => {
|
|
const valueType = metricDescriptor?.valueType;
|
|
const metricKind = metricDescriptor?.metricKind;
|
|
|
|
return useMemo(() => {
|
|
if (!valueType || !metricKind) {
|
|
return [];
|
|
}
|
|
|
|
return getAggregationOptionsByMetric(valueType as ValueTypes, metricKind as MetricKind).map((a) => ({
|
|
...a,
|
|
label: a.text,
|
|
}));
|
|
}, [valueType, metricKind]);
|
|
};
|
|
|
|
const useSelectedFromOptions = (aggOptions: Array<SelectableValue<string>>, props: Props) => {
|
|
return useMemo(() => {
|
|
const allOptions = [...aggOptions, ...props.templateVariableOptions];
|
|
return allOptions.find((s) => s.value === props.crossSeriesReducer);
|
|
}, [aggOptions, props.crossSeriesReducer, props.templateVariableOptions]);
|
|
};
|