blob: e090a4ff1770823ca841742b02100da40fd53f48 (
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
|
import { t } from '@lingui/macro';
import Link from 'next/link';
import { useRouter } from 'next/router';
import styles from './Breadcrumb.module.scss';
const Breadcrumb = ({ pageTitle }: { pageTitle: string }) => {
const router = useRouter();
const isHome = router.pathname === '/';
const isBlog = router.pathname === '/blog';
const isArticle = router.pathname.includes('/article/');
const isThematic = router.pathname.includes('/thematique/');
const isSubject = router.pathname.includes('/sujet/');
const getItems = () => {
return (
<>
<li className={styles.item}>
<Link href="/">
<a>{t`Home`}</a>
</Link>
</li>
{isBlog && <li className={styles.item}>{t`Blog`}</li>}
{(isArticle || isThematic || isSubject) && (
<>
<li className={styles.item}>
<Link href="/blog">
<a>{t`Blog`}</a>
</Link>
</li>
<li className={styles.item}>{pageTitle}</li>
</>
)}
{!isBlog && !isArticle && !isThematic && !isSubject && (
<li className={styles.item}>{pageTitle}</li>
)}
</>
);
};
return (
<>
{!isHome && (
<nav>
<span className="screen-reader-text">{t`You are here:`}</span>
<ol className={styles.list}>{getItems()}</ol>
</nav>
)}
</>
);
};
export default Breadcrumb;
|