import React, { FC, useCallback, useMemo } from 'react'; import { useSelector } from 'react-redux'; import { SelectableValue } from '@grafana/data'; import { Select } from '@grafana/ui'; import { StoreState } from '../../../../types'; import { getLastKey, getVariablesByKey } from '../../../variables/state/selectors'; export interface Props { id?: string; repeat?: string | null; onChange: (name: string | null) => void; } export const RepeatRowSelect: FC = ({ repeat, onChange, id }) => { const variables = useSelector((state: StoreState) => { return getVariablesByKey(getLastKey(state), state); }); const variableOptions = useMemo(() => { const options = variables.map((item: any) => { return { label: item.name, value: item.name }; }); if (options.length === 0) { options.unshift({ label: 'No template variables found', value: null, }); } options.unshift({ label: 'Disable repeating', value: null, }); return options; }, [variables]); const onSelectChange = useCallback((option: SelectableValue) => onChange(option.value!), [onChange]); return