D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
core
/
components
/
OptionsUI
/
Filename :
units.tsx
back
Copy
import { css } from '@emotion/css'; import React from 'react'; import { FieldConfigEditorProps, GrafanaTheme2, UnitFieldConfigSettings } from '@grafana/data'; import { IconButton, UnitPicker, useStyles2 } from '@grafana/ui'; type Props = FieldConfigEditorProps<string, UnitFieldConfigSettings>; export function UnitValueEditor({ value, onChange, item }: Props) { const styles = useStyles2(getStyles); if (item?.settings?.isClearable && value != null) { return ( <div className={styles.wrapper}> <span className={styles.first}> <UnitPicker value={value} onChange={onChange} /> </span> <IconButton name="times" onClick={() => onChange(undefined)} tooltip="Clear unit selection" /> </div> ); } return <UnitPicker value={value} onChange={onChange} />; } const getStyles = (theme: GrafanaTheme2) => ({ wrapper: css` width: 100%; display: flex; flex-direction: rows; align-items: center; `, first: css` margin-right: 8px; flex-grow: 2; `, });