|
| 1 | +import { css } from '@emotion/css'; |
| 2 | +import React, { ComponentProps } from 'react'; |
| 3 | + |
| 4 | +import { GrafanaTheme2 } from '@grafana/data'; |
| 5 | +import { Space } from './Space'; |
| 6 | +import { Field, Icon, PopoverContent, ReactUtils, stylesFactory, Tooltip, useTheme2 } from '@grafana/ui'; |
| 7 | + |
| 8 | +interface EditorFieldProps extends ComponentProps<typeof Field> { |
| 9 | + label: string; |
| 10 | + children: React.ReactElement; |
| 11 | + width?: number | string; |
| 12 | + optional?: boolean; |
| 13 | + tooltip?: PopoverContent; |
| 14 | +} |
| 15 | + |
| 16 | +export const EditorField: React.FC<EditorFieldProps> = (props) => { |
| 17 | + const { label, optional, tooltip, children, width, ...fieldProps } = props; |
| 18 | + |
| 19 | + const theme = useTheme2(); |
| 20 | + const styles = getStyles(theme, width); |
| 21 | + |
| 22 | + // Null check for backward compatibility |
| 23 | + const childInputId = fieldProps?.htmlFor || ReactUtils?.getChildId(children); |
| 24 | + |
| 25 | + const labelEl = ( |
| 26 | + <> |
| 27 | + <label className={styles.label} htmlFor={childInputId}> |
| 28 | + {label} |
| 29 | + {optional && <span className={styles.optional}> - optional</span>} |
| 30 | + {tooltip && ( |
| 31 | + <Tooltip placement="top" content={tooltip} theme="info"> |
| 32 | + <Icon name="info-circle" size="sm" className={styles.icon} /> |
| 33 | + </Tooltip> |
| 34 | + )} |
| 35 | + </label> |
| 36 | + <Space v={0.5} /> |
| 37 | + </> |
| 38 | + ); |
| 39 | + |
| 40 | + return ( |
| 41 | + <div className={styles.root}> |
| 42 | + <Field className={styles.field} label={labelEl} {...fieldProps}> |
| 43 | + {children} |
| 44 | + </Field> |
| 45 | + </div> |
| 46 | + ); |
| 47 | +}; |
| 48 | + |
| 49 | +const getStyles = stylesFactory((theme: GrafanaTheme2, width?: number | string) => { |
| 50 | + return { |
| 51 | + root: css({ |
| 52 | + minWidth: theme.spacing(width ?? 0), |
| 53 | + }), |
| 54 | + label: css({ |
| 55 | + fontSize: 12, |
| 56 | + fontWeight: theme.typography.fontWeightMedium, |
| 57 | + }), |
| 58 | + optional: css({ |
| 59 | + fontStyle: 'italic', |
| 60 | + color: theme.colors.text.secondary, |
| 61 | + }), |
| 62 | + field: css({ |
| 63 | + marginBottom: 0, // GrafanaUI/Field has a bottom margin which we must remove |
| 64 | + }), |
| 65 | + icon: css({ |
| 66 | + color: theme.colors.text.secondary, |
| 67 | + marginLeft: theme.spacing(1), |
| 68 | + ':hover': { |
| 69 | + color: theme.colors.text.primary, |
| 70 | + }, |
| 71 | + }), |
| 72 | + }; |
| 73 | +}); |
0 commit comments