2021-05-19 01:16:05 -05:00
|
|
|
import React, { FC, useMemo } from 'react';
|
|
|
|
|
|
|
|
import { SelectableValue } from '@grafana/data';
|
|
|
|
import { Select } from '@grafana/ui';
|
|
|
|
import { QueryEditorField } from '.';
|
|
|
|
import { getAggregationOptionsByMetric } from '../functions';
|
|
|
|
import { MetricDescriptor, ValueTypes, MetricKind } from '../types';
|
|
|
|
|
|
|
|
export interface Props {
|
|
|
|
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">
|
|
|
|
<Select
|
2021-08-04 09:47:53 -05:00
|
|
|
menuShouldPortal
|
2021-05-19 01:16:05 -05:00
|
|
|
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"
|
|
|
|
/>
|
|
|
|
</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]);
|
|
|
|
};
|