blob: 6010354e0ff84b2b162d967d5066971d06685987 (
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
|
import { ExpandableWidget, OrderedList } from '@components/WidgetParts';
import { t } from '@lingui/macro';
import { Heading } from '@ts/types/app';
import useHeadingsTree from '@utils/hooks/useHeadingsTree';
const ToC = () => {
const headingsTree = useHeadingsTree('article');
const title = t`Table of contents`;
const getItems = (headings: Heading[]) => {
return headings.map((heading) => {
return (
<li key={heading.id}>
<a href={`#${heading.id}`}>{heading.title}</a>
{heading.children.length > 0 && (
<OrderedList items={getItems(heading.children)} />
)}
</li>
);
});
};
return (
<ExpandableWidget title={title} expand={true} withBorders={true}>
<OrderedList items={getItems(headingsTree)} />
</ExpandableWidget>
);
};
export default ToC;
|