| import React, { useContext } from 'react'; |
| import type { FC, PropsWithChildren } from 'react'; |
| import classNames from 'classnames'; |
| import { NotificationProvider, useNotification as useRcNotification } from 'rc-notification'; |
| import type { NotificationAPI, NotificationConfig as RcNotificationConfig } from 'rc-notification'; |
|
|
| import { devUseWarning } from '../_util/warning'; |
| import { ConfigContext } from '../config-provider'; |
| import type { NotificationConfig as CPNotificationConfig } from '../config-provider/context'; |
| import useCSSVarCls from '../config-provider/hooks/useCSSVarCls'; |
| import { useToken } from '../theme/internal'; |
| import type { |
| ArgsProps, |
| NotificationConfig, |
| NotificationInstance, |
| NotificationPlacement, |
| } from './interface'; |
| import { getCloseIcon, PureContent } from './PurePanel'; |
| import useStyle from './style'; |
| import { getMotion, getPlacementStyle, getCloseIconConfig } from './util'; |
|
|
| const DEFAULT_OFFSET = 24; |
| const DEFAULT_DURATION = 4.5; |
| const DEFAULT_PLACEMENT: NotificationPlacement = 'topRight'; |
|
|
| |
| |
| |
| type HolderProps = NotificationConfig & { |
| onAllRemoved?: VoidFunction; |
| }; |
|
|
| interface HolderRef extends NotificationAPI { |
| prefixCls: string; |
| notification?: CPNotificationConfig; |
| } |
|
|
| const Wrapper: FC<PropsWithChildren<{ prefixCls: string }>> = ({ children, prefixCls }) => { |
| const rootCls = useCSSVarCls(prefixCls); |
| const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls, rootCls); |
| return wrapCSSVar( |
| <NotificationProvider classNames={{ list: classNames(hashId, cssVarCls, rootCls) }}> |
| {children} |
| </NotificationProvider>, |
| ); |
| }; |
|
|
| const renderNotifications: RcNotificationConfig['renderNotifications'] = ( |
| node, |
| { prefixCls, key }, |
| ) => ( |
| <Wrapper prefixCls={prefixCls} key={key}> |
| {node} |
| </Wrapper> |
| ); |
|
|
| const Holder = React.forwardRef<HolderRef, HolderProps>((props, ref) => { |
| const { |
| top, |
| bottom, |
| prefixCls: staticPrefixCls, |
| getContainer: staticGetContainer, |
| maxCount, |
| rtl, |
| onAllRemoved, |
| stack, |
| duration, |
| pauseOnHover = true, |
| showProgress, |
| } = props; |
| const { getPrefixCls, getPopupContainer, notification, direction } = useContext(ConfigContext); |
| const [, token] = useToken(); |
|
|
| const prefixCls = staticPrefixCls || getPrefixCls('notification'); |
|
|
| |
| const getStyle = (placement: NotificationPlacement): React.CSSProperties => |
| getPlacementStyle(placement, top ?? DEFAULT_OFFSET, bottom ?? DEFAULT_OFFSET); |
|
|
| const getClassName = () => classNames({ [`${prefixCls}-rtl`]: rtl ?? direction === 'rtl' }); |
|
|
| |
| const getNotificationMotion = () => getMotion(prefixCls); |
|
|
| |
| const [api, holder] = useRcNotification({ |
| prefixCls, |
| style: getStyle, |
| className: getClassName, |
| motion: getNotificationMotion, |
| closable: true, |
| closeIcon: getCloseIcon(prefixCls), |
| duration: duration ?? DEFAULT_DURATION, |
| getContainer: () => staticGetContainer?.() || getPopupContainer?.() || document.body, |
| maxCount, |
| pauseOnHover, |
| showProgress, |
| onAllRemoved, |
| renderNotifications, |
| stack: |
| stack === false |
| ? false |
| : { |
| threshold: typeof stack === 'object' ? stack?.threshold : undefined, |
| offset: 8, |
| gap: token.margin, |
| }, |
| }); |
|
|
| |
| React.useImperativeHandle(ref, () => ({ ...api, prefixCls, notification })); |
|
|
| return holder; |
| }); |
|
|
| |
| |
| |
| export function useInternalNotification( |
| notificationConfig?: HolderProps, |
| ): readonly [NotificationInstance, React.ReactElement] { |
| const holderRef = React.useRef<HolderRef>(null); |
|
|
| const warning = devUseWarning('Notification'); |
|
|
| |
| const wrapAPI = React.useMemo<NotificationInstance>(() => { |
| |
|
|
| |
| const open = (config: ArgsProps) => { |
| if (!holderRef.current) { |
| warning( |
| false, |
| 'usage', |
| 'You are calling notice in render which will break in React 18 concurrent mode. Please trigger in effect instead.', |
| ); |
| return; |
| } |
|
|
| const { open: originOpen, prefixCls, notification } = holderRef.current; |
|
|
| const noticePrefixCls = `${prefixCls}-notice`; |
|
|
| const { |
| message, |
| description, |
| icon, |
| type, |
| btn, |
| actions, |
| className, |
| style, |
| role = 'alert', |
| closeIcon, |
| closable, |
| ...restConfig |
| } = config; |
| if (process.env.NODE_ENV !== 'production') { |
| warning.deprecated(!btn, 'btn', 'actions'); |
| } |
| const mergedActions = actions ?? btn; |
|
|
| const realCloseIcon = getCloseIcon( |
| noticePrefixCls, |
| getCloseIconConfig(closeIcon, notificationConfig, notification), |
| ); |
|
|
| return originOpen({ |
| |
| placement: notificationConfig?.placement ?? DEFAULT_PLACEMENT, |
| ...restConfig, |
| content: ( |
| <PureContent |
| prefixCls={noticePrefixCls} |
| icon={icon} |
| type={type} |
| message={message} |
| description={description} |
| actions={mergedActions} |
| role={role} |
| /> |
| ), |
| className: classNames( |
| type && `${noticePrefixCls}-${type}`, |
| className, |
| notification?.className, |
| ), |
| style: { ...notification?.style, ...style }, |
| closeIcon: realCloseIcon, |
| closable: closable ?? !!realCloseIcon, |
| }); |
| }; |
|
|
| |
| const destroy = (key?: React.Key) => { |
| if (key !== undefined) { |
| holderRef.current?.close(key); |
| } else { |
| holderRef.current?.destroy(); |
| } |
| }; |
|
|
| const clone = { |
| open, |
| destroy, |
| } as NotificationInstance; |
|
|
| const keys = ['success', 'info', 'warning', 'error'] as const; |
| keys.forEach((type) => { |
| clone[type] = (config) => |
| open({ |
| ...config, |
| type, |
| }); |
| }); |
|
|
| return clone; |
| }, []); |
|
|
| |
| return [ |
| wrapAPI, |
| <Holder key="notification-holder" {...notificationConfig} ref={holderRef} />, |
| ] as const; |
| } |
|
|
| export default function useNotification(notificationConfig?: NotificationConfig) { |
| return useInternalNotification(notificationConfig); |
| } |
|
|