| import type { ReactElement } from 'react'; |
| import * as React from 'react'; |
| import CheckCircleFilled from '@ant-design/icons/CheckCircleFilled'; |
| import CloseCircleFilled from '@ant-design/icons/CloseCircleFilled'; |
| import CloseOutlined from '@ant-design/icons/CloseOutlined'; |
| import ExclamationCircleFilled from '@ant-design/icons/ExclamationCircleFilled'; |
| import InfoCircleFilled from '@ant-design/icons/InfoCircleFilled'; |
| import classNames from 'classnames'; |
| import CSSMotion from 'rc-motion'; |
| import pickAttrs from 'rc-util/lib/pickAttrs'; |
| import { composeRef } from 'rc-util/lib/ref'; |
|
|
| import type { ClosableType } from '../_util/hooks/useClosable'; |
| import { replaceElement } from '../_util/reactNode'; |
| import { devUseWarning } from '../_util/warning'; |
| import { useComponentConfig } from '../config-provider/context'; |
| import useStyle from './style'; |
|
|
| export interface AlertRef { |
| nativeElement: HTMLDivElement; |
| } |
|
|
| export interface AlertProps { |
| |
| type?: 'success' | 'info' | 'warning' | 'error'; |
| |
| closable?: ClosableType; |
| |
| |
| |
| |
| closeText?: React.ReactNode; |
| |
| message?: React.ReactNode; |
| |
| description?: React.ReactNode; |
| |
| onClose?: React.MouseEventHandler<HTMLButtonElement>; |
| |
| afterClose?: () => void; |
| |
| showIcon?: boolean; |
| |
| role?: string; |
| style?: React.CSSProperties; |
| prefixCls?: string; |
| className?: string; |
| rootClassName?: string; |
| banner?: boolean; |
| icon?: React.ReactNode; |
| closeIcon?: React.ReactNode; |
| action?: React.ReactNode; |
| onMouseEnter?: React.MouseEventHandler<HTMLDivElement>; |
| onMouseLeave?: React.MouseEventHandler<HTMLDivElement>; |
| onClick?: React.MouseEventHandler<HTMLDivElement>; |
|
|
| id?: string; |
| } |
|
|
| const iconMapFilled = { |
| success: CheckCircleFilled, |
| info: InfoCircleFilled, |
| error: CloseCircleFilled, |
| warning: ExclamationCircleFilled, |
| }; |
|
|
| interface IconNodeProps { |
| type: AlertProps['type']; |
| icon: AlertProps['icon']; |
| prefixCls: AlertProps['prefixCls']; |
| description: AlertProps['description']; |
| } |
|
|
| const IconNode: React.FC<IconNodeProps> = (props) => { |
| const { icon, prefixCls, type } = props; |
| const iconType = iconMapFilled[type!] || null; |
| if (icon) { |
| return replaceElement(icon, <span className={`${prefixCls}-icon`}>{icon}</span>, () => ({ |
| className: classNames( |
| `${prefixCls}-icon`, |
| ( |
| icon as ReactElement<{ |
| className?: string; |
| }> |
| ).props.className, |
| ), |
| })) as ReactElement; |
| } |
| return React.createElement(iconType, { className: `${prefixCls}-icon` }); |
| }; |
|
|
| type CloseIconProps = { |
| isClosable: boolean; |
| prefixCls: AlertProps['prefixCls']; |
| closeIcon: AlertProps['closeIcon']; |
| handleClose: AlertProps['onClose']; |
| ariaProps: React.AriaAttributes; |
| }; |
|
|
| const CloseIconNode: React.FC<CloseIconProps> = (props) => { |
| const { isClosable, prefixCls, closeIcon, handleClose, ariaProps } = props; |
| const mergedCloseIcon = |
| closeIcon === true || closeIcon === undefined ? <CloseOutlined /> : closeIcon; |
| return isClosable ? ( |
| <button |
| type="button" |
| onClick={handleClose} |
| className={`${prefixCls}-close-icon`} |
| tabIndex={0} |
| {...ariaProps} |
| > |
| {mergedCloseIcon} |
| </button> |
| ) : null; |
| }; |
|
|
| const Alert = React.forwardRef<AlertRef, AlertProps>((props, ref) => { |
| const { |
| description, |
| prefixCls: customizePrefixCls, |
| message, |
| banner, |
| className, |
| rootClassName, |
| style, |
| onMouseEnter, |
| onMouseLeave, |
| onClick, |
| afterClose, |
| showIcon, |
| closable, |
| closeText, |
| closeIcon, |
| action, |
| id, |
| ...otherProps |
| } = props; |
|
|
| const [closed, setClosed] = React.useState(false); |
|
|
| if (process.env.NODE_ENV !== 'production') { |
| const warning = devUseWarning('Alert'); |
| warning.deprecated(!closeText, 'closeText', 'closable.closeIcon'); |
| } |
|
|
| const internalRef = React.useRef<HTMLDivElement>(null); |
|
|
| React.useImperativeHandle(ref, () => ({ |
| nativeElement: internalRef.current!, |
| })); |
|
|
| const { |
| getPrefixCls, |
| direction, |
| closable: contextClosable, |
| closeIcon: contextCloseIcon, |
| className: contextClassName, |
| style: contextStyle, |
| } = useComponentConfig('alert'); |
| const prefixCls = getPrefixCls('alert', customizePrefixCls); |
|
|
| const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls); |
|
|
| const handleClose = (e: React.MouseEvent<HTMLButtonElement>) => { |
| setClosed(true); |
| props.onClose?.(e); |
| }; |
|
|
| const type = React.useMemo<AlertProps['type']>(() => { |
| if (props.type !== undefined) { |
| return props.type; |
| } |
| |
| return banner ? 'warning' : 'info'; |
| }, [props.type, banner]); |
|
|
| |
| const isClosable = React.useMemo<boolean>(() => { |
| if (typeof closable === 'object' && closable.closeIcon) return true; |
| if (closeText) { |
| return true; |
| } |
| if (typeof closable === 'boolean') { |
| return closable; |
| } |
| |
| if (closeIcon !== false && closeIcon !== null && closeIcon !== undefined) { |
| return true; |
| } |
|
|
| return !!contextClosable; |
| }, [closeText, closeIcon, closable, contextClosable]); |
|
|
| |
| const isShowIcon = banner && showIcon === undefined ? true : showIcon; |
|
|
| const alertCls = classNames( |
| prefixCls, |
| `${prefixCls}-${type}`, |
| { |
| [`${prefixCls}-with-description`]: !!description, |
| [`${prefixCls}-no-icon`]: !isShowIcon, |
| [`${prefixCls}-banner`]: !!banner, |
| [`${prefixCls}-rtl`]: direction === 'rtl', |
| }, |
| contextClassName, |
| className, |
| rootClassName, |
| cssVarCls, |
| hashId, |
| ); |
|
|
| const restProps = pickAttrs(otherProps, { aria: true, data: true }); |
|
|
| const mergedCloseIcon = React.useMemo(() => { |
| if (typeof closable === 'object' && closable.closeIcon) { |
| return closable.closeIcon; |
| } |
| if (closeText) { |
| return closeText; |
| } |
| if (closeIcon !== undefined) { |
| return closeIcon; |
| } |
| if (typeof contextClosable === 'object' && contextClosable.closeIcon) { |
| return contextClosable.closeIcon; |
| } |
| return contextCloseIcon; |
| }, [closeIcon, closable, closeText, contextCloseIcon]); |
|
|
| const mergedAriaProps = React.useMemo<React.AriaAttributes>(() => { |
| const merged = closable ?? contextClosable; |
| if (typeof merged === 'object') { |
| const { closeIcon: _, ...ariaProps } = merged; |
| return ariaProps; |
| } |
| return {}; |
| }, [closable, contextClosable]); |
|
|
| return wrapCSSVar( |
| <CSSMotion |
| visible={!closed} |
| motionName={`${prefixCls}-motion`} |
| motionAppear={false} |
| motionEnter={false} |
| onLeaveStart={(node) => ({ maxHeight: node.offsetHeight })} |
| onLeaveEnd={afterClose} |
| > |
| {({ className: motionClassName, style: motionStyle }, setRef) => ( |
| <div |
| id={id} |
| ref={composeRef(internalRef, setRef)} |
| data-show={!closed} |
| className={classNames(alertCls, motionClassName)} |
| style={{ ...contextStyle, ...style, ...motionStyle }} |
| onMouseEnter={onMouseEnter} |
| onMouseLeave={onMouseLeave} |
| onClick={onClick} |
| role="alert" |
| {...restProps} |
| > |
| {isShowIcon ? ( |
| <IconNode |
| description={description} |
| icon={props.icon} |
| prefixCls={prefixCls} |
| type={type} |
| /> |
| ) : null} |
| <div className={`${prefixCls}-content`}> |
| {message ? <div className={`${prefixCls}-message`}>{message}</div> : null} |
| {description ? <div className={`${prefixCls}-description`}>{description}</div> : null} |
| </div> |
| {action ? <div className={`${prefixCls}-action`}>{action}</div> : null} |
| <CloseIconNode |
| isClosable={isClosable} |
| prefixCls={prefixCls} |
| closeIcon={mergedCloseIcon} |
| handleClose={handleClose} |
| ariaProps={mergedAriaProps} |
| /> |
| </div> |
| )} |
| </CSSMotion>, |
| ); |
| }); |
|
|
| if (process.env.NODE_ENV !== 'production') { |
| Alert.displayName = 'Alert'; |
| } |
|
|
| export default Alert; |
|
|