antd
Version:
An enterprise-class UI design language and React components implementation
106 lines • 4.82 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
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 classNames from 'classnames';
import Dialog from 'rc-dialog';
import * as React from 'react';
import { ConfigContext } from '../config-provider';
import { NoFormStyle } from '../form/context';
import { getTransitionName } from '../_util/motion';
import { canUseDocElement } from '../_util/styleChecker';
import warning from '../_util/warning';
import { renderCloseIcon, renderFooter } from './PurePanel';
import useStyle from './style';
var mousePosition;
// ref: https://github.com/ant-design/ant-design/issues/15795
var getClickPosition = function getClickPosition(e) {
mousePosition = {
x: e.pageX,
y: e.pageY
};
// 100ms 内发生过点击事件,则从点击位置动画展示
// 否则直接 zoom 展示
// 这样可以兼容非点击方式展开
setTimeout(function () {
mousePosition = null;
}, 100);
};
// 只有点击事件支持从鼠标位置动画展开
if (canUseDocElement()) {
document.documentElement.addEventListener('click', getClickPosition, true);
}
var Modal = function Modal(props) {
var _classNames;
var _a;
var _React$useContext = React.useContext(ConfigContext),
getContextPopupContainer = _React$useContext.getPopupContainer,
getPrefixCls = _React$useContext.getPrefixCls,
direction = _React$useContext.direction;
var handleCancel = function handleCancel(e) {
var onCancel = props.onCancel;
onCancel === null || onCancel === void 0 ? void 0 : onCancel(e);
};
var handleOk = function handleOk(e) {
var onOk = props.onOk;
onOk === null || onOk === void 0 ? void 0 : onOk(e);
};
process.env.NODE_ENV !== "production" ? warning(!('visible' in props), 'Modal', "`visible` will be removed in next major version, please use `open` instead.") : void 0;
var customizePrefixCls = props.prefixCls,
className = props.className,
open = props.open,
wrapClassName = props.wrapClassName,
centered = props.centered,
getContainer = props.getContainer,
closeIcon = props.closeIcon,
_props$focusTriggerAf = props.focusTriggerAfterClose,
focusTriggerAfterClose = _props$focusTriggerAf === void 0 ? true : _props$focusTriggerAf,
visible = props.visible,
_props$width = props.width,
width = _props$width === void 0 ? 520 : _props$width,
restProps = __rest(props, ["prefixCls", "className", "open", "wrapClassName", "centered", "getContainer", "closeIcon", "focusTriggerAfterClose", "visible", "width"]);
var prefixCls = getPrefixCls('modal', customizePrefixCls);
var rootPrefixCls = getPrefixCls();
// Style
var _useStyle = useStyle(prefixCls),
_useStyle2 = _slicedToArray(_useStyle, 2),
wrapSSR = _useStyle2[0],
hashId = _useStyle2[1];
var wrapClassNameExtended = classNames(wrapClassName, (_classNames = {}, _defineProperty(_classNames, prefixCls + "-centered", !!centered), _defineProperty(_classNames, prefixCls + "-wrap-rtl", direction === 'rtl'), _classNames));
if (process.env.NODE_ENV !== 'production') {
process.env.NODE_ENV !== "production" ? warning(!('visible' in props), 'Modal', '`visible` is deprecated, please use `open` instead.') : void 0;
}
return wrapSSR( /*#__PURE__*/React.createElement(NoFormStyle, {
status: true,
override: true
}, /*#__PURE__*/React.createElement(Dialog, _extends({
width: width
}, restProps, {
getContainer: getContainer === undefined ? getContextPopupContainer : getContainer,
prefixCls: prefixCls,
rootClassName: hashId,
wrapClassName: wrapClassNameExtended,
footer: renderFooter(_extends(_extends({}, props), {
onOk: handleOk,
onCancel: handleCancel
})),
visible: open !== null && open !== void 0 ? open : visible,
mousePosition: (_a = restProps.mousePosition) !== null && _a !== void 0 ? _a : mousePosition,
onClose: handleCancel,
closeIcon: renderCloseIcon(prefixCls, closeIcon),
focusTriggerAfterClose: focusTriggerAfterClose,
transitionName: getTransitionName(rootPrefixCls, 'zoom', props.transitionName),
maskTransitionName: getTransitionName(rootPrefixCls, 'fade', props.maskTransitionName),
className: classNames(hashId, className)
}))));
};
export default Modal;