mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 03:01:51 +08:00

* convert to use emotion object syntax * missed one * review comments * set back to 0 and disable lint rule
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import { css, cx } from '@emotion/css';
|
|
import { HTMLAttributes, useEffect } from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { reportExperimentView } from '@grafana/runtime';
|
|
import { useStyles2 } from '@grafana/ui';
|
|
|
|
export interface Props extends HTMLAttributes<HTMLSpanElement> {
|
|
text?: string;
|
|
experimentId?: string;
|
|
eventVariant?: string;
|
|
}
|
|
|
|
export const ProBadge = ({ text = 'PRO', className, experimentId, eventVariant = '', ...htmlProps }: Props) => {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
useEffect(() => {
|
|
if (experimentId) {
|
|
reportExperimentView(experimentId, 'test', eventVariant);
|
|
}
|
|
}, [experimentId, eventVariant]);
|
|
|
|
return (
|
|
<span className={cx(styles.badge, className)} {...htmlProps}>
|
|
{text}
|
|
</span>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => {
|
|
return {
|
|
badge: css({
|
|
marginLeft: theme.spacing(1.25),
|
|
borderRadius: theme.shape.borderRadius(5),
|
|
backgroundColor: theme.colors.success.main,
|
|
padding: theme.spacing(0.25, 0.75),
|
|
color: 'white', // use the same color for both themes
|
|
fontWeight: theme.typography.fontWeightMedium,
|
|
fontSize: theme.typography.pxToRem(10),
|
|
}),
|
|
};
|
|
};
|