D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
variables
/
editor
/
Filename :
VariableHideSelect.tsx
back
Copy
import React, { PropsWithChildren, useMemo } from 'react'; import { VariableType, VariableHide } from '@grafana/data'; import { Field, RadioButtonGroup } from '@grafana/ui'; interface Props { onChange: (option: VariableHide) => void; hide: VariableHide; type: VariableType; } const HIDE_OPTIONS = [ { label: 'Label and value', value: VariableHide.dontHide }, { label: 'Value', value: VariableHide.hideLabel }, { label: 'Nothing', value: VariableHide.hideVariable }, ]; export function VariableHideSelect({ onChange, hide, type }: PropsWithChildren<Props>) { const value = useMemo(() => HIDE_OPTIONS.find((o) => o.value === hide)?.value ?? HIDE_OPTIONS[0].value, [hide]); if (type === 'constant') { return null; } return ( <Field label="Show on dashboard"> <RadioButtonGroup options={HIDE_OPTIONS} onChange={onChange} value={value} /> </Field> ); }