UNPKG

plasod

Version:

An enterprise-class UI design language and React components implementation

182 lines (181 loc) 7.62 kB
"use client"; var __rest = this && this.__rest || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; import * as React from 'react'; import CloseOutlined from "@ant-design/icons/es/icons/CloseOutlined"; import classNames from 'classnames'; import Dialog from 'rc-dialog'; import { useRef, useState } from 'react'; import { debounce } from 'throttle-debounce'; import useClosable from '../_util/hooks/useClosable'; import { useZIndex } from '../_util/hooks/useZIndex'; 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 useCSSVarCls from '../config-provider/hooks/useCSSVarCls'; import { NoFormStyle } from '../form/context'; import { NoCompactStyle } from '../space/Compact'; 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 => { var _a; const { getPopupContainer: getContextPopupContainer, getPrefixCls, direction, modal } = React.useContext(ConfigContext); const handleCancel = e => { const { onCancel } = props; onCancel === null || onCancel === void 0 ? void 0 : onCancel(e); }; const handleOk = e => { const { onOk } = props; onOk === null || onOk === void 0 ? void 0 : onOk(e); }; if (process.env.NODE_ENV !== 'production') { const warning = devUseWarning('Modal'); [['visible', 'open'], ['bodyStyle', 'styles.body'], ['maskStyle', 'styles.mask']].forEach(_ref => { let [deprecatedName, newName] = _ref; warning.deprecated(!(deprecatedName in props), deprecatedName, newName); }); } const { prefixCls: customizePrefixCls, className, rootClassName, open, wrapClassName, centered = !props.style, getContainer, closeIcon, closable, focusTriggerAfterClose = true, style, // Deprecated visible, autoContainerHeight, width = 'small', footer, maskClosable = false, classNames: modalClassNames, styles: modalStyles } = props, restProps = __rest(props, ["prefixCls", "className", "rootClassName", "open", "wrapClassName", "centered", "getContainer", "closeIcon", "closable", "focusTriggerAfterClose", "style", "visible", "autoContainerHeight", "width", "footer", "maskClosable", "classNames", "styles"]); const prefixCls = getPrefixCls('modal', customizePrefixCls); const rootPrefixCls = getPrefixCls(); // caculate container overflow to set centered const dialogRef = useRef(null); const [caculateContainerOverflow, setCaculateContainerOverflow] = useState(false); // @ts-ignore // TODO const debouncedCaculateFn = debounce(360, () => { var _a; const contentDOM = dialogRef.current; const containerHeight = ((_a = contentDOM === null || contentDOM === void 0 ? void 0 : contentDOM.getElementsByClassName(`${prefixCls}-body`)[0]) === null || _a === void 0 ? void 0 : _a.scrollHeight) || 200; const windowHeight = window.innerHeight; setCaculateContainerOverflow(containerHeight > windowHeight - (20 + 24 + 32 + 20)); }); // Style const rootCls = useCSSVarCls(prefixCls); const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls, rootCls); const wrapClassNameExtended = classNames(wrapClassName, { [`${prefixCls}-centered`]: caculateContainerOverflow || centered, [`${prefixCls}-wrap-rtl`]: direction === 'rtl' }); const dialogFooter = footer !== null && ( /*#__PURE__*/React.createElement(Footer, Object.assign({}, props, { onOk: handleOk, onCancel: handleCancel }))); const widths = { small: 480, middle: 720, large: 860 }; let _width = widths.small; if (['small', 'middle', 'large'].includes(width)) { _width = widths[width]; } else { _width = width; } const [mergedClosable, mergedCloseIcon] = useClosable({ closable, closeIcon: typeof closeIcon !== 'undefined' ? closeIcon : modal === null || modal === void 0 ? void 0 : modal.closeIcon, customCloseIconRender: icon => renderCloseIcon(prefixCls, icon), defaultCloseIcon: /*#__PURE__*/React.createElement(CloseOutlined, { className: `${prefixCls}-close-icon` }), defaultClosable: true }); // ============================ Refs ============================ // Select `ant-modal-content` by `panelRef` const panelRef = usePanelRef(`.${prefixCls}-content`); // ============================ zIndex ============================ const [zIndex, contextZIndex] = useZIndex('Modal', restProps.zIndex); // =========================== Render =========================== return wrapCSSVar( /*#__PURE__*/React.createElement(NoCompactStyle, null, /*#__PURE__*/React.createElement(NoFormStyle, { status: true, override: true }, /*#__PURE__*/React.createElement(zIndexContext.Provider, { value: contextZIndex }, /*#__PURE__*/React.createElement(Dialog, Object.assign({ modalRender: node => /*#__PURE__*/React.cloneElement(node, { ref: dialogRef }), width: _width, maskClosable: maskClosable }, restProps, { zIndex: zIndex, getContainer: getContainer === undefined ? getContextPopupContainer : getContainer, prefixCls: prefixCls, rootClassName: classNames(hashId, rootClassName, cssVarCls, rootCls), footer: dialogFooter, visible: open !== null && open !== void 0 ? open : visible, mousePosition: (_a = restProps.mousePosition) !== null && _a !== void 0 ? _a : mousePosition, onClose: handleCancel, closable: mergedClosable, closeIcon: mergedCloseIcon, focusTriggerAfterClose: focusTriggerAfterClose, transitionName: getTransitionName(rootPrefixCls, 'zoom', props.transitionName), maskTransitionName: getTransitionName(rootPrefixCls, 'fade', props.maskTransitionName), className: classNames(hashId, className, modal === null || modal === void 0 ? void 0 : modal.className, autoContainerHeight ? `${prefixCls}-autoHeight` : null), style: Object.assign(Object.assign({}, modal === null || modal === void 0 ? void 0 : modal.style), style), classNames: Object.assign(Object.assign(Object.assign({}, modal === null || modal === void 0 ? void 0 : modal.classNames), modalClassNames), { wrapper: classNames(wrapClassNameExtended, modalClassNames === null || modalClassNames === void 0 ? void 0 : modalClassNames.wrapper) }), styles: Object.assign(Object.assign({}, modal === null || modal === void 0 ? void 0 : modal.styles), modalStyles), panelRef: panelRef })))))); }; export default Modal;