summaryrefslogtreecommitdiffstats
path: root/src/components/ToC/ToC.tsx
blob: b172b3a68a62da94bf315accd6bc9d37cfe23328 (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
import { t } from '@lingui/macro';
import { Heading } from '@ts/types/app';
import useHeadingsTree from '@utils/hooks/useHeadingsTree';
import styles from './ToC.module.scss';

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 && <ol>{getItems(heading.children)}</ol>}
        </li>
      );
    });
  };

  return (
    <div className={styles.wrapper}>
      <h2>{title}</h2>
      <ol className={styles.list}>{getItems(headingsTree)}</ol>
    </div>
  );
};

export default ToC;