|
|
import { Badge } from '@automattic/ui'; |
|
|
import { |
|
|
__experimentalVStack as VStack, |
|
|
__experimentalHStack as HStack, |
|
|
__experimentalText as Text, |
|
|
Button, |
|
|
Icon, |
|
|
} from '@wordpress/components'; |
|
|
import { chevronRight } from '@wordpress/icons'; |
|
|
import clsx from 'clsx'; |
|
|
import React, { forwardRef } from 'react'; |
|
|
import { SummaryButtonProps } from './types'; |
|
|
import './style.scss'; |
|
|
|
|
|
function BadgesList( { badges }: { badges: SummaryButtonProps[ 'badges' ] } ) { |
|
|
if ( ! badges?.length ) { |
|
|
return null; |
|
|
} |
|
|
return ( |
|
|
<HStack spacing={ 1 } justify="flex-start" as="span" wrap expanded={ false }> |
|
|
{ badges?.map( ( badge ) => ( |
|
|
<Badge key={ badge.text } intent={ badge.intent }> |
|
|
{ badge.text } |
|
|
</Badge> |
|
|
) ) } |
|
|
</HStack> |
|
|
); |
|
|
} |
|
|
|
|
|
function UnforwardedSummaryButton( |
|
|
{ |
|
|
title, |
|
|
href, |
|
|
decoration, |
|
|
description, |
|
|
strapline, |
|
|
badges, |
|
|
showArrow = true, |
|
|
onClick, |
|
|
disabled, |
|
|
density = 'low', |
|
|
...props |
|
|
}: SummaryButtonProps, |
|
|
ref: React.ForwardedRef< HTMLAnchorElement | HTMLButtonElement > |
|
|
) { |
|
|
const hasLowDensity = density === 'low'; |
|
|
return ( |
|
|
<Button |
|
|
// Forward additional props to support standard attributes like mouse events. |
|
|
{ ...props } |
|
|
ref={ ref } |
|
|
href={ href } |
|
|
onClick={ onClick } |
|
|
className={ clsx( 'summary-button', `has-density-${ density }`, props.className ) } |
|
|
disabled={ disabled } |
|
|
accessibleWhenDisabled |
|
|
> |
|
|
<HStack spacing={ 4 } justify="flex-start" alignment="flex-start" as="span"> |
|
|
{ !! decoration && <span className="summary-button-decoration">{ decoration }</span> } |
|
|
<HStack justify="space-between" spacing={ 4 } as="span" wrap> |
|
|
<VStack alignment="flex-start" as="span" spacing={ 3 } justify="flex-start"> |
|
|
<VStack alignment="flex-start" as="span" spacing={ 2 } justify="flex-start"> |
|
|
{ strapline && hasLowDensity && ( |
|
|
<Text variant="muted" size={ 10 } upperCase className="summary-button-strapline"> |
|
|
{ strapline } |
|
|
</Text> |
|
|
) } |
|
|
<Text className="summary-button-title">{ title }</Text> |
|
|
{ description && hasLowDensity && ( |
|
|
<Text variant="muted" className="summary-button-description"> |
|
|
{ description } |
|
|
</Text> |
|
|
) } |
|
|
</VStack> |
|
|
{ hasLowDensity && <BadgesList badges={ badges } /> } |
|
|
</VStack> |
|
|
{ ! hasLowDensity && <BadgesList badges={ badges } /> } |
|
|
</HStack> |
|
|
{ showArrow && <Icon icon={ chevronRight } className="summary-button-navigation-icon" /> } |
|
|
</HStack> |
|
|
</Button> |
|
|
); |
|
|
} |
|
|
|
|
|
export const SummaryButton = forwardRef( UnforwardedSummaryButton ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default SummaryButton; |
|
|
|