mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import { css, CSSObject } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { Tooltip, useStyles2 } from '@grafana/ui';
|
|
|
|
import { OptionPaneItemOverrideInfo } from './types';
|
|
|
|
export interface Props {
|
|
overrides: OptionPaneItemOverrideInfo[];
|
|
}
|
|
|
|
export function OptionsPaneItemOverrides({ overrides }: Props) {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
return (
|
|
<div className={styles.wrapper}>
|
|
{overrides.map((override, index) => (
|
|
<Tooltip content={override.tooltip} key={index.toString()} placement="top">
|
|
<div aria-label={override.description} className={styles[override.type]} />
|
|
</Tooltip>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => {
|
|
const common: CSSObject = {
|
|
width: 8,
|
|
height: 8,
|
|
borderRadius: theme.shape.radius.circle,
|
|
marginLeft: theme.spacing(1),
|
|
position: 'relative',
|
|
top: '-1px',
|
|
};
|
|
|
|
return {
|
|
wrapper: css({
|
|
display: 'flex',
|
|
}),
|
|
rule: css({
|
|
...common,
|
|
backgroundColor: theme.colors.primary.main,
|
|
}),
|
|
data: css({
|
|
...common,
|
|
backgroundColor: theme.colors.warning.main,
|
|
}),
|
|
};
|
|
};
|