File size: 1,228 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
import {
__experimentalVStack as VStack,
__experimentalText as Text,
Card,
CardBody,
} from '@wordpress/components';
import { forwardRef } from 'react';
import ActionItem from './action-item';
import type { ActionListProps } from './types';
import './style.scss';
function UnforwardedActionList(
{ title, description, children }: ActionListProps,
ref: React.ForwardedRef< HTMLDivElement >
) {
return (
<Card className="action-list" ref={ ref }>
<CardBody>
{ ( title || description ) && (
<VStack className="action-list__heading" spacing={ 2 }>
{ title && (
<Text size="15px" weight={ 500 } lineHeight="20px">
{ title }
</Text>
) }
{ description && (
<Text variant="muted" lineHeight="20px">
{ description }
</Text>
) }
</VStack>
) }
<VStack className="action-list__actions" spacing={ 0 }>
{ children }
</VStack>
</CardBody>
</Card>
);
}
export const ActionList = Object.assign( forwardRef( UnforwardedActionList ), {
/**
* Renders a action item inside the `ActionList` component.
*/
ActionItem: Object.assign( ActionItem, {
displayName: 'ActionList.ActionItem',
} ),
} );
export default ActionList;
|