Files
web/components/TempDesignSystem/Link/index.tsx
2024-07-08 13:25:00 +02:00

42 lines
759 B
TypeScript

"use client"
import NextLink from "next/link"
import { usePathname } from "next/navigation"
import { linkVariants } from "./variants"
import type { LinkProps } from "./link"
export default function Link({
className,
color,
href,
partialMatch = false,
textDecoration,
size,
prefetch,
variant,
...props
}: LinkProps) {
const currentPageSlug = usePathname()
let isActive = currentPageSlug === href
if (partialMatch && !isActive) {
isActive = currentPageSlug === href
}
const classNames = linkVariants({
active: isActive,
className,
textDecoration,
color,
size,
variant,
})
return (
<NextLink
prefetch={prefetch}
className={classNames}
href={href}
{...props}
/>
)
}