blob: 155354e58a0077d58aec33b0aa4a0c4f35b0cd70 (
plain)
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
|
import Link from '@components/atoms/links/link';
import List, { ListProps, type ListItem } from '@components/atoms/lists/list';
import Widget, { type WidgetProps } from '@components/molecules/layout/widget';
import { slugify } from '@utils/helpers/slugify';
import { VFC } from 'react';
import styles from './links-list-widget.module.scss';
export type LinksListItems = {
/**
* An array of name/url couple child of this list item.
*/
child?: LinksListItems[];
/**
* The item name.
*/
name: string;
/**
* The item url.
*/
url: string;
};
export type LinksListWidgetProps = Pick<WidgetProps, 'level' | 'title'> &
Pick<ListProps, 'kind'> & {
/**
* An array of name/url couple.
*/
items: LinksListItems[];
};
/**
* LinksListWidget component
*
* Render a list of links inside a widget.
*/
const LinksListWidget: VFC<LinksListWidgetProps> = ({
items,
kind = 'unordered',
...props
}) => {
const listKindClass = `list--${kind}`;
/**
* Format the widget data to be used as List items.
*
* @param {LinksListItems[]} data - The widget data.
* @returns {ListItem[]} The list items data.
*/
const getListItems = (data: LinksListItems[]): ListItem[] => {
return data.map((item) => {
return {
id: slugify(item.name),
child: item.child && getListItems(item.child),
value: (
<Link href={item.url} className={styles.list__link}>
{item.name}
</Link>
),
};
});
};
return (
<Widget
expanded={true}
withBorders={true}
className={styles.widget}
{...props}
>
<List
items={getListItems(items)}
kind={kind}
withMargin={false}
className={`${styles.list} ${styles[listKindClass]}`}
itemsClassName={styles.list__item}
/>
</Widget>
);
};
export default LinksListWidget;
|