1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
import NextImage, { type ImageProps as NextImageProps } from 'next/image';
import type { FC } from 'react';
import { ButtonLink, Figure, Heading, type HeadingLevel } from '../../atoms';
import styles from './card.module.scss';
import { Meta, type MetaData } from './meta';
export type CardProps = {
/**
* Set additional classnames to the card wrapper.
*/
className?: string;
/**
* The card cover.
*/
cover?: Pick<NextImageProps, 'alt' | 'src' | 'title' | 'width' | 'height'>;
/**
* The card id.
*/
id: string;
/**
* The card meta.
*/
meta?: MetaData;
/**
* The card tagline.
*/
tagline?: string;
/**
* The card title.
*/
title: string;
/**
* The title level (hn).
*/
titleLevel: HeadingLevel;
/**
* The card target.
*/
url: string;
};
/**
* Card component
*
* Render a link with minimal information about its content.
*/
export const Card: FC<CardProps> = ({
className = '',
cover,
id,
meta,
tagline,
title,
titleLevel,
url,
}) => {
const cardClass = `${styles.wrapper} ${className}`;
const headingId = `${id}-heading`;
return (
<ButtonLink aria-labelledby={headingId} className={cardClass} to={url}>
<article className={styles.article}>
<header className={styles.header}>
{cover ? (
<Figure>
<NextImage {...cover} className={styles.cover} />
</Figure>
) : null}
<Heading className={styles.title} id={headingId} level={titleLevel}>
{title}
</Heading>
</header>
{tagline ? <div className={styles.tagline}>{tagline}</div> : null}
{meta ? (
<footer className={styles.footer}>
<Meta className={styles.list} data={meta} spacing="sm" />
</footer>
) : null}
</article>
</ButtonLink>
);
};
|