1
This commit is contained in:
+248
@@ -0,0 +1,248 @@
|
||||
"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 { isNonNullable, isNumber, isPlainObject } from '../_util/is';
|
||||
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 useFocusable from '../drawer/useFocusable';
|
||||
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,
|
||||
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,
|
||||
maskClosable,
|
||||
// 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, mergeMaskClosable] = useMergedMask(modalMask, contextMask, prefixCls, maskClosable);
|
||||
// ========================== Focusable =========================
|
||||
const mergedFocusable = useFocusable(focusable, mergedMask, focusTriggerAfterClose);
|
||||
// ============================ Open ============================
|
||||
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'], ['autoFocusButton', 'focusable.autoFocusButton'], ['focusTriggerAfterClose', 'focusable.focusTriggerAfterClose'], ['maskClosable', 'mask.closable']].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: mergedFocusable.focusTriggerAfterClose,
|
||||
focusable: mergedFocusable,
|
||||
mask: mergedMask,
|
||||
maskClosable: mergeMaskClosable,
|
||||
zIndex
|
||||
};
|
||||
const [mergedClassNames, mergedStyles] = useMergeSemantic([contextClassNames, classNames, maskBlurClassName], [contextStyles, styles], {
|
||||
props: mergedProps
|
||||
});
|
||||
// =========================== Width ============================
|
||||
const [numWidth, responsiveWidth] = React.useMemo(() => {
|
||||
if (isPlainObject(width)) {
|
||||
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 (isNonNullable(breakpointWidth)) {
|
||||
vars[`--${prefixCls}-${breakpoint}-width`] = isNumber(breakpointWidth) ? `${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,
|
||||
transitionName: getTransitionName(rootPrefixCls, 'zoom', props.transitionName),
|
||||
maskTransitionName: getTransitionName(rootPrefixCls, 'fade', props.maskTransitionName),
|
||||
mask: mergedMask,
|
||||
maskClosable: mergeMaskClosable,
|
||||
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 ? (/*#__PURE__*/React.createElement(Skeleton, {
|
||||
active: true,
|
||||
title: false,
|
||||
paragraph: {
|
||||
rows: 4
|
||||
},
|
||||
className: `${prefixCls}-body-skeleton`
|
||||
})) : children)));
|
||||
};
|
||||
export default Modal;
|
||||
Reference in New Issue
Block a user