import React, { useCallback, useMemo } from 'react'; import { SelectableValue } from '@grafana/data'; import { sceneGraph } from '@grafana/scenes'; import { Select } from '@grafana/ui'; import { VizPanelManager } from 'app/features/dashboard-scene/panel-edit/VizPanelManager'; import { useSelector } from 'app/types'; import { getLastKey, getVariablesByKey } from '../../../variables/state/selectors'; export interface Props { id?: string; repeat?: string; onChange: (name?: string) => void; } export const RepeatRowSelect = ({ repeat, onChange, id }: Props) => { const variables = useSelector((state) => { return getVariablesByKey(getLastKey(state), state); }); const variableOptions = useMemo(() => { const options: Array> = variables.map((item) => { 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 ; };