mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* fix some e2e flows types * some type fixes * must... fix... more... * MOAR * MOREMOREMORE * 1 more
71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
|
|
import { SelectableValue } from '@grafana/data';
|
|
import { EditorField } from '@grafana/experimental';
|
|
import { Select } from '@grafana/ui';
|
|
|
|
import { getAggregationOptionsByMetric } from '../functions';
|
|
import { ValueTypes } from '../types/query';
|
|
import { MetricDescriptor } from '../types/types';
|
|
|
|
export interface Props {
|
|
refId: string;
|
|
onChange: (metricDescriptor: string) => void;
|
|
metricDescriptor?: MetricDescriptor;
|
|
crossSeriesReducer: string;
|
|
groupBys: string[];
|
|
templateVariableOptions: Array<SelectableValue<string>>;
|
|
}
|
|
|
|
export const Aggregation = (props: Props) => {
|
|
const aggOptions = useAggregationOptionsByMetric(props);
|
|
const selected = useSelectedFromOptions(aggOptions, props);
|
|
|
|
return (
|
|
<EditorField label="Group by function" data-testid="cloud-monitoring-aggregation">
|
|
<Select
|
|
width="auto"
|
|
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`}
|
|
menuPlacement="top"
|
|
/>
|
|
</EditorField>
|
|
);
|
|
};
|
|
|
|
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).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]);
|
|
};
|