Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import {
__experimentalVStack as VStack,
__experimentalHStack as HStack,
Button,
Card,
CardBody,
Icon,
} from '@wordpress/components';
import { info, published, error, closeSmall } from '@wordpress/icons';
import clsx from 'clsx';
import { forwardRef } from 'react';
import { caution } from './icons';
import type { NoticeVariant, NoticeProps } from './types';
import './style.scss';
const icons: { [ key in NoticeVariant ]: any } = {
info,
warning: caution,
success: published,
error,
};
/**
* The Notice component is a visually non-obtrusive element that communicates the system status
* and provides options and actions related to the message tone.
*
* This component is designed to sit inline with the page area and capture the user’s attention
* to inform them about relevant information.
*
* ```jsx
* import { Notice } from '@automattic/components';
* import { ExternalLink } from '@wordpress/components';
*
* function MyComponent() {
* return (
* <Notice
* title="Title"
* actions={ <Button variant="primary">Label</Button> }
* >
* <>Hello, I’m a notice with an inline <ExternalLink href="#">link</ExternalLink></>
* </Notice>
* );
* }
* ```
*/
function UnforwardedNotice(
{ variant = 'info', title, children, actions, density = 'low', onClose }: NoticeProps,
ref: React.ForwardedRef< HTMLDivElement >
) {
const hasLowDensity = density === 'low';
return (
<Card
className={ clsx( 'dashboard-notice', `is-${ variant }`, `has-density-${ density }` ) }
ref={ ref }
>
<CardBody className="dashboard-notice__body">
<HStack spacing={ hasLowDensity ? 2 : 1 } justify="flex-start" alignment="flex-start">
<Icon className="dashboard-notice__icon" icon={ icons[ variant ] } />
<VStack className="dashboard-notice__content" spacing={ 3 }>
<VStack className="dashboard-notice__heading" spacing={ 1 }>
{ title && <span className="dashboard-notice__title">{ title }</span> }
<span className="dashboard-notice__description">{ children }</span>
</VStack>
{ actions && (
<HStack className="dashboard-notice__actions" spacing={ 3 } justify="flex-start">
{ actions }
</HStack>
) }
</VStack>
{ !! onClose && (
<Button
className="dashboard-notice__close-button"
icon={ closeSmall }
onClick={ onClose }
/>
) }
</HStack>
</CardBody>
</Card>
);
}
export const Notice = forwardRef( UnforwardedNotice );
export default Notice;