mars-v2-frontend/components/TextLink.tsx

75 lines
1.9 KiB
TypeScript
Raw Normal View History

import classNames from 'classnames'
import React, { LegacyRef, ReactNode } from 'react'
interface Props extends React.HTMLProps<HTMLAnchorElement> {
children?: string | ReactNode
className?: string
color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary'
externalLink?: boolean
textSize?: 'small' | 'medium' | 'large'
text?: string | ReactNode
uppercase?: boolean
}
const colorClasses = {
primary:
'text-primary hover:text-primary-highlight active:text-primary-highlight-10 focus:text-primary-highlight',
secondary:
'text-secondary hover:text-secondary-highlight active:text-secondary-highlight-10 focus:text-secondary-highlight',
tertiary:
'text-secondary-dark/60 hover:text-secondary-dark active:text-secondary-dark-10 focus:text-secondary-dark',
quaternary: 'hover:text-white active:text-white',
}
const textSizeClasses = {
small: 'text-sm',
medium: 'text-base',
large: 'text-lg',
}
const TextLink = React.forwardRef(function TextLink(
{
children,
className = '',
color = 'primary',
disabled,
externalLink,
href,
textSize = 'small',
text,
uppercase,
onClick,
...restProps
}: Props,
ref,
) {
return (
<a
className={classNames(
uppercase ? `${textSizeClasses[textSize]}-caps` : textSizeClasses[textSize],
colorClasses[color],
disabled && 'pointer-events-none opacity-50',
className,
)}
ref={ref as LegacyRef<HTMLAnchorElement>}
target={externalLink ? '_blank' : '_self'}
rel='noreferrer'
onClick={
onClick && !href
? (e) => {
e.preventDefault()
if (disabled) return
onClick
}
: undefined
}
href={!href ? '#' : href}
{...restProps}
>
{text && !children && text}
{children && children}
</a>
)
})
export default TextLink