mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* Apply new upgrade styles * Add caption/update pro badge color * Update team sync upgrade page * Add UpgradeContentVertical * Update public/app/core/components/Upgrade/UpgradeBox.tsx Co-authored-by: Agnès Toulet <35176601+AgnesToulet@users.noreply.github.com> * Update screenshots * Update screenshots[2] * Scroll screenshot if doesnt fit * Add missing target prop Co-authored-by: Agnès Toulet <35176601+AgnesToulet@users.noreply.github.com>
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import React, { HTMLAttributes, useEffect } from 'react';
|
|
import { css, cx } from '@emotion/css';
|
|
import { useStyles2 } from '@grafana/ui';
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { reportExperimentView } from '@grafana/runtime';
|
|
|
|
export interface Props extends HTMLAttributes<HTMLSpanElement> {
|
|
text?: string;
|
|
experimentId?: string;
|
|
}
|
|
|
|
export const ProBadge = ({ text = 'PRO', className, experimentId, ...htmlProps }: Props) => {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
useEffect(() => {
|
|
if (experimentId) {
|
|
reportExperimentView(experimentId, 'test', '');
|
|
}
|
|
}, [experimentId]);
|
|
|
|
return (
|
|
<span className={cx(styles.badge, className)} {...htmlProps}>
|
|
{text}
|
|
</span>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => {
|
|
return {
|
|
badge: css`
|
|
margin-left: ${theme.spacing(1.25)};
|
|
border-radius: ${theme.shape.borderRadius(5)};
|
|
background-color: ${theme.colors.success.main};
|
|
padding: ${theme.spacing(0.25, 0.75)};
|
|
color: white; // use the same color for both themes
|
|
font-weight: ${theme.typography.fontWeightMedium};
|
|
font-size: ${theme.typography.pxToRem(10)};
|
|
`,
|
|
};
|
|
};
|