manifold/web/components/site-link.tsx

39 lines
871 B
TypeScript
Raw Normal View History

2021-12-30 20:03:32 +00:00
import clsx from 'clsx'
import Link from 'next/link'
export const SiteLink = (props: {
href: string
children?: any
2022-04-19 05:16:08 +00:00
onClick?: () => void
2021-12-30 20:03:32 +00:00
className?: string
}) => {
2022-04-19 05:16:08 +00:00
const { href, children, onClick, className } = props
2021-12-30 20:03:32 +00:00
2022-05-17 17:36:36 +00:00
return (
<MaybeLink href={href}>
2021-12-30 20:03:32 +00:00
<a
className={clsx(
'z-10 break-words hover:underline hover:decoration-indigo-400 hover:decoration-2',
2021-12-30 20:03:32 +00:00
className
)}
2022-02-15 02:27:43 +00:00
style={{ /* For iOS safari */ wordBreak: 'break-word' }}
2022-04-19 05:16:08 +00:00
onClick={(e) => {
e.stopPropagation()
if (onClick) onClick()
}}
2021-12-30 20:03:32 +00:00
>
{children}
</a>
2022-05-17 17:36:36 +00:00
</MaybeLink>
)
}
function MaybeLink(props: { href: string; children: React.ReactNode }) {
const { href, children } = props
return href.startsWith('http') ? (
<>{children}</>
) : (
<Link href={href}>{children}</Link>
2021-12-30 20:03:32 +00:00
)
}