| import { Icon, close as closeIcon } from '@wordpress/icons'; |
| import clsx from 'clsx'; |
| import { useCallback } from 'react'; |
| import Modal from 'react-modal'; |
| import ButtonBar from './button-bar'; |
| import type { BaseButton } from './button-bar'; |
| import type { PropsWithChildren } from 'react'; |
|
|
| import './style.scss'; |
|
|
| type Props = { |
| additionalClassNames?: Parameters< typeof clsx >[ 0 ]; |
| additionalOverlayClassNames?: Parameters< typeof clsx >[ 0 ]; |
| baseClassName?: string; |
| buttons?: ( React.ReactElement | BaseButton )[]; |
| className?: string; |
| isBackdropVisible?: boolean; |
| isFullScreen?: boolean; |
| isVisible: boolean; |
| label?: string; |
| leaveTimeout?: number; |
| onClose?: ( action?: string ) => void; |
| shouldCloseOnEsc?: boolean; |
| showCloseIcon?: boolean; |
| shouldCloseOnOverlayClick?: boolean; |
| labelledby?: string; |
| describedby?: string; |
| bodyOpenClassName?: string; |
| }; |
|
|
| const Dialog = ( { |
| additionalClassNames, |
| additionalOverlayClassNames, |
| buttons, |
| baseClassName = 'dialog', |
| className, |
| children, |
| isBackdropVisible = true, |
| isFullScreen = true, |
| isVisible = false, |
| label = '', |
| leaveTimeout = 200, |
| onClose, |
| shouldCloseOnEsc, |
| showCloseIcon = false, |
| shouldCloseOnOverlayClick = true, |
| labelledby, |
| describedby, |
| bodyOpenClassName, |
| }: PropsWithChildren< Props > ) => { |
| const close = useCallback( () => onClose?.(), [ onClose ] ); |
| const onButtonClick = useCallback( |
| ( button: BaseButton ) => { |
| if ( button.onClick ) { |
| button.onClick( () => onClose?.( button.action ) ); |
| } else { |
| onClose?.( button.action ); |
| } |
| }, |
| [ onClose ] |
| ); |
|
|
| |
| const dialogClassName = clsx( baseClassName, 'card', additionalClassNames ); |
|
|
| const backdropClassName = clsx( baseClassName + '__backdrop', additionalOverlayClassNames, { |
| 'is-full-screen': isFullScreen, |
| 'is-hidden': ! isBackdropVisible, |
| } ); |
|
|
| const contentClassName = clsx( baseClassName + '__content', className ); |
|
|
| return ( |
| <Modal |
| aria={ { labelledby, describedby } } |
| isOpen={ isVisible } |
| onRequestClose={ close } |
| closeTimeoutMS={ leaveTimeout } |
| contentLabel={ label } |
| overlayClassName={ backdropClassName } // We use flex here which react-modal doesn't |
| className={ dialogClassName } |
| htmlOpenClassName="ReactModal__Html--open" |
| role="dialog" |
| shouldCloseOnEsc={ shouldCloseOnEsc } |
| shouldCloseOnOverlayClick={ shouldCloseOnOverlayClick } |
| bodyOpenClassName={ bodyOpenClassName } |
| > |
| { showCloseIcon && ( |
| <button |
| aria-label="Close" |
| className="dialog__action-buttons-close" |
| onClick={ () => onClose?.( this ) } |
| > |
| <Icon icon={ closeIcon } size={ 24 } /> |
| </button> |
| ) } |
| <div className={ contentClassName } tabIndex={ -1 }> |
| { children } |
| </div> |
| <ButtonBar |
| buttons={ buttons } |
| onButtonClick={ onButtonClick } |
| baseClassName={ baseClassName } |
| /> |
| </Modal> |
| ); |
| }; |
|
|
| export default Dialog; |
|
|