|
|
import { |
|
|
__experimentalVStack as VStack, |
|
|
__experimentalHStack as HStack, |
|
|
__experimentalText as Text, |
|
|
} from '@wordpress/components'; |
|
|
import clsx from 'clsx'; |
|
|
import type { SectionHeaderProps } from './types'; |
|
|
|
|
|
import './style.scss'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const SectionHeader = ( { |
|
|
title, |
|
|
description, |
|
|
actions, |
|
|
decoration, |
|
|
headingId, |
|
|
prefix, |
|
|
className, |
|
|
level = 2, |
|
|
}: SectionHeaderProps ) => { |
|
|
const HeadingTag = `h${ level }` as keyof JSX.IntrinsicElements; |
|
|
return ( |
|
|
<VStack className={ clsx( 'dashboard-section-header', `is-level-${ level }`, className ) }> |
|
|
{ prefix && <div className="dashboard-section-header__prefix">{ prefix }</div> } |
|
|
<HStack |
|
|
justify="flex-start" |
|
|
alignment="center" |
|
|
className="dashboard-section-header__heading-row" |
|
|
> |
|
|
{ decoration && ( |
|
|
<span className="dashboard-section-header__decoration">{ decoration }</span> |
|
|
) } |
|
|
<HStack justify="space-between" alignment="center" spacing={ 3 }> |
|
|
<HeadingTag className="dashboard-section-header__heading" id={ headingId }> |
|
|
{ title } |
|
|
</HeadingTag> |
|
|
{ /* The wrapper is always needed for view transitions. */ } |
|
|
<HStack |
|
|
justify="flex-end" |
|
|
expanded={ false } |
|
|
alignment="center" |
|
|
className="dashboard-section-header__actions" |
|
|
spacing={ 3 } |
|
|
> |
|
|
{ actions } |
|
|
</HStack> |
|
|
</HStack> |
|
|
</HStack> |
|
|
{ description && ( |
|
|
<Text variant="muted" className="dashboard-section-header__description"> |
|
|
{ description } |
|
|
</Text> |
|
|
) } |
|
|
</VStack> |
|
|
); |
|
|
}; |
|
|
|