mirror of
https://github.com/ant-design/ant-design.git
synced 2026-02-09 02:49:18 +08:00
293 lines
9.2 KiB
TypeScript
293 lines
9.2 KiB
TypeScript
import * as React from 'react';
|
|
import CloseOutlined from '@ant-design/icons/CloseOutlined';
|
|
import Dialog from '@rc-component/dialog';
|
|
import { composeRef } from '@rc-component/util/lib/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 type { Breakpoint } from '../_util/responsiveObserver';
|
|
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 useFocusable from '../drawer/useFocusable';
|
|
import Skeleton from '../skeleton';
|
|
import { usePanelRef } from '../watermark/context';
|
|
import type { ModalClassNamesType, ModalProps, ModalStylesType, MousePosition } from './interface';
|
|
import { Footer, renderCloseIcon } from './shared';
|
|
import useStyle from './style';
|
|
|
|
let mousePosition: MousePosition;
|
|
|
|
// ref: https://github.com/ant-design/ant-design/issues/15795
|
|
const getClickPosition = (e: MouseEvent) => {
|
|
mousePosition = {
|
|
x: e.pageX,
|
|
y: e.pageY,
|
|
};
|
|
// 100ms 内发生过点击事件,则从点击位置动画展示
|
|
// 否则直接 zoom 展示
|
|
// 这样可以兼容非点击方式展开
|
|
setTimeout(() => {
|
|
mousePosition = null;
|
|
}, 100);
|
|
};
|
|
|
|
// 只有点击事件支持从鼠标位置动画展开
|
|
if (canUseDocElement()) {
|
|
document.documentElement.addEventListener('click', getClickPosition, true);
|
|
}
|
|
|
|
const Modal: React.FC<ModalProps> = (props) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
rootClassName,
|
|
open,
|
|
wrapClassName,
|
|
centered,
|
|
getContainer,
|
|
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,
|
|
|
|
// Focusable
|
|
focusTriggerAfterClose,
|
|
focusable,
|
|
|
|
...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();
|
|
|
|
// ============================ Mask ============================
|
|
const [mergedMask, maskBlurClassName] = useMergedMask(modalMask, contextMask, prefixCls);
|
|
|
|
// ========================== Focusable =========================
|
|
const mergedFocusable = useFocusable(focusable, mergedMask, focusTriggerAfterClose);
|
|
|
|
// ============================ Open ============================
|
|
const handleCancel = (e: React.MouseEvent<HTMLButtonElement>) => {
|
|
if (confirmLoading) {
|
|
return;
|
|
}
|
|
onCancel?.(e);
|
|
onClose?.();
|
|
};
|
|
|
|
const handleOk = (e: React.MouseEvent<HTMLButtonElement>) => {
|
|
onOk?.(e);
|
|
onClose?.();
|
|
};
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const warning = devUseWarning('Modal');
|
|
|
|
[
|
|
['bodyStyle', 'styles.body'],
|
|
['maskStyle', 'styles.mask'],
|
|
['destroyOnClose', 'destroyOnHidden'],
|
|
['autoFocusButton', 'focusable.autoFocusButton'],
|
|
['focusTriggerAfterClose', 'focusable.focusTriggerAfterClose'],
|
|
].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 ? (
|
|
<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: <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: React.ReactNode) => <div className={`${prefixCls}-render`}>{modalRender(node)}</div>
|
|
: undefined;
|
|
// ============================ Refs ============================
|
|
// Select `ant-modal-container` by `panelRef`
|
|
const panelClassName = `.${prefixCls}-${modalRender ? 'render' : 'container'}`;
|
|
const innerPanelRef = usePanelRef(panelClassName);
|
|
const mergedPanelRef = composeRef(panelRef, innerPanelRef) as React.Ref<HTMLDivElement>;
|
|
|
|
// ============================ zIndex ============================
|
|
const [zIndex, contextZIndex] = useZIndex('Modal', customizeZIndex);
|
|
|
|
const mergedProps: ModalProps = {
|
|
...props,
|
|
width,
|
|
panelRef,
|
|
focusTriggerAfterClose: mergedFocusable.focusTriggerAfterClose,
|
|
focusable: mergedFocusable,
|
|
mask: mergedMask,
|
|
zIndex,
|
|
};
|
|
|
|
const [mergedClassNames, mergedStyles] = useMergeSemantic<
|
|
ModalClassNamesType,
|
|
ModalStylesType,
|
|
ModalProps
|
|
>([contextClassNames, classNames, maskBlurClassName], [contextStyles, styles], {
|
|
props: mergedProps,
|
|
});
|
|
|
|
// =========================== Width ============================
|
|
const [numWidth, responsiveWidth] = React.useMemo<
|
|
[string | number | undefined, Partial<Record<Breakpoint, string | number>> | undefined]
|
|
>(() => {
|
|
if (width && typeof width === 'object') {
|
|
return [undefined, width];
|
|
}
|
|
return [width, undefined];
|
|
}, [width]);
|
|
|
|
const responsiveWidthVars = React.useMemo(() => {
|
|
const vars: Record<string, string> = {};
|
|
if (responsiveWidth) {
|
|
Object.keys(responsiveWidth).forEach((breakpoint) => {
|
|
const breakpointWidth = responsiveWidth[breakpoint as Breakpoint];
|
|
if (breakpointWidth !== undefined) {
|
|
vars[`--${prefixCls}-${breakpoint}-width`] =
|
|
typeof breakpointWidth === 'number' ? `${breakpointWidth}px` : breakpointWidth;
|
|
}
|
|
});
|
|
}
|
|
return vars;
|
|
}, [prefixCls, responsiveWidth]);
|
|
|
|
// =========================== Render ===========================
|
|
return (
|
|
<ContextIsolator form space>
|
|
<ZIndexContext.Provider value={contextZIndex}>
|
|
<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 as any}
|
|
closable={mergedClosable}
|
|
closeIcon={mergedCloseIcon}
|
|
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}
|
|
// Focusable
|
|
focusTriggerAfterClose={mergedFocusable.focusTriggerAfterClose}
|
|
focusTrap={mergedFocusable.trap}
|
|
>
|
|
{loading ? (
|
|
<Skeleton
|
|
active
|
|
title={false}
|
|
paragraph={{ rows: 4 }}
|
|
className={`${prefixCls}-body-skeleton`}
|
|
/>
|
|
) : (
|
|
children
|
|
)}
|
|
</Dialog>
|
|
</ZIndexContext.Provider>
|
|
</ContextIsolator>
|
|
);
|
|
};
|
|
|
|
export default Modal;
|