mirror of https://github.com/grafana/grafana.git
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { StandardEditorProps, GrafanaTheme2, UnitFieldConfigSettings } from '@grafana/data';
|
|
import { IconButton, UnitPicker, useStyles2 } from '@grafana/ui';
|
|
|
|
type Props = StandardEditorProps<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',
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
}),
|
|
first: css({
|
|
marginRight: theme.spacing(1),
|
|
flexGrow: 2,
|
|
}),
|
|
});
|