You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
805 lines
26 KiB
805 lines
26 KiB
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
import _assertThisInitialized from "@babel/runtime/helpers/esm/assertThisInitialized";
|
|
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
import _createSuper from "@babel/runtime/helpers/esm/createSuper";
|
|
import * as React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import raf from "rc-util/es/raf";
|
|
import contains from "rc-util/es/Dom/contains";
|
|
import findDOMNode from "rc-util/es/Dom/findDOMNode";
|
|
import { composeRef, supportRef } from "rc-util/es/ref";
|
|
import addEventListener from "rc-util/es/Dom/addEventListener";
|
|
import Portal from "rc-util/es/Portal";
|
|
import classNames from 'classnames';
|
|
import { getAlignFromPlacement, getAlignPopupClassName } from './utils/alignUtil';
|
|
import Popup from './Popup';
|
|
import TriggerContext from './context';
|
|
|
|
function noop() {}
|
|
|
|
function returnEmptyString() {
|
|
return '';
|
|
}
|
|
|
|
function returnDocument(element) {
|
|
if (element) {
|
|
return element.ownerDocument;
|
|
}
|
|
|
|
return window.document;
|
|
}
|
|
|
|
var ALL_HANDLERS = ['onClick', 'onMouseDown', 'onTouchStart', 'onMouseEnter', 'onMouseLeave', 'onFocus', 'onBlur', 'onContextMenu'];
|
|
/**
|
|
* Internal usage. Do not use in your code since this will be removed.
|
|
*/
|
|
|
|
export function generateTrigger(PortalComponent) {
|
|
var Trigger = /*#__PURE__*/function (_React$Component) {
|
|
_inherits(Trigger, _React$Component);
|
|
|
|
var _super = _createSuper(Trigger);
|
|
|
|
function Trigger(props) {
|
|
var _this;
|
|
|
|
_classCallCheck(this, Trigger);
|
|
|
|
_this = _super.call(this, props);
|
|
_this.popupRef = /*#__PURE__*/React.createRef();
|
|
_this.triggerRef = /*#__PURE__*/React.createRef();
|
|
_this.attachId = void 0;
|
|
_this.clickOutsideHandler = void 0;
|
|
_this.touchOutsideHandler = void 0;
|
|
_this.contextMenuOutsideHandler1 = void 0;
|
|
_this.contextMenuOutsideHandler2 = void 0;
|
|
_this.mouseDownTimeout = void 0;
|
|
_this.focusTime = void 0;
|
|
_this.preClickTime = void 0;
|
|
_this.preTouchTime = void 0;
|
|
_this.delayTimer = void 0;
|
|
_this.hasPopupMouseDown = void 0;
|
|
|
|
_this.onMouseEnter = function (e) {
|
|
var mouseEnterDelay = _this.props.mouseEnterDelay;
|
|
|
|
_this.fireEvents('onMouseEnter', e);
|
|
|
|
_this.delaySetPopupVisible(true, mouseEnterDelay, mouseEnterDelay ? null : e);
|
|
};
|
|
|
|
_this.onMouseMove = function (e) {
|
|
_this.fireEvents('onMouseMove', e);
|
|
|
|
_this.setPoint(e);
|
|
};
|
|
|
|
_this.onMouseLeave = function (e) {
|
|
_this.fireEvents('onMouseLeave', e);
|
|
|
|
_this.delaySetPopupVisible(false, _this.props.mouseLeaveDelay);
|
|
};
|
|
|
|
_this.onPopupMouseEnter = function () {
|
|
_this.clearDelayTimer();
|
|
};
|
|
|
|
_this.onPopupMouseLeave = function (e) {
|
|
var _this$popupRef$curren;
|
|
|
|
// https://github.com/react-component/trigger/pull/13
|
|
// react bug?
|
|
if (e.relatedTarget && !e.relatedTarget.setTimeout && contains((_this$popupRef$curren = _this.popupRef.current) === null || _this$popupRef$curren === void 0 ? void 0 : _this$popupRef$curren.getElement(), e.relatedTarget)) {
|
|
return;
|
|
}
|
|
|
|
_this.delaySetPopupVisible(false, _this.props.mouseLeaveDelay);
|
|
};
|
|
|
|
_this.onFocus = function (e) {
|
|
_this.fireEvents('onFocus', e); // incase focusin and focusout
|
|
|
|
|
|
_this.clearDelayTimer();
|
|
|
|
if (_this.isFocusToShow()) {
|
|
_this.focusTime = Date.now();
|
|
|
|
_this.delaySetPopupVisible(true, _this.props.focusDelay);
|
|
}
|
|
};
|
|
|
|
_this.onMouseDown = function (e) {
|
|
_this.fireEvents('onMouseDown', e);
|
|
|
|
_this.preClickTime = Date.now();
|
|
};
|
|
|
|
_this.onTouchStart = function (e) {
|
|
_this.fireEvents('onTouchStart', e);
|
|
|
|
_this.preTouchTime = Date.now();
|
|
};
|
|
|
|
_this.onBlur = function (e) {
|
|
_this.fireEvents('onBlur', e);
|
|
|
|
_this.clearDelayTimer();
|
|
|
|
if (_this.isBlurToHide()) {
|
|
_this.delaySetPopupVisible(false, _this.props.blurDelay);
|
|
}
|
|
};
|
|
|
|
_this.onContextMenu = function (e) {
|
|
e.preventDefault();
|
|
|
|
_this.fireEvents('onContextMenu', e);
|
|
|
|
_this.setPopupVisible(true, e);
|
|
};
|
|
|
|
_this.onContextMenuClose = function () {
|
|
if (_this.isContextMenuToShow()) {
|
|
_this.close();
|
|
}
|
|
};
|
|
|
|
_this.onClick = function (event) {
|
|
_this.fireEvents('onClick', event); // focus will trigger click
|
|
|
|
|
|
if (_this.focusTime) {
|
|
var preTime;
|
|
|
|
if (_this.preClickTime && _this.preTouchTime) {
|
|
preTime = Math.min(_this.preClickTime, _this.preTouchTime);
|
|
} else if (_this.preClickTime) {
|
|
preTime = _this.preClickTime;
|
|
} else if (_this.preTouchTime) {
|
|
preTime = _this.preTouchTime;
|
|
}
|
|
|
|
if (Math.abs(preTime - _this.focusTime) < 20) {
|
|
return;
|
|
}
|
|
|
|
_this.focusTime = 0;
|
|
}
|
|
|
|
_this.preClickTime = 0;
|
|
_this.preTouchTime = 0; // Only prevent default when all the action is click.
|
|
// https://github.com/ant-design/ant-design/issues/17043
|
|
// https://github.com/ant-design/ant-design/issues/17291
|
|
|
|
if (_this.isClickToShow() && (_this.isClickToHide() || _this.isBlurToHide()) && event && event.preventDefault) {
|
|
event.preventDefault();
|
|
}
|
|
|
|
var nextVisible = !_this.state.popupVisible;
|
|
|
|
if (_this.isClickToHide() && !nextVisible || nextVisible && _this.isClickToShow()) {
|
|
_this.setPopupVisible(!_this.state.popupVisible, event);
|
|
}
|
|
};
|
|
|
|
_this.onPopupMouseDown = function () {
|
|
_this.hasPopupMouseDown = true;
|
|
clearTimeout(_this.mouseDownTimeout);
|
|
_this.mouseDownTimeout = window.setTimeout(function () {
|
|
_this.hasPopupMouseDown = false;
|
|
}, 0);
|
|
|
|
if (_this.context) {
|
|
var _this$context;
|
|
|
|
(_this$context = _this.context).onPopupMouseDown.apply(_this$context, arguments);
|
|
}
|
|
};
|
|
|
|
_this.onDocumentClick = function (event) {
|
|
if (_this.props.mask && !_this.props.maskClosable) {
|
|
return;
|
|
}
|
|
|
|
var target = event.target;
|
|
|
|
var root = _this.getRootDomNode();
|
|
|
|
var popupNode = _this.getPopupDomNode();
|
|
|
|
if ( // mousedown on the target should also close popup when action is contextMenu.
|
|
// https://github.com/ant-design/ant-design/issues/29853
|
|
(!contains(root, target) || _this.isContextMenuOnly()) && !contains(popupNode, target) && !_this.hasPopupMouseDown) {
|
|
_this.close();
|
|
}
|
|
};
|
|
|
|
_this.getRootDomNode = function () {
|
|
var getTriggerDOMNode = _this.props.getTriggerDOMNode;
|
|
|
|
if (getTriggerDOMNode) {
|
|
return getTriggerDOMNode(_this.triggerRef.current);
|
|
}
|
|
|
|
try {
|
|
var domNode = findDOMNode(_this.triggerRef.current);
|
|
|
|
if (domNode) {
|
|
return domNode;
|
|
}
|
|
} catch (err) {// Do nothing
|
|
}
|
|
|
|
return ReactDOM.findDOMNode(_assertThisInitialized(_this));
|
|
};
|
|
|
|
_this.getPopupClassNameFromAlign = function (align) {
|
|
var className = [];
|
|
var _this$props = _this.props,
|
|
popupPlacement = _this$props.popupPlacement,
|
|
builtinPlacements = _this$props.builtinPlacements,
|
|
prefixCls = _this$props.prefixCls,
|
|
alignPoint = _this$props.alignPoint,
|
|
getPopupClassNameFromAlign = _this$props.getPopupClassNameFromAlign;
|
|
|
|
if (popupPlacement && builtinPlacements) {
|
|
className.push(getAlignPopupClassName(builtinPlacements, prefixCls, align, alignPoint));
|
|
}
|
|
|
|
if (getPopupClassNameFromAlign) {
|
|
className.push(getPopupClassNameFromAlign(align));
|
|
}
|
|
|
|
return className.join(' ');
|
|
};
|
|
|
|
_this.getComponent = function () {
|
|
var _this$props2 = _this.props,
|
|
prefixCls = _this$props2.prefixCls,
|
|
destroyPopupOnHide = _this$props2.destroyPopupOnHide,
|
|
popupClassName = _this$props2.popupClassName,
|
|
onPopupAlign = _this$props2.onPopupAlign,
|
|
popupMotion = _this$props2.popupMotion,
|
|
popupAnimation = _this$props2.popupAnimation,
|
|
popupTransitionName = _this$props2.popupTransitionName,
|
|
popupStyle = _this$props2.popupStyle,
|
|
mask = _this$props2.mask,
|
|
maskAnimation = _this$props2.maskAnimation,
|
|
maskTransitionName = _this$props2.maskTransitionName,
|
|
maskMotion = _this$props2.maskMotion,
|
|
zIndex = _this$props2.zIndex,
|
|
popup = _this$props2.popup,
|
|
stretch = _this$props2.stretch,
|
|
alignPoint = _this$props2.alignPoint,
|
|
mobile = _this$props2.mobile,
|
|
forceRender = _this$props2.forceRender;
|
|
var _this$state = _this.state,
|
|
popupVisible = _this$state.popupVisible,
|
|
point = _this$state.point;
|
|
|
|
var align = _this.getPopupAlign();
|
|
|
|
var mouseProps = {};
|
|
|
|
if (_this.isMouseEnterToShow()) {
|
|
mouseProps.onMouseEnter = _this.onPopupMouseEnter;
|
|
}
|
|
|
|
if (_this.isMouseLeaveToHide()) {
|
|
mouseProps.onMouseLeave = _this.onPopupMouseLeave;
|
|
}
|
|
|
|
mouseProps.onMouseDown = _this.onPopupMouseDown;
|
|
mouseProps.onTouchStart = _this.onPopupMouseDown;
|
|
return /*#__PURE__*/React.createElement(Popup, _extends({
|
|
prefixCls: prefixCls,
|
|
destroyPopupOnHide: destroyPopupOnHide,
|
|
visible: popupVisible,
|
|
point: alignPoint && point,
|
|
className: popupClassName,
|
|
align: align,
|
|
onAlign: onPopupAlign,
|
|
animation: popupAnimation,
|
|
getClassNameFromAlign: _this.getPopupClassNameFromAlign
|
|
}, mouseProps, {
|
|
stretch: stretch,
|
|
getRootDomNode: _this.getRootDomNode,
|
|
style: popupStyle,
|
|
mask: mask,
|
|
zIndex: zIndex,
|
|
transitionName: popupTransitionName,
|
|
maskAnimation: maskAnimation,
|
|
maskTransitionName: maskTransitionName,
|
|
maskMotion: maskMotion,
|
|
ref: _this.popupRef,
|
|
motion: popupMotion,
|
|
mobile: mobile,
|
|
forceRender: forceRender
|
|
}), typeof popup === 'function' ? popup() : popup);
|
|
};
|
|
|
|
_this.attachParent = function (popupContainer) {
|
|
raf.cancel(_this.attachId);
|
|
var _this$props3 = _this.props,
|
|
getPopupContainer = _this$props3.getPopupContainer,
|
|
getDocument = _this$props3.getDocument;
|
|
|
|
var domNode = _this.getRootDomNode();
|
|
|
|
var mountNode;
|
|
|
|
if (!getPopupContainer) {
|
|
mountNode = getDocument(_this.getRootDomNode()).body;
|
|
} else if (domNode || getPopupContainer.length === 0) {
|
|
// Compatible for legacy getPopupContainer with domNode argument.
|
|
// If no need `domNode` argument, will call directly.
|
|
// https://codesandbox.io/s/eloquent-mclean-ss93m?file=/src/App.js
|
|
mountNode = getPopupContainer(domNode);
|
|
}
|
|
|
|
if (mountNode) {
|
|
mountNode.appendChild(popupContainer);
|
|
} else {
|
|
// Retry after frame render in case parent not ready
|
|
_this.attachId = raf(function () {
|
|
_this.attachParent(popupContainer);
|
|
});
|
|
}
|
|
};
|
|
|
|
_this.getContainer = function () {
|
|
var getDocument = _this.props.getDocument;
|
|
var popupContainer = getDocument(_this.getRootDomNode()).createElement('div'); // Make sure default popup container will never cause scrollbar appearing
|
|
// https://github.com/react-component/trigger/issues/41
|
|
|
|
popupContainer.style.position = 'absolute';
|
|
popupContainer.style.top = '0';
|
|
popupContainer.style.left = '0';
|
|
popupContainer.style.width = '100%';
|
|
|
|
_this.attachParent(popupContainer);
|
|
|
|
return popupContainer;
|
|
};
|
|
|
|
_this.setPoint = function (point) {
|
|
var alignPoint = _this.props.alignPoint;
|
|
if (!alignPoint || !point) return;
|
|
|
|
_this.setState({
|
|
point: {
|
|
pageX: point.pageX,
|
|
pageY: point.pageY
|
|
}
|
|
});
|
|
};
|
|
|
|
_this.handlePortalUpdate = function () {
|
|
if (_this.state.prevPopupVisible !== _this.state.popupVisible) {
|
|
_this.props.afterPopupVisibleChange(_this.state.popupVisible);
|
|
}
|
|
};
|
|
|
|
_this.triggerContextValue = {
|
|
onPopupMouseDown: _this.onPopupMouseDown
|
|
};
|
|
|
|
var _popupVisible;
|
|
|
|
if ('popupVisible' in props) {
|
|
_popupVisible = !!props.popupVisible;
|
|
} else {
|
|
_popupVisible = !!props.defaultPopupVisible;
|
|
}
|
|
|
|
_this.state = {
|
|
prevPopupVisible: _popupVisible,
|
|
popupVisible: _popupVisible
|
|
};
|
|
ALL_HANDLERS.forEach(function (h) {
|
|
_this["fire".concat(h)] = function (e) {
|
|
_this.fireEvents(h, e);
|
|
};
|
|
});
|
|
return _this;
|
|
}
|
|
|
|
_createClass(Trigger, [{
|
|
key: "componentDidMount",
|
|
value: function componentDidMount() {
|
|
this.componentDidUpdate();
|
|
}
|
|
}, {
|
|
key: "componentDidUpdate",
|
|
value: function componentDidUpdate() {
|
|
var props = this.props;
|
|
var state = this.state; // We must listen to `mousedown` or `touchstart`, edge case:
|
|
// https://github.com/ant-design/ant-design/issues/5804
|
|
// https://github.com/react-component/calendar/issues/250
|
|
// https://github.com/react-component/trigger/issues/50
|
|
|
|
if (state.popupVisible) {
|
|
var currentDocument;
|
|
|
|
if (!this.clickOutsideHandler && (this.isClickToHide() || this.isContextMenuToShow())) {
|
|
currentDocument = props.getDocument(this.getRootDomNode());
|
|
this.clickOutsideHandler = addEventListener(currentDocument, 'mousedown', this.onDocumentClick);
|
|
} // always hide on mobile
|
|
|
|
|
|
if (!this.touchOutsideHandler) {
|
|
currentDocument = currentDocument || props.getDocument(this.getRootDomNode());
|
|
this.touchOutsideHandler = addEventListener(currentDocument, 'touchstart', this.onDocumentClick);
|
|
} // close popup when trigger type contains 'onContextMenu' and document is scrolling.
|
|
|
|
|
|
if (!this.contextMenuOutsideHandler1 && this.isContextMenuToShow()) {
|
|
currentDocument = currentDocument || props.getDocument(this.getRootDomNode());
|
|
this.contextMenuOutsideHandler1 = addEventListener(currentDocument, 'scroll', this.onContextMenuClose);
|
|
} // close popup when trigger type contains 'onContextMenu' and window is blur.
|
|
|
|
|
|
if (!this.contextMenuOutsideHandler2 && this.isContextMenuToShow()) {
|
|
this.contextMenuOutsideHandler2 = addEventListener(window, 'blur', this.onContextMenuClose);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
this.clearOutsideHandler();
|
|
}
|
|
}, {
|
|
key: "componentWillUnmount",
|
|
value: function componentWillUnmount() {
|
|
this.clearDelayTimer();
|
|
this.clearOutsideHandler();
|
|
clearTimeout(this.mouseDownTimeout);
|
|
raf.cancel(this.attachId);
|
|
}
|
|
}, {
|
|
key: "getPopupDomNode",
|
|
value: function getPopupDomNode() {
|
|
var _this$popupRef$curren2;
|
|
|
|
// for test
|
|
return ((_this$popupRef$curren2 = this.popupRef.current) === null || _this$popupRef$curren2 === void 0 ? void 0 : _this$popupRef$curren2.getElement()) || null;
|
|
}
|
|
}, {
|
|
key: "getPopupAlign",
|
|
value: function getPopupAlign() {
|
|
var props = this.props;
|
|
var popupPlacement = props.popupPlacement,
|
|
popupAlign = props.popupAlign,
|
|
builtinPlacements = props.builtinPlacements;
|
|
|
|
if (popupPlacement && builtinPlacements) {
|
|
return getAlignFromPlacement(builtinPlacements, popupPlacement, popupAlign);
|
|
}
|
|
|
|
return popupAlign;
|
|
}
|
|
}, {
|
|
key: "setPopupVisible",
|
|
value:
|
|
/**
|
|
* @param popupVisible Show or not the popup element
|
|
* @param event SyntheticEvent, used for `pointAlign`
|
|
*/
|
|
function setPopupVisible(popupVisible, event) {
|
|
var alignPoint = this.props.alignPoint;
|
|
var prevPopupVisible = this.state.popupVisible;
|
|
this.clearDelayTimer();
|
|
|
|
if (prevPopupVisible !== popupVisible) {
|
|
if (!('popupVisible' in this.props)) {
|
|
this.setState({
|
|
popupVisible: popupVisible,
|
|
prevPopupVisible: prevPopupVisible
|
|
});
|
|
}
|
|
|
|
this.props.onPopupVisibleChange(popupVisible);
|
|
} // Always record the point position since mouseEnterDelay will delay the show
|
|
|
|
|
|
if (alignPoint && event && popupVisible) {
|
|
this.setPoint(event);
|
|
}
|
|
}
|
|
}, {
|
|
key: "delaySetPopupVisible",
|
|
value: function delaySetPopupVisible(visible, delayS, event) {
|
|
var _this2 = this;
|
|
|
|
var delay = delayS * 1000;
|
|
this.clearDelayTimer();
|
|
|
|
if (delay) {
|
|
var point = event ? {
|
|
pageX: event.pageX,
|
|
pageY: event.pageY
|
|
} : null;
|
|
this.delayTimer = window.setTimeout(function () {
|
|
_this2.setPopupVisible(visible, point);
|
|
|
|
_this2.clearDelayTimer();
|
|
}, delay);
|
|
} else {
|
|
this.setPopupVisible(visible, event);
|
|
}
|
|
}
|
|
}, {
|
|
key: "clearDelayTimer",
|
|
value: function clearDelayTimer() {
|
|
if (this.delayTimer) {
|
|
clearTimeout(this.delayTimer);
|
|
this.delayTimer = null;
|
|
}
|
|
}
|
|
}, {
|
|
key: "clearOutsideHandler",
|
|
value: function clearOutsideHandler() {
|
|
if (this.clickOutsideHandler) {
|
|
this.clickOutsideHandler.remove();
|
|
this.clickOutsideHandler = null;
|
|
}
|
|
|
|
if (this.contextMenuOutsideHandler1) {
|
|
this.contextMenuOutsideHandler1.remove();
|
|
this.contextMenuOutsideHandler1 = null;
|
|
}
|
|
|
|
if (this.contextMenuOutsideHandler2) {
|
|
this.contextMenuOutsideHandler2.remove();
|
|
this.contextMenuOutsideHandler2 = null;
|
|
}
|
|
|
|
if (this.touchOutsideHandler) {
|
|
this.touchOutsideHandler.remove();
|
|
this.touchOutsideHandler = null;
|
|
}
|
|
}
|
|
}, {
|
|
key: "createTwoChains",
|
|
value: function createTwoChains(event) {
|
|
var childPros = this.props.children.props;
|
|
var props = this.props;
|
|
|
|
if (childPros[event] && props[event]) {
|
|
return this["fire".concat(event)];
|
|
}
|
|
|
|
return childPros[event] || props[event];
|
|
}
|
|
}, {
|
|
key: "isClickToShow",
|
|
value: function isClickToShow() {
|
|
var _this$props4 = this.props,
|
|
action = _this$props4.action,
|
|
showAction = _this$props4.showAction;
|
|
return action.indexOf('click') !== -1 || showAction.indexOf('click') !== -1;
|
|
}
|
|
}, {
|
|
key: "isContextMenuOnly",
|
|
value: function isContextMenuOnly() {
|
|
var action = this.props.action;
|
|
return action === 'contextMenu' || action.length === 1 && action[0] === 'contextMenu';
|
|
}
|
|
}, {
|
|
key: "isContextMenuToShow",
|
|
value: function isContextMenuToShow() {
|
|
var _this$props5 = this.props,
|
|
action = _this$props5.action,
|
|
showAction = _this$props5.showAction;
|
|
return action.indexOf('contextMenu') !== -1 || showAction.indexOf('contextMenu') !== -1;
|
|
}
|
|
}, {
|
|
key: "isClickToHide",
|
|
value: function isClickToHide() {
|
|
var _this$props6 = this.props,
|
|
action = _this$props6.action,
|
|
hideAction = _this$props6.hideAction;
|
|
return action.indexOf('click') !== -1 || hideAction.indexOf('click') !== -1;
|
|
}
|
|
}, {
|
|
key: "isMouseEnterToShow",
|
|
value: function isMouseEnterToShow() {
|
|
var _this$props7 = this.props,
|
|
action = _this$props7.action,
|
|
showAction = _this$props7.showAction;
|
|
return action.indexOf('hover') !== -1 || showAction.indexOf('mouseEnter') !== -1;
|
|
}
|
|
}, {
|
|
key: "isMouseLeaveToHide",
|
|
value: function isMouseLeaveToHide() {
|
|
var _this$props8 = this.props,
|
|
action = _this$props8.action,
|
|
hideAction = _this$props8.hideAction;
|
|
return action.indexOf('hover') !== -1 || hideAction.indexOf('mouseLeave') !== -1;
|
|
}
|
|
}, {
|
|
key: "isFocusToShow",
|
|
value: function isFocusToShow() {
|
|
var _this$props9 = this.props,
|
|
action = _this$props9.action,
|
|
showAction = _this$props9.showAction;
|
|
return action.indexOf('focus') !== -1 || showAction.indexOf('focus') !== -1;
|
|
}
|
|
}, {
|
|
key: "isBlurToHide",
|
|
value: function isBlurToHide() {
|
|
var _this$props10 = this.props,
|
|
action = _this$props10.action,
|
|
hideAction = _this$props10.hideAction;
|
|
return action.indexOf('focus') !== -1 || hideAction.indexOf('blur') !== -1;
|
|
}
|
|
}, {
|
|
key: "forcePopupAlign",
|
|
value: function forcePopupAlign() {
|
|
if (this.state.popupVisible) {
|
|
var _this$popupRef$curren3;
|
|
|
|
(_this$popupRef$curren3 = this.popupRef.current) === null || _this$popupRef$curren3 === void 0 ? void 0 : _this$popupRef$curren3.forceAlign();
|
|
}
|
|
}
|
|
}, {
|
|
key: "fireEvents",
|
|
value: function fireEvents(type, e) {
|
|
var childCallback = this.props.children.props[type];
|
|
|
|
if (childCallback) {
|
|
childCallback(e);
|
|
}
|
|
|
|
var callback = this.props[type];
|
|
|
|
if (callback) {
|
|
callback(e);
|
|
}
|
|
}
|
|
}, {
|
|
key: "close",
|
|
value: function close() {
|
|
this.setPopupVisible(false);
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
var popupVisible = this.state.popupVisible;
|
|
var _this$props11 = this.props,
|
|
children = _this$props11.children,
|
|
forceRender = _this$props11.forceRender,
|
|
alignPoint = _this$props11.alignPoint,
|
|
className = _this$props11.className,
|
|
autoDestroy = _this$props11.autoDestroy;
|
|
var child = React.Children.only(children);
|
|
var newChildProps = {
|
|
key: 'trigger'
|
|
}; // ============================== Visible Handlers ==============================
|
|
// >>> ContextMenu
|
|
|
|
if (this.isContextMenuToShow()) {
|
|
newChildProps.onContextMenu = this.onContextMenu;
|
|
} else {
|
|
newChildProps.onContextMenu = this.createTwoChains('onContextMenu');
|
|
} // >>> Click
|
|
|
|
|
|
if (this.isClickToHide() || this.isClickToShow()) {
|
|
newChildProps.onClick = this.onClick;
|
|
newChildProps.onMouseDown = this.onMouseDown;
|
|
newChildProps.onTouchStart = this.onTouchStart;
|
|
} else {
|
|
newChildProps.onClick = this.createTwoChains('onClick');
|
|
newChildProps.onMouseDown = this.createTwoChains('onMouseDown');
|
|
newChildProps.onTouchStart = this.createTwoChains('onTouchStart');
|
|
} // >>> Hover(enter)
|
|
|
|
|
|
if (this.isMouseEnterToShow()) {
|
|
newChildProps.onMouseEnter = this.onMouseEnter; // Point align
|
|
|
|
if (alignPoint) {
|
|
newChildProps.onMouseMove = this.onMouseMove;
|
|
}
|
|
} else {
|
|
newChildProps.onMouseEnter = this.createTwoChains('onMouseEnter');
|
|
} // >>> Hover(leave)
|
|
|
|
|
|
if (this.isMouseLeaveToHide()) {
|
|
newChildProps.onMouseLeave = this.onMouseLeave;
|
|
} else {
|
|
newChildProps.onMouseLeave = this.createTwoChains('onMouseLeave');
|
|
} // >>> Focus
|
|
|
|
|
|
if (this.isFocusToShow() || this.isBlurToHide()) {
|
|
newChildProps.onFocus = this.onFocus;
|
|
newChildProps.onBlur = this.onBlur;
|
|
} else {
|
|
newChildProps.onFocus = this.createTwoChains('onFocus');
|
|
newChildProps.onBlur = this.createTwoChains('onBlur');
|
|
} // =================================== Render ===================================
|
|
|
|
|
|
var childrenClassName = classNames(child && child.props && child.props.className, className);
|
|
|
|
if (childrenClassName) {
|
|
newChildProps.className = childrenClassName;
|
|
}
|
|
|
|
var cloneProps = _objectSpread({}, newChildProps);
|
|
|
|
if (supportRef(child)) {
|
|
cloneProps.ref = composeRef(this.triggerRef, child.ref);
|
|
}
|
|
|
|
var trigger = /*#__PURE__*/React.cloneElement(child, cloneProps);
|
|
var portal; // prevent unmounting after it's rendered
|
|
|
|
if (popupVisible || this.popupRef.current || forceRender) {
|
|
portal = /*#__PURE__*/React.createElement(PortalComponent, {
|
|
key: "portal",
|
|
getContainer: this.getContainer,
|
|
didUpdate: this.handlePortalUpdate
|
|
}, this.getComponent());
|
|
}
|
|
|
|
if (!popupVisible && autoDestroy) {
|
|
portal = null;
|
|
}
|
|
|
|
return /*#__PURE__*/React.createElement(TriggerContext.Provider, {
|
|
value: this.triggerContextValue
|
|
}, trigger, portal);
|
|
}
|
|
}], [{
|
|
key: "getDerivedStateFromProps",
|
|
value: function getDerivedStateFromProps(_ref, prevState) {
|
|
var popupVisible = _ref.popupVisible;
|
|
var newState = {};
|
|
|
|
if (popupVisible !== undefined && prevState.popupVisible !== popupVisible) {
|
|
newState.popupVisible = popupVisible;
|
|
newState.prevPopupVisible = prevState.popupVisible;
|
|
}
|
|
|
|
return newState;
|
|
}
|
|
}]);
|
|
|
|
return Trigger;
|
|
}(React.Component);
|
|
|
|
Trigger.contextType = TriggerContext;
|
|
Trigger.defaultProps = {
|
|
prefixCls: 'rc-trigger-popup',
|
|
getPopupClassNameFromAlign: returnEmptyString,
|
|
getDocument: returnDocument,
|
|
onPopupVisibleChange: noop,
|
|
afterPopupVisibleChange: noop,
|
|
onPopupAlign: noop,
|
|
popupClassName: '',
|
|
mouseEnterDelay: 0,
|
|
mouseLeaveDelay: 0.1,
|
|
focusDelay: 0,
|
|
blurDelay: 0.15,
|
|
popupStyle: {},
|
|
destroyPopupOnHide: false,
|
|
popupAlign: {},
|
|
defaultPopupVisible: false,
|
|
mask: false,
|
|
maskClosable: true,
|
|
action: [],
|
|
showAction: [],
|
|
hideAction: [],
|
|
autoDestroy: false
|
|
};
|
|
return Trigger;
|
|
}
|
|
export default generateTrigger(Portal); |