mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
8aa3845f70
* Select: Don't portal by default * Select: Portal all the Selects * Fix indendentation in this comment * Select: Remove @example docs until formatting is correct * Docs: Add some documentation for the Select changes * Update docs/sources/whatsnew/whats-new-in-v8-1.md Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update docs/sources/whatsnew/whats-new-in-v8-1.md Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update packages/grafana-ui/src/components/Select/types.ts Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/prepareTimeSeries/PrepareTimeSeriesEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Docs: Variants instead of varients * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com>
67 lines
2.1 KiB
TypeScript
67 lines
2.1 KiB
TypeScript
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
|
|
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"
|
|
/>
|
|
</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]);
|
|
};
|