mirror of https://github.com/grafana/grafana.git
79 lines
2.2 KiB
TypeScript
79 lines
2.2 KiB
TypeScript
import { css } from '@emotion/css';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { Trans, useTranslate } from '@grafana/i18n';
|
|
import { reportInteraction } from '@grafana/runtime';
|
|
import { Icon, useStyles2 } from '@grafana/ui';
|
|
|
|
import { Card } from '../types';
|
|
|
|
import { cardContent, cardStyle } from './sharedStyles';
|
|
|
|
interface Props {
|
|
card: Card;
|
|
}
|
|
|
|
export const DocsCard = ({ card }: Props) => {
|
|
const { t } = useTranslate();
|
|
const styles = useStyles2(getStyles, card.done);
|
|
|
|
return (
|
|
<div className={styles.card}>
|
|
<div className={cardContent}>
|
|
<a
|
|
href={`${card.href}?utm_source=grafana_gettingstarted`}
|
|
className={styles.url}
|
|
onClick={() => reportInteraction('grafana_getting_started_docs', { title: card.title, link: card.href })}
|
|
>
|
|
<div className={styles.heading}>
|
|
{card.done ? t('gettingstarted.docs-card.complete', 'complete') : card.heading}
|
|
</div>
|
|
<h4 className={styles.title}>{card.title}</h4>
|
|
</a>
|
|
</div>
|
|
<a
|
|
href={`${card.learnHref}?utm_source=grafana_gettingstarted`}
|
|
className={styles.learnUrl}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
onClick={() => reportInteraction('grafana_getting_started_docs', { title: card.title, link: card.learnHref })}
|
|
>
|
|
<Trans i18nKey="gettingstarted.docs-card.learn-how">Learn how in the docs</Trans>{' '}
|
|
<Icon name="external-link-alt" />
|
|
</a>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2, complete: boolean) => {
|
|
return {
|
|
card: css({
|
|
...cardStyle(theme, complete),
|
|
|
|
minWidth: '230px',
|
|
|
|
[theme.breakpoints.down('md')]: {
|
|
minWidth: '192px',
|
|
},
|
|
}),
|
|
heading: css({
|
|
textTransform: 'uppercase',
|
|
color: complete ? theme.v1.palette.blue95 : '#FFB357',
|
|
marginBottom: theme.spacing(2),
|
|
}),
|
|
title: css({
|
|
marginBottom: theme.spacing(2),
|
|
}),
|
|
url: css({
|
|
display: 'inline-block',
|
|
}),
|
|
learnUrl: css({
|
|
borderTop: `1px solid ${theme.colors.border.weak}`,
|
|
position: 'absolute',
|
|
bottom: 0,
|
|
padding: theme.spacing(1, 2),
|
|
width: '100%',
|
|
}),
|
|
};
|
|
};
|