mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 02:52:27 +08:00
61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
|
|
import { SelectableValue } from '@grafana/data';
|
|
import { Select } from '@grafana/ui';
|
|
|
|
import { periodOption } from '../constants';
|
|
|
|
export interface Props {
|
|
inputId: string;
|
|
onChange: (period: string) => void;
|
|
templateVariableOptions: Array<SelectableValue<string>>;
|
|
aligmentPeriods: periodOption[];
|
|
selectWidth?: number;
|
|
category?: string;
|
|
disabled?: boolean;
|
|
current?: string;
|
|
}
|
|
|
|
export function PeriodSelect({
|
|
inputId,
|
|
templateVariableOptions,
|
|
onChange,
|
|
current,
|
|
selectWidth,
|
|
disabled,
|
|
aligmentPeriods,
|
|
}: Props) {
|
|
const options = useMemo(
|
|
() =>
|
|
aligmentPeriods.map((ap) => ({
|
|
...ap,
|
|
label: ap.text,
|
|
})),
|
|
[aligmentPeriods]
|
|
);
|
|
const visibleOptions = useMemo(() => options.filter((ap) => !ap.hidden), [options]);
|
|
|
|
return (
|
|
<Select
|
|
width={selectWidth}
|
|
onChange={({ value }) => onChange(value!)}
|
|
value={[...options, ...templateVariableOptions].find((s) => s.value === current)}
|
|
options={[
|
|
{
|
|
label: 'Template Variables',
|
|
options: templateVariableOptions,
|
|
},
|
|
{
|
|
label: 'Aggregations',
|
|
expanded: true,
|
|
options: visibleOptions,
|
|
},
|
|
]}
|
|
placeholder="Select Period"
|
|
inputId={inputId}
|
|
disabled={disabled}
|
|
allowCustomValue
|
|
></Select>
|
|
);
|
|
}
|