-
Notifications
You must be signed in to change notification settings - Fork 492
/
Copy pathDevDocsBreadcrumbs.tsx
67 lines (63 loc) · 2.22 KB
/
DevDocsBreadcrumbs.tsx
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
import React, { useCallback, useMemo } from "react";
import Link from "@docusaurus/Link";
import RightArrowIcon from "@site/static/img/svgIcons/rightArrowIcon.svg";
import { useLocation } from "@docusaurus/router";
import { useBaseUrlUtils } from "@docusaurus/useBaseUrl";
export function DevDocsBreadcrumbs() {
const location = useLocation();
const { withBaseUrl } = useBaseUrlUtils();
const breadcrumbs = useMemo(() => {
const parts = location.pathname
.split("/")
.filter((item) => item !== "docs" && item !== "current")
.filter(Boolean)
.map((part) => {
return {
href: withBaseUrl(`docs/${part}`),
label: part.replace(/\W|\s+/g, " "),
};
});
// only show the first and last breadcrumb for brevity
if (parts.length > 1) {
return [parts[0], parts[parts.length - 1]];
} else {
return [parts[0]];
}
}, [location]);
/**
* The breadcrumbs behavior is as follows:
* 1. the breadcrumbs are only shown on mobile or tablet devices
* 2. clicking on any breadcrumb item results in the mobile nav menu
* eppearing
*
* Docusuaurus does not seem to provide an API for the navbar through
* context or a hook. To trigger the menu to open, we must synthesize a
* click event on the `navbar__toggle` element by hijacking the click
* event against the breadcrum item and repurposing it for the navbar toggle
* element.
*/
const toggleMenu = useCallback((event: React.MouseEvent) => {
document
.getElementsByClassName("navbar__toggle")
.item(0)
?.dispatchEvent(
new MouseEvent(event.nativeEvent.type, event.nativeEvent)
);
}, []);
return (
<div className="flex flex-row gap-2 items-center tw-title-navigation-on-page whitespace-nowrap max-w-full">
{breadcrumbs.map((item, index) => (
<React.Fragment key={item.href}>
<Link
className={`${index < breadcrumbs.length - 1 ? "text-black" : ""}`}
onClick={toggleMenu}
>
{item.label}
</Link>
{index < breadcrumbs.length - 1 && <span>/</span>}
</React.Fragment>
))}
<RightArrowIcon className="w-3 h-3 text-black opacity-50 mt-0.5" />
</div>
);
}