antd
Version:
An enterprise-class UI design language and React components implementation
234 lines (233 loc) • 8.04 kB
JavaScript
"use client";
import * as React from 'react';
import CloseOutlined from "@ant-design/icons/es/icons/CloseOutlined";
import Dialog from '@rc-component/dialog';
import { composeRef } from "@rc-component/util/es/ref";
import { clsx } from 'clsx';
import ContextIsolator from '../_util/ContextIsolator';
import { pickClosable, useClosable, useMergedMask, useMergeSemantic, useZIndex } from '../_util/hooks';
import { getTransitionName } from '../_util/motion';
import { canUseDocElement } from '../_util/styleChecker';
import { devUseWarning } from '../_util/warning';
import zIndexContext from '../_util/zindexContext';
import { ConfigContext } from '../config-provider';
import { useComponentConfig } from '../config-provider/context';
import useCSSVarCls from '../config-provider/hooks/useCSSVarCls';
import Skeleton from '../skeleton';
import { usePanelRef } from '../watermark/context';
import { Footer, renderCloseIcon } from './shared';
import useStyle from './style';
let mousePosition;
// ref: https://github.com/ant-design/ant-design/issues/15795
const getClickPosition = e => {
mousePosition = {
x: e.pageX,
y: e.pageY
};
// 100ms 内发生过点击事件,则从点击位置动画展示
// 否则直接 zoom 展示
// 这样可以兼容非点击方式展开
setTimeout(() => {
mousePosition = null;
}, 100);
};
// 只有点击事件支持从鼠标位置动画展开
if (canUseDocElement()) {
document.documentElement.addEventListener('click', getClickPosition, true);
}
const Modal = props => {
const {
prefixCls: customizePrefixCls,
className,
rootClassName,
open,
wrapClassName,
centered,
getContainer,
focusTriggerAfterClose = true,
style,
width = 520,
footer,
classNames,
styles,
children,
loading,
confirmLoading,
zIndex: customizeZIndex,
mousePosition: customizeMousePosition,
onOk,
onCancel,
okButtonProps,
cancelButtonProps,
destroyOnHidden,
destroyOnClose,
panelRef = null,
closable,
mask: modalMask,
modalRender,
...restProps
} = props;
const {
getPopupContainer: getContextPopupContainer,
getPrefixCls,
direction,
className: contextClassName,
style: contextStyle,
classNames: contextClassNames,
styles: contextStyles,
centered: contextCentered,
cancelButtonProps: contextCancelButtonProps,
okButtonProps: contextOkButtonProps,
mask: contextMask
} = useComponentConfig('modal');
const {
modal: modalContext
} = React.useContext(ConfigContext);
const [closableAfterclose, onClose] = React.useMemo(() => {
if (typeof closable === 'boolean') {
return [undefined, undefined];
}
return [closable?.afterClose, closable?.onClose];
}, [closable]);
const prefixCls = getPrefixCls('modal', customizePrefixCls);
const rootPrefixCls = getPrefixCls();
const [mergedMask, maskBlurClassName] = useMergedMask(modalMask, contextMask, prefixCls);
const handleCancel = e => {
if (confirmLoading) {
return;
}
onCancel?.(e);
onClose?.();
};
const handleOk = e => {
onOk?.(e);
onClose?.();
};
if (process.env.NODE_ENV !== 'production') {
const warning = devUseWarning('Modal');
[['bodyStyle', 'styles.body'], ['maskStyle', 'styles.mask'], ['destroyOnClose', 'destroyOnHidden']].forEach(([deprecatedName, newName]) => {
warning.deprecated(!(deprecatedName in props), deprecatedName, newName);
});
}
// Style
const rootCls = useCSSVarCls(prefixCls);
const [hashId, cssVarCls] = useStyle(prefixCls, rootCls);
const wrapClassNameExtended = clsx(wrapClassName, {
[`${prefixCls}-centered`]: centered ?? contextCentered,
[`${prefixCls}-wrap-rtl`]: direction === 'rtl'
});
const dialogFooter = footer !== null && !loading ? (/*#__PURE__*/React.createElement(Footer, {
...props,
okButtonProps: {
...contextOkButtonProps,
...okButtonProps
},
onOk: handleOk,
cancelButtonProps: {
...contextCancelButtonProps,
...cancelButtonProps
},
onCancel: handleCancel
})) : null;
const [rawClosable, mergedCloseIcon, closeBtnIsDisabled, ariaProps] = useClosable(pickClosable(props), pickClosable(modalContext), {
closable: true,
closeIcon: /*#__PURE__*/React.createElement(CloseOutlined, {
className: `${prefixCls}-close-icon`
}),
closeIconRender: icon => renderCloseIcon(prefixCls, icon)
});
const mergedClosable = rawClosable ? {
disabled: closeBtnIsDisabled,
closeIcon: mergedCloseIcon,
afterClose: closableAfterclose,
...ariaProps
} : false;
// ============================ modalRender ============================
const mergedModalRender = modalRender ? node => /*#__PURE__*/React.createElement("div", {
className: `${prefixCls}-render`
}, modalRender(node)) : undefined;
// ============================ Refs ============================
// Select `ant-modal-container` by `panelRef`
const panelClassName = `.${prefixCls}-${modalRender ? 'render' : 'container'}`;
const innerPanelRef = usePanelRef(panelClassName);
const mergedPanelRef = composeRef(panelRef, innerPanelRef);
// ============================ zIndex ============================
const [zIndex, contextZIndex] = useZIndex('Modal', customizeZIndex);
const mergedProps = {
...props,
width,
panelRef,
focusTriggerAfterClose,
mask: mergedMask,
zIndex
};
const [mergedClassNames, mergedStyles] = useMergeSemantic([contextClassNames, classNames, maskBlurClassName], [contextStyles, styles], {
props: mergedProps
});
// =========================== Width ============================
const [numWidth, responsiveWidth] = React.useMemo(() => {
if (width && typeof width === 'object') {
return [undefined, width];
}
return [width, undefined];
}, [width]);
const responsiveWidthVars = React.useMemo(() => {
const vars = {};
if (responsiveWidth) {
Object.keys(responsiveWidth).forEach(breakpoint => {
const breakpointWidth = responsiveWidth[breakpoint];
if (breakpointWidth !== undefined) {
vars[`--${prefixCls}-${breakpoint}-width`] = typeof breakpointWidth === 'number' ? `${breakpointWidth}px` : breakpointWidth;
}
});
}
return vars;
}, [prefixCls, responsiveWidth]);
// =========================== Render ===========================
return /*#__PURE__*/React.createElement(ContextIsolator, {
form: true,
space: true
}, /*#__PURE__*/React.createElement(zIndexContext.Provider, {
value: contextZIndex
}, /*#__PURE__*/React.createElement(Dialog, {
width: numWidth,
...restProps,
zIndex: zIndex,
getContainer: getContainer === undefined ? getContextPopupContainer : getContainer,
prefixCls: prefixCls,
rootClassName: clsx(hashId, rootClassName, cssVarCls, rootCls, mergedClassNames.root),
rootStyle: mergedStyles.root,
footer: dialogFooter,
visible: open,
mousePosition: customizeMousePosition ?? mousePosition,
onClose: handleCancel,
closable: mergedClosable,
closeIcon: mergedCloseIcon,
focusTriggerAfterClose: focusTriggerAfterClose,
transitionName: getTransitionName(rootPrefixCls, 'zoom', props.transitionName),
maskTransitionName: getTransitionName(rootPrefixCls, 'fade', props.maskTransitionName),
mask: mergedMask,
className: clsx(hashId, className, contextClassName),
style: {
...contextStyle,
...style,
...responsiveWidthVars
},
classNames: {
...mergedClassNames,
wrapper: clsx(mergedClassNames.wrapper, wrapClassNameExtended)
},
styles: mergedStyles,
panelRef: mergedPanelRef,
destroyOnHidden: destroyOnHidden ?? destroyOnClose,
modalRender: mergedModalRender
}, loading ? (/*#__PURE__*/React.createElement(Skeleton, {
active: true,
title: false,
paragraph: {
rows: 4
},
className: `${prefixCls}-body-skeleton`
})) : children)));
};
export default Modal;