Latest updates from IceHrmPro
This commit is contained in:
176
web/node_modules/antd/es/modal/Modal.js
generated
vendored
Normal file
176
web/node_modules/antd/es/modal/Modal.js
generated
vendored
Normal file
@@ -0,0 +1,176 @@
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
|
||||
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
||||
|
||||
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
||||
|
||||
function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
||||
|
||||
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
||||
|
||||
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
||||
|
||||
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
||||
|
||||
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
||||
|
||||
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 Dialog from 'rc-dialog';
|
||||
import classNames from 'classnames';
|
||||
import addEventListener from "rc-util/es/Dom/addEventListener";
|
||||
import CloseOutlined from '@ant-design/icons/CloseOutlined';
|
||||
import useModal from './useModal';
|
||||
import { getConfirmLocale } from './locale';
|
||||
import Button from '../button';
|
||||
import LocaleReceiver from '../locale-provider/LocaleReceiver';
|
||||
import { ConfigConsumer } from '../config-provider';
|
||||
var mousePosition;
|
||||
export var destroyFns = []; // 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 () {
|
||||
return mousePosition = null;
|
||||
}, 100);
|
||||
}; // 只有点击事件支持从鼠标位置动画展开
|
||||
|
||||
|
||||
if (typeof window !== 'undefined' && window.document && window.document.documentElement) {
|
||||
addEventListener(document.documentElement, 'click', getClickPosition);
|
||||
}
|
||||
|
||||
var Modal = /*#__PURE__*/function (_React$Component) {
|
||||
_inherits(Modal, _React$Component);
|
||||
|
||||
var _super = _createSuper(Modal);
|
||||
|
||||
function Modal() {
|
||||
var _this;
|
||||
|
||||
_classCallCheck(this, Modal);
|
||||
|
||||
_this = _super.apply(this, arguments);
|
||||
|
||||
_this.handleCancel = function (e) {
|
||||
var onCancel = _this.props.onCancel;
|
||||
|
||||
if (onCancel) {
|
||||
onCancel(e);
|
||||
}
|
||||
};
|
||||
|
||||
_this.handleOk = function (e) {
|
||||
var onOk = _this.props.onOk;
|
||||
|
||||
if (onOk) {
|
||||
onOk(e);
|
||||
}
|
||||
};
|
||||
|
||||
_this.renderFooter = function (locale) {
|
||||
var _this$props = _this.props,
|
||||
okText = _this$props.okText,
|
||||
okType = _this$props.okType,
|
||||
cancelText = _this$props.cancelText,
|
||||
confirmLoading = _this$props.confirmLoading;
|
||||
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Button, _extends({
|
||||
onClick: _this.handleCancel
|
||||
}, _this.props.cancelButtonProps), cancelText || locale.cancelText), /*#__PURE__*/React.createElement(Button, _extends({
|
||||
type: okType,
|
||||
loading: confirmLoading,
|
||||
onClick: _this.handleOk
|
||||
}, _this.props.okButtonProps), okText || locale.okText));
|
||||
};
|
||||
|
||||
_this.renderModal = function (_ref) {
|
||||
var _classNames;
|
||||
|
||||
var getContextPopupContainer = _ref.getPopupContainer,
|
||||
getPrefixCls = _ref.getPrefixCls,
|
||||
direction = _ref.direction;
|
||||
|
||||
var _a = _this.props,
|
||||
customizePrefixCls = _a.prefixCls,
|
||||
footer = _a.footer,
|
||||
visible = _a.visible,
|
||||
wrapClassName = _a.wrapClassName,
|
||||
centered = _a.centered,
|
||||
getContainer = _a.getContainer,
|
||||
closeIcon = _a.closeIcon,
|
||||
restProps = __rest(_a, ["prefixCls", "footer", "visible", "wrapClassName", "centered", "getContainer", "closeIcon"]);
|
||||
|
||||
var prefixCls = getPrefixCls('modal', customizePrefixCls);
|
||||
var defaultFooter = /*#__PURE__*/React.createElement(LocaleReceiver, {
|
||||
componentName: "Modal",
|
||||
defaultLocale: getConfirmLocale()
|
||||
}, _this.renderFooter);
|
||||
var closeIconToRender = /*#__PURE__*/React.createElement("span", {
|
||||
className: "".concat(prefixCls, "-close-x")
|
||||
}, closeIcon || /*#__PURE__*/React.createElement(CloseOutlined, {
|
||||
className: "".concat(prefixCls, "-close-icon")
|
||||
}));
|
||||
var wrapClassNameExtended = classNames(wrapClassName, (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-centered"), !!centered), _defineProperty(_classNames, "".concat(prefixCls, "-wrap-rtl"), direction === 'rtl'), _classNames));
|
||||
return /*#__PURE__*/React.createElement(Dialog, _extends({}, restProps, {
|
||||
getContainer: getContainer === undefined ? getContextPopupContainer : getContainer,
|
||||
prefixCls: prefixCls,
|
||||
wrapClassName: wrapClassNameExtended,
|
||||
footer: footer === undefined ? defaultFooter : footer,
|
||||
visible: visible,
|
||||
mousePosition: mousePosition,
|
||||
onClose: _this.handleCancel,
|
||||
closeIcon: closeIconToRender
|
||||
}));
|
||||
};
|
||||
|
||||
return _this;
|
||||
}
|
||||
|
||||
_createClass(Modal, [{
|
||||
key: "render",
|
||||
value: function render() {
|
||||
return /*#__PURE__*/React.createElement(ConfigConsumer, null, this.renderModal);
|
||||
}
|
||||
}]);
|
||||
|
||||
return Modal;
|
||||
}(React.Component);
|
||||
|
||||
export { Modal as default };
|
||||
Modal.useModal = useModal;
|
||||
Modal.defaultProps = {
|
||||
width: 520,
|
||||
transitionName: 'zoom',
|
||||
maskTransitionName: 'fade',
|
||||
confirmLoading: false,
|
||||
visible: false,
|
||||
okType: 'primary'
|
||||
};
|
||||
Reference in New Issue
Block a user