import CloseOutlined from '@ant-design/icons/CloseOutlined'; import classNames from 'classnames'; import { useNotification as useRcNotification } from 'rc-notification'; import type { NotificationAPI } from 'rc-notification/lib'; import * as React from 'react'; import warning from '../_util/warning'; import { ConfigContext } from '../config-provider'; import type { ComponentStyleConfig } from '../config-provider/context'; import { PureContent } from './PurePanel'; import type { ArgsProps, ConfigOptions, MessageInstance, MessageType, NoticeType, TypeOpen, } from './interface'; import useStyle from './style'; import { getMotion, wrapPromiseFn } from './util'; const DEFAULT_OFFSET = 8; const DEFAULT_DURATION = 3; // ============================================================================== // == Holder == // ============================================================================== type HolderProps = ConfigOptions & { onAllRemoved?: VoidFunction; }; interface HolderRef extends NotificationAPI { prefixCls: string; hashId: string; message?: ComponentStyleConfig; } const Holder = React.forwardRef((props, ref) => { const { top, prefixCls: staticPrefixCls, getContainer: staticGetContainer, maxCount, duration = DEFAULT_DURATION, rtl, transitionName, onAllRemoved, } = props; const { getPrefixCls, getPopupContainer, message } = React.useContext(ConfigContext); const prefixCls = staticPrefixCls || getPrefixCls('message'); const [, hashId] = useStyle(prefixCls); // =============================== Style =============================== const getStyle = (): React.CSSProperties => ({ left: '50%', transform: 'translateX(-50%)', top: top ?? DEFAULT_OFFSET, }); const getClassName = () => classNames(hashId, { [`${prefixCls}-rtl`]: rtl }); // ============================== Motion =============================== const getNotificationMotion = () => getMotion(prefixCls, transitionName); // ============================ Close Icon ============================= const mergedCloseIcon = ( ); // ============================== Origin =============================== const [api, holder] = useRcNotification({ prefixCls, style: getStyle, className: getClassName, motion: getNotificationMotion, closable: false, closeIcon: mergedCloseIcon, duration, getContainer: () => staticGetContainer?.() || getPopupContainer?.() || document.body, maxCount, onAllRemoved, }); // ================================ Ref ================================ React.useImperativeHandle(ref, () => ({ ...api, prefixCls, hashId, message, })); return holder; }); // ============================================================================== // == Hook == // ============================================================================== let keyIndex = 0; export function useInternalMessage( messageConfig?: HolderProps, ): readonly [MessageInstance, React.ReactElement] { const holderRef = React.useRef(null); // ================================ API ================================ const wrapAPI = React.useMemo(() => { // Wrap with notification content // >>> close const close = (key: React.Key) => { holderRef.current?.close(key); }; // >>> Open const open = (config: ArgsProps): MessageType => { if (!holderRef.current) { warning( false, 'Message', 'You are calling notice in render which will break in React 18 concurrent mode. Please trigger in effect instead.', ); const fakeResult: any = () => {}; fakeResult.then = () => {}; return fakeResult; } const { open: originOpen, prefixCls, hashId, message } = holderRef.current; const noticePrefixCls = `${prefixCls}-notice`; const { content, icon, type, key, className, style, onClose, ...restConfig } = config; let mergedKey: React.Key = key!; if (mergedKey === undefined || mergedKey === null) { keyIndex += 1; mergedKey = `antd-message-${keyIndex}`; } return wrapPromiseFn((resolve) => { originOpen({ ...restConfig, key: mergedKey, content: ( {content} ), placement: 'top', className: classNames( type && `${noticePrefixCls}-${type}`, hashId, className, message?.className, ), style: { ...message?.style, ...style }, onClose: () => { onClose?.(); resolve(); }, }); // Return close function return () => { close(mergedKey); }; }); }; // >>> destroy const destroy = (key?: React.Key) => { if (key !== undefined) { close(key); } else { holderRef.current?.destroy(); } }; const clone = { open, destroy, } as MessageInstance; const keys: NoticeType[] = ['info', 'success', 'warning', 'error', 'loading']; keys.forEach((type) => { const typeOpen: TypeOpen = (jointContent, duration, onClose) => { let config: ArgsProps; if (jointContent && typeof jointContent === 'object' && 'content' in jointContent) { config = jointContent; } else { config = { content: jointContent, }; } // Params let mergedDuration: number | undefined; let mergedOnClose: VoidFunction | undefined; if (typeof duration === 'function') { mergedOnClose = duration; } else { mergedDuration = duration; mergedOnClose = onClose; } const mergedConfig = { onClose: mergedOnClose, duration: mergedDuration, ...config, type, }; return open(mergedConfig); }; clone[type] = typeOpen; }); return clone; }, []); // ============================== Return =============================== return [wrapAPI, ] as const; } export default function useMessage(messageConfig?: ConfigOptions) { return useInternalMessage(messageConfig); }