mirror of
https://github.com/grafana/grafana.git
synced 2025-09-23 01:43:36 +08:00

* Theme: Initial draft of dark login page * update * Updated login background * Updates * anim test * Anim tweak * Animate login box * Updates * Updating login page * Improve footer readability on login page * Fix sign up button
67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
import React, { FC } from 'react';
|
|
import { Card } from '../types';
|
|
import { Icon, stylesFactory, useTheme } from '@grafana/ui';
|
|
import { GrafanaTheme } from '@grafana/data';
|
|
import { css } from '@emotion/css';
|
|
import { cardContent, cardStyle, iconStyle } from './sharedStyles';
|
|
|
|
interface Props {
|
|
card: Card;
|
|
}
|
|
|
|
export const DocsCard: FC<Props> = ({ card }) => {
|
|
const theme = useTheme();
|
|
const styles = getStyles(theme, card.done);
|
|
|
|
return (
|
|
<div className={styles.card}>
|
|
<div className={cardContent}>
|
|
<a href={`${card.href}?utm_source=grafana_gettingstarted`}>
|
|
<div className={styles.heading}>{card.done ? 'complete' : card.heading}</div>
|
|
<h4 className={styles.title}>{card.title}</h4>
|
|
<div>
|
|
<Icon className={iconStyle(theme, card.done)} name={card.icon} size="xxl" />
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<a
|
|
href={`${card.learnHref}?utm_source=grafana_gettingstarted`}
|
|
className={styles.url}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
Learn how in the docs <Icon name="external-link-alt" />
|
|
</a>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const getStyles = stylesFactory((theme: GrafanaTheme, complete: boolean) => {
|
|
return {
|
|
card: css`
|
|
${cardStyle(theme, complete)}
|
|
|
|
min-width: 230px;
|
|
|
|
@media only screen and (max-width: ${theme.breakpoints.md}) {
|
|
min-width: 192px;
|
|
}
|
|
`,
|
|
heading: css`
|
|
text-transform: uppercase;
|
|
color: ${complete ? theme.palette.blue95 : '#FFB357'};
|
|
margin-bottom: ${theme.spacing.md};
|
|
`,
|
|
title: css`
|
|
margin-bottom: ${theme.spacing.md};
|
|
`,
|
|
url: css`
|
|
border-top: 1px solid ${theme.colors.border1};
|
|
position: absolute;
|
|
bottom: 0;
|
|
padding: 8px 16px;
|
|
width: 100%;
|
|
`,
|
|
};
|
|
});
|