* Move version picker next to product picker * Always render in header * Inline variant * Remove topper-sidebar * Handle breadcrumb length * Have breadcrumbs use Primer breakpoint * Make a breadcrumbs scss module * Update Breadcrumbs.tsx * Update Breadcrumbs.module.scss * Update Breadcrumbs.module.scss * Update server.js * Use responsive classes for hide/show breadcrumb
66 lines
2.0 KiB
TypeScript
66 lines
2.0 KiB
TypeScript
import cx from 'classnames'
|
|
import { useRouter } from 'next/router'
|
|
import { useMainContext } from '../context/MainContext'
|
|
import { Link } from 'components/Link'
|
|
import styles from './Breadcrumbs.module.scss'
|
|
|
|
export type BreadcrumbT = {
|
|
title: string
|
|
documentType?: string
|
|
href?: string
|
|
}
|
|
|
|
export const Breadcrumbs = () => {
|
|
const router = useRouter()
|
|
const pathWithLocale = `/${router.locale}${router.asPath.split('?')[0]}` // remove query string
|
|
const { breadcrumbs } = useMainContext()
|
|
|
|
return (
|
|
/*
|
|
NOTE: The breadcrumbs class and the nav tag are used by the
|
|
LUNR search scripts. The a tag generated by the Link is also used.
|
|
If these change, please also change
|
|
updating script/search/parse-page-sections-into-records.js.
|
|
*/
|
|
<nav
|
|
data-testid="breadcrumbs"
|
|
className={cx('f5 breadcrumbs', styles.breadcrumbs)}
|
|
aria-label="Breadcrumb"
|
|
>
|
|
{Object.values(breadcrumbs).map((breadcrumb, i, arr) => {
|
|
if (!breadcrumb) {
|
|
return null
|
|
}
|
|
const title = `${breadcrumb.title}`
|
|
return [
|
|
!breadcrumb.href ? (
|
|
<span data-testid="breadcrumb-title" key={title} title={title} className="px-2">
|
|
{breadcrumb.title}
|
|
</span>
|
|
) : (
|
|
<Link
|
|
key={title}
|
|
data-testid="breadcrumb-link"
|
|
href={breadcrumb.href}
|
|
title={title}
|
|
className={cx(
|
|
'pr-3',
|
|
// Always show first and last, show middle on XL size
|
|
i === 0 || i === arr.length - 1 ? 'd-inline-block' : 'd-none d-xl-inline-block',
|
|
pathWithLocale === breadcrumb.href && 'color-fg-muted'
|
|
)}
|
|
>
|
|
{breadcrumb.title}
|
|
{i !== arr.length - 1 ? (
|
|
<span className="color-fg-muted pl-3" key={`${i}-slash`}>
|
|
/
|
|
</span>
|
|
) : null}
|
|
</Link>
|
|
),
|
|
]
|
|
})}
|
|
</nav>
|
|
)
|
|
}
|