1
0
mirror of synced 2025-12-21 10:57:10 -05:00
Files
docs/components/sidebar/SidebarHomepage.tsx
Mike Surowiec f3fc80cf05 Upgrade primer/components -> primer/react (#25591)
* upgrade primer/components -> primer/react

* fix jest failure
2022-02-24 00:30:14 +00:00

62 lines
1.7 KiB
TypeScript

import { useRouter } from 'next/router'
import { LinkExternalIcon } from '@primer/octicons-react'
import { ActionList } from '@primer/react'
import { useVersion } from 'components/hooks/useVersion'
import { useMainContext } from 'components/context/MainContext'
import { Link } from 'components/Link'
export const SidebarHomepage = () => {
const router = useRouter()
const { currentVersion } = useVersion()
const { activeProducts, isFPT } = useMainContext()
const navItems = []
for (let i = 0; i < activeProducts.length; i++) {
const product = activeProducts[i]
if (!isFPT && !product.versions?.includes(currentVersion) && !product.external) {
continue
}
const href = `${!product.external ? `/${router.locale}` : ''}${
product.versions?.includes(currentVersion) && !isFPT
? `/${currentVersion}/${product.id}`
: product.href
}`
navItems.push({
renderItem: () => (
<ActionList.Item
as="li"
key={product.id}
title={`${product.name}${product.external ? '(External Site)' : ''}`}
className="my-2"
sx={{ padding: 0 }}
>
<Link
href={href}
target={product.external ? '_blank' : undefined}
className="f4 pl-4 pr-5 py-2 color-fg-default no-underline width-full"
>
{product.name}
{product.external && (
<span className="ml-1">
<LinkExternalIcon size="small" />
</span>
)}
</Link>
</ActionList.Item>
),
})
}
return (
<ul data-testid="sidebar" className="mt-4">
<li>
<ActionList {...{ as: 'ul' }} items={navItems}></ActionList>
</li>
</ul>
)
}