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.
390 lines
11 KiB
390 lines
11 KiB
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 _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
import * as React from 'react';
|
|
import { connect } from 'mini-store';
|
|
import KeyCode from "rc-util/es/KeyCode";
|
|
import createChainedFunction from "rc-util/es/createChainedFunction";
|
|
import shallowEqual from 'shallowequal';
|
|
import classNames from 'classnames';
|
|
import { getKeyFromChildrenIndex, loopMenuItem, noop, menuAllProps, isMobileDevice } from './util';
|
|
import DOMWrap from './DOMWrap';
|
|
|
|
function allDisabled(arr) {
|
|
if (!arr.length) {
|
|
return true;
|
|
}
|
|
|
|
return arr.every(function (c) {
|
|
return !!c.props.disabled;
|
|
});
|
|
}
|
|
|
|
function updateActiveKey(store, menuId, activeKey) {
|
|
var state = store.getState();
|
|
store.setState({
|
|
activeKey: _objectSpread(_objectSpread({}, state.activeKey), {}, _defineProperty({}, menuId, activeKey))
|
|
});
|
|
}
|
|
|
|
function getEventKey(props) {
|
|
// when eventKey not available ,it's menu and return menu id '0-menu-'
|
|
return props.eventKey || '0-menu-';
|
|
}
|
|
|
|
export function getActiveKey(props, originalActiveKey) {
|
|
var activeKey = originalActiveKey;
|
|
var children = props.children,
|
|
eventKey = props.eventKey;
|
|
|
|
if (activeKey) {
|
|
var found;
|
|
loopMenuItem(children, function (c, i) {
|
|
if (c && c.props && !c.props.disabled && activeKey === getKeyFromChildrenIndex(c, eventKey, i)) {
|
|
found = true;
|
|
}
|
|
});
|
|
|
|
if (found) {
|
|
return activeKey;
|
|
}
|
|
}
|
|
|
|
activeKey = null;
|
|
|
|
if (props.defaultActiveFirst) {
|
|
loopMenuItem(children, function (c, i) {
|
|
if (!activeKey && c && !c.props.disabled) {
|
|
activeKey = getKeyFromChildrenIndex(c, eventKey, i);
|
|
}
|
|
});
|
|
return activeKey;
|
|
}
|
|
|
|
return activeKey;
|
|
}
|
|
export function saveRef(c) {
|
|
if (c) {
|
|
var index = this.instanceArray.indexOf(c);
|
|
|
|
if (index !== -1) {
|
|
// update component if it's already inside instanceArray
|
|
this.instanceArray[index] = c;
|
|
} else {
|
|
// add component if it's not in instanceArray yet;
|
|
this.instanceArray.push(c);
|
|
}
|
|
}
|
|
}
|
|
export var SubPopupMenu = /*#__PURE__*/function (_React$Component) {
|
|
_inherits(SubPopupMenu, _React$Component);
|
|
|
|
var _super = _createSuper(SubPopupMenu);
|
|
|
|
function SubPopupMenu(props) {
|
|
var _this;
|
|
|
|
_classCallCheck(this, SubPopupMenu);
|
|
|
|
_this = _super.call(this, props);
|
|
/**
|
|
* all keyboard events callbacks run from here at first
|
|
*
|
|
* note:
|
|
* This legacy code that `onKeyDown` is called by parent instead of dom self.
|
|
* which need return code to check if this event is handled
|
|
*/
|
|
|
|
_this.onKeyDown = function (e, callback) {
|
|
var keyCode = e.keyCode;
|
|
var handled;
|
|
|
|
_this.getFlatInstanceArray().forEach(function (obj) {
|
|
if (obj && obj.props.active && obj.onKeyDown) {
|
|
handled = obj.onKeyDown(e);
|
|
}
|
|
});
|
|
|
|
if (handled) {
|
|
return 1;
|
|
}
|
|
|
|
var activeItem = null;
|
|
|
|
if (keyCode === KeyCode.UP || keyCode === KeyCode.DOWN) {
|
|
activeItem = _this.step(keyCode === KeyCode.UP ? -1 : 1);
|
|
}
|
|
|
|
if (activeItem) {
|
|
e.preventDefault();
|
|
updateActiveKey(_this.props.store, getEventKey(_this.props), activeItem.props.eventKey);
|
|
|
|
if (typeof callback === 'function') {
|
|
callback(activeItem);
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
return undefined;
|
|
};
|
|
|
|
_this.onItemHover = function (e) {
|
|
var key = e.key,
|
|
hover = e.hover;
|
|
updateActiveKey(_this.props.store, getEventKey(_this.props), hover ? key : null);
|
|
};
|
|
|
|
_this.onDeselect = function (selectInfo) {
|
|
_this.props.onDeselect(selectInfo);
|
|
};
|
|
|
|
_this.onSelect = function (selectInfo) {
|
|
_this.props.onSelect(selectInfo);
|
|
};
|
|
|
|
_this.onClick = function (e) {
|
|
_this.props.onClick(e);
|
|
};
|
|
|
|
_this.onOpenChange = function (e) {
|
|
_this.props.onOpenChange(e);
|
|
};
|
|
|
|
_this.onDestroy = function (key) {
|
|
/* istanbul ignore next */
|
|
_this.props.onDestroy(key);
|
|
};
|
|
|
|
_this.getFlatInstanceArray = function () {
|
|
return _this.instanceArray;
|
|
};
|
|
|
|
_this.step = function (direction) {
|
|
var children = _this.getFlatInstanceArray();
|
|
|
|
var activeKey = _this.props.store.getState().activeKey[getEventKey(_this.props)];
|
|
|
|
var len = children.length;
|
|
|
|
if (!len) {
|
|
return null;
|
|
}
|
|
|
|
if (direction < 0) {
|
|
children = children.concat().reverse();
|
|
} // find current activeIndex
|
|
|
|
|
|
var activeIndex = -1;
|
|
children.every(function (c, ci) {
|
|
if (c && c.props.eventKey === activeKey) {
|
|
activeIndex = ci;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
|
|
if (!_this.props.defaultActiveFirst && activeIndex !== -1 && allDisabled(children.slice(activeIndex, len - 1))) {
|
|
return undefined;
|
|
}
|
|
|
|
var start = (activeIndex + 1) % len;
|
|
var i = start;
|
|
|
|
do {
|
|
var child = children[i];
|
|
|
|
if (!child || child.props.disabled) {
|
|
i = (i + 1) % len;
|
|
} else {
|
|
return child;
|
|
}
|
|
} while (i !== start);
|
|
|
|
return null;
|
|
};
|
|
|
|
_this.renderCommonMenuItem = function (child, i, extraProps) {
|
|
var state = _this.props.store.getState();
|
|
|
|
var _assertThisInitialize = _assertThisInitialized(_this),
|
|
props = _assertThisInitialize.props;
|
|
|
|
var key = getKeyFromChildrenIndex(child, props.eventKey, i);
|
|
var childProps = child.props; // https://github.com/ant-design/ant-design/issues/11517#issuecomment-477403055
|
|
|
|
if (!childProps || typeof child.type === 'string') {
|
|
return child;
|
|
}
|
|
|
|
var isActive = key === state.activeKey;
|
|
|
|
var newChildProps = _objectSpread(_objectSpread({
|
|
mode: childProps.mode || props.mode,
|
|
level: props.level,
|
|
inlineIndent: props.inlineIndent,
|
|
renderMenuItem: _this.renderMenuItem,
|
|
rootPrefixCls: props.prefixCls,
|
|
index: i,
|
|
parentMenu: props.parentMenu,
|
|
// customized ref function, need to be invoked manually in child's componentDidMount
|
|
manualRef: childProps.disabled ? undefined : createChainedFunction(child.ref, saveRef.bind(_assertThisInitialized(_this))),
|
|
eventKey: key,
|
|
active: !childProps.disabled && isActive,
|
|
multiple: props.multiple,
|
|
onClick: function onClick(e) {
|
|
(childProps.onClick || noop)(e);
|
|
|
|
_this.onClick(e);
|
|
},
|
|
onItemHover: _this.onItemHover,
|
|
motion: props.motion,
|
|
subMenuOpenDelay: props.subMenuOpenDelay,
|
|
subMenuCloseDelay: props.subMenuCloseDelay,
|
|
forceSubMenuRender: props.forceSubMenuRender,
|
|
onOpenChange: _this.onOpenChange,
|
|
onDeselect: _this.onDeselect,
|
|
onSelect: _this.onSelect,
|
|
builtinPlacements: props.builtinPlacements,
|
|
itemIcon: childProps.itemIcon || _this.props.itemIcon,
|
|
expandIcon: childProps.expandIcon || _this.props.expandIcon
|
|
}, extraProps), {}, {
|
|
direction: props.direction
|
|
}); // ref: https://github.com/ant-design/ant-design/issues/13943
|
|
|
|
|
|
if (props.mode === 'inline' || isMobileDevice()) {
|
|
newChildProps.triggerSubMenuAction = 'click';
|
|
}
|
|
|
|
return React.cloneElement(child, newChildProps);
|
|
};
|
|
|
|
_this.renderMenuItem = function (c, i, subMenuKey) {
|
|
/* istanbul ignore if */
|
|
if (!c) {
|
|
return null;
|
|
}
|
|
|
|
var state = _this.props.store.getState();
|
|
|
|
var extraProps = {
|
|
openKeys: state.openKeys,
|
|
selectedKeys: state.selectedKeys,
|
|
triggerSubMenuAction: _this.props.triggerSubMenuAction,
|
|
subMenuKey: subMenuKey
|
|
};
|
|
return _this.renderCommonMenuItem(c, i, extraProps);
|
|
};
|
|
|
|
props.store.setState({
|
|
activeKey: _objectSpread(_objectSpread({}, props.store.getState().activeKey), {}, _defineProperty({}, props.eventKey, getActiveKey(props, props.activeKey)))
|
|
});
|
|
_this.instanceArray = [];
|
|
return _this;
|
|
}
|
|
|
|
_createClass(SubPopupMenu, [{
|
|
key: "componentDidMount",
|
|
value: function componentDidMount() {
|
|
// invoke customized ref to expose component to mixin
|
|
if (this.props.manualRef) {
|
|
this.props.manualRef(this);
|
|
}
|
|
}
|
|
}, {
|
|
key: "shouldComponentUpdate",
|
|
value: function shouldComponentUpdate(nextProps) {
|
|
return this.props.visible || nextProps.visible || this.props.className !== nextProps.className || !shallowEqual(this.props.style, nextProps.style);
|
|
}
|
|
}, {
|
|
key: "componentDidUpdate",
|
|
value: function componentDidUpdate(prevProps) {
|
|
var props = this.props;
|
|
var originalActiveKey = 'activeKey' in props ? props.activeKey : props.store.getState().activeKey[getEventKey(props)];
|
|
var activeKey = getActiveKey(props, originalActiveKey);
|
|
|
|
if (activeKey !== originalActiveKey) {
|
|
updateActiveKey(props.store, getEventKey(props), activeKey);
|
|
} else if ('activeKey' in prevProps) {
|
|
// If prev activeKey is not same as current activeKey,
|
|
// we should set it.
|
|
var prevActiveKey = getActiveKey(prevProps, prevProps.activeKey);
|
|
|
|
if (activeKey !== prevActiveKey) {
|
|
updateActiveKey(props.store, getEventKey(props), activeKey);
|
|
}
|
|
}
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
var _this2 = this;
|
|
|
|
var props = _extends({}, this.props);
|
|
|
|
this.instanceArray = [];
|
|
var className = classNames(props.prefixCls, props.className, "".concat(props.prefixCls, "-").concat(props.mode));
|
|
var domProps = {
|
|
className: className,
|
|
// role could be 'select' and by default set to menu
|
|
role: props.role || 'menu'
|
|
};
|
|
|
|
if (props.id) {
|
|
domProps.id = props.id;
|
|
}
|
|
|
|
if (props.focusable) {
|
|
domProps.tabIndex = 0;
|
|
domProps.onKeyDown = this.onKeyDown;
|
|
}
|
|
|
|
var prefixCls = props.prefixCls,
|
|
eventKey = props.eventKey,
|
|
visible = props.visible,
|
|
level = props.level,
|
|
mode = props.mode,
|
|
overflowedIndicator = props.overflowedIndicator,
|
|
theme = props.theme;
|
|
menuAllProps.forEach(function (key) {
|
|
return delete props[key];
|
|
}); // Otherwise, the propagated click event will trigger another onClick
|
|
|
|
delete props.onClick;
|
|
return React.createElement(DOMWrap, Object.assign({}, props, {
|
|
prefixCls: prefixCls,
|
|
mode: mode,
|
|
tag: "ul",
|
|
level: level,
|
|
theme: theme,
|
|
visible: visible,
|
|
overflowedIndicator: overflowedIndicator
|
|
}, domProps), React.Children.map(props.children, function (c, i) {
|
|
return _this2.renderMenuItem(c, i, eventKey || '0-menu-');
|
|
}));
|
|
}
|
|
}]);
|
|
|
|
return SubPopupMenu;
|
|
}(React.Component);
|
|
SubPopupMenu.defaultProps = {
|
|
prefixCls: 'rc-menu',
|
|
className: '',
|
|
mode: 'vertical',
|
|
level: 1,
|
|
inlineIndent: 24,
|
|
visible: true,
|
|
focusable: true,
|
|
style: {},
|
|
manualRef: noop
|
|
};
|
|
var connected = connect()(SubPopupMenu);
|
|
export default connected; |