|
|
import clsx from 'clsx'; |
|
|
import { createElement, forwardRef, memo } from 'react'; |
|
|
import Gridicon from '../gridicon'; |
|
|
import type { ElementType, ComponentProps, ReactNode, Ref } from 'react'; |
|
|
|
|
|
import './style.scss'; |
|
|
|
|
|
export type TagName< P = any > = ElementType< P >; |
|
|
|
|
|
type OwnProps = { |
|
|
className?: string; |
|
|
displayAsLink?: boolean; |
|
|
href?: string; |
|
|
target?: string; |
|
|
compact?: boolean; |
|
|
highlight?: 'error' | 'info' | 'success' | 'warning'; |
|
|
showLinkIcon?: boolean; |
|
|
}; |
|
|
|
|
|
type ElementProps< P, T extends TagName > = P & |
|
|
Omit< ComponentProps< T >, 'tagName' | keyof P > & { |
|
|
tagName?: T | keyof JSX.IntrinsicElements; |
|
|
children?: ReactNode; |
|
|
}; |
|
|
|
|
|
export type Props< T extends TagName > = ElementProps< OwnProps, T >; |
|
|
|
|
|
const Card = < T extends TagName = 'div' >( |
|
|
{ |
|
|
children, |
|
|
className, |
|
|
compact, |
|
|
displayAsLink, |
|
|
highlight, |
|
|
tagName = 'div', |
|
|
href, |
|
|
target, |
|
|
showLinkIcon = true, |
|
|
...props |
|
|
}: Props< T >, |
|
|
forwardedRef: Ref< any > |
|
|
) => { |
|
|
const elementClass = clsx( |
|
|
'card', |
|
|
className, |
|
|
{ |
|
|
'is-card-link': displayAsLink || href, |
|
|
'is-clickable': props.onClick, |
|
|
'is-compact': compact, |
|
|
'is-highlight': highlight, |
|
|
}, |
|
|
highlight ? 'is-' + highlight : false |
|
|
); |
|
|
|
|
|
return href ? ( |
|
|
<a { ...props } href={ href } target={ target } className={ elementClass } ref={ forwardedRef }> |
|
|
{ showLinkIcon && ( |
|
|
<Gridicon className="card__link-indicator" icon={ target ? 'external' : 'chevron-right' } /> |
|
|
) } |
|
|
{ children } |
|
|
</a> |
|
|
) : ( |
|
|
createElement( |
|
|
tagName, |
|
|
{ ...props, className: elementClass, ref: forwardedRef }, |
|
|
displayAsLink && ( |
|
|
<Gridicon className="card__link-indicator" icon={ target ? 'external' : 'chevron-right' } /> |
|
|
), |
|
|
children |
|
|
) |
|
|
); |
|
|
}; |
|
|
|
|
|
const ForwardedRefCard = forwardRef( Card ); |
|
|
ForwardedRefCard.displayName = 'Card'; |
|
|
|
|
|
export default memo( ForwardedRefCard ); |
|
|
|