mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-27 13:52:47 -07:00
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import type { JSX, ReactNode } from 'react'
|
|
import { useState } from 'react'
|
|
import { NavLink, type NavLinkProps } from '@mantine/core'
|
|
import { Link, useRouter } from 'tuono'
|
|
import { IconChevronRight } from '@tabler/icons-react'
|
|
|
|
import styles from './sidebar-link.module.css'
|
|
|
|
interface SidebarLinkProps {
|
|
label: string
|
|
href: string
|
|
onClick?: () => void
|
|
children?: ReactNode
|
|
}
|
|
|
|
export default function SidebarLink(
|
|
props: SidebarLinkProps & NavLinkProps,
|
|
): JSX.Element {
|
|
const { pathname } = useRouter()
|
|
const [isOpen, setIsOpen] = useState<boolean>(!!props.defaultOpened)
|
|
|
|
const internalProps = {
|
|
active: pathname === props.href,
|
|
className: styles.link,
|
|
rightSection: props.children && (
|
|
<IconChevronRight
|
|
size="1.2rem"
|
|
stroke={1.5}
|
|
className="mantine-rotate-rtl"
|
|
onClick={(e) => {
|
|
e.preventDefault()
|
|
e.stopPropagation()
|
|
setIsOpen((state) => !state)
|
|
}}
|
|
/>
|
|
),
|
|
opened: isOpen,
|
|
autoContrast: true,
|
|
...props,
|
|
}
|
|
|
|
if (props.href.startsWith('#')) {
|
|
return <NavLink component="button" {...internalProps} />
|
|
}
|
|
|
|
return <NavLink component={Link} {...internalProps} />
|
|
}
|