348 lines
13 KiB
JavaScript
348 lines
13 KiB
JavaScript
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 _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 _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 _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); }
|
|
|
|
import * as React from 'react';
|
|
import RcMenu, { Divider, ItemGroup } from 'rc-menu';
|
|
import classNames from 'classnames';
|
|
import omit from 'omit.js';
|
|
import SubMenu from './SubMenu';
|
|
import Item from './MenuItem';
|
|
import { ConfigConsumer } from '../config-provider';
|
|
import warning from '../_util/warning';
|
|
import { SiderContext } from '../layout/Sider';
|
|
import raf from '../_util/raf';
|
|
import collapseMotion from '../_util/motion';
|
|
import MenuContext from './MenuContext';
|
|
|
|
var InternalMenu = /*#__PURE__*/function (_React$Component) {
|
|
_inherits(InternalMenu, _React$Component);
|
|
|
|
var _super = _createSuper(InternalMenu);
|
|
|
|
function InternalMenu(props) {
|
|
var _this;
|
|
|
|
_classCallCheck(this, InternalMenu);
|
|
|
|
_this = _super.call(this, props); // Restore vertical mode when menu is collapsed responsively when mounted
|
|
// https://github.com/ant-design/ant-design/issues/13104
|
|
// TODO: not a perfect solution, looking a new way to avoid setting switchingModeFromInline in this situation
|
|
|
|
_this.handleMouseEnter = function (e) {
|
|
_this.restoreModeVerticalFromInline();
|
|
|
|
var onMouseEnter = _this.props.onMouseEnter;
|
|
|
|
if (onMouseEnter) {
|
|
onMouseEnter(e);
|
|
}
|
|
};
|
|
|
|
_this.handleTransitionEnd = function (e) {
|
|
// when inlineCollapsed menu width animation finished
|
|
// https://github.com/ant-design/ant-design/issues/12864
|
|
var widthCollapsed = e.propertyName === 'width' && e.target === e.currentTarget; // Fix SVGElement e.target.className.indexOf is not a function
|
|
// https://github.com/ant-design/ant-design/issues/15699
|
|
|
|
var className = e.target.className; // SVGAnimatedString.animVal should be identical to SVGAnimatedString.baseVal, unless during an animation.
|
|
|
|
var classNameValue = Object.prototype.toString.call(className) === '[object SVGAnimatedString]' ? className.animVal : className; // Fix for <Menu style={{ width: '100%' }} />, the width transition won't trigger when menu is collapsed
|
|
// https://github.com/ant-design/ant-design-pro/issues/2783
|
|
|
|
var iconScaled = e.propertyName === 'font-size' && classNameValue.indexOf('anticon') >= 0;
|
|
|
|
if (widthCollapsed || iconScaled) {
|
|
_this.restoreModeVerticalFromInline();
|
|
}
|
|
};
|
|
|
|
_this.handleClick = function (e) {
|
|
_this.handleOpenChange([]);
|
|
|
|
var onClick = _this.props.onClick;
|
|
|
|
if (onClick) {
|
|
onClick(e);
|
|
}
|
|
};
|
|
|
|
_this.handleOpenChange = function (openKeys) {
|
|
_this.setOpenKeys(openKeys);
|
|
|
|
var onOpenChange = _this.props.onOpenChange;
|
|
|
|
if (onOpenChange) {
|
|
onOpenChange(openKeys);
|
|
}
|
|
};
|
|
|
|
_this.renderMenu = function (_ref) {
|
|
var getPopupContainer = _ref.getPopupContainer,
|
|
getPrefixCls = _ref.getPrefixCls,
|
|
direction = _ref.direction;
|
|
var _this$props = _this.props,
|
|
customizePrefixCls = _this$props.prefixCls,
|
|
className = _this$props.className,
|
|
theme = _this$props.theme,
|
|
collapsedWidth = _this$props.collapsedWidth;
|
|
var passProps = omit(_this.props, ['collapsedWidth', 'siderCollapsed']);
|
|
|
|
var menuMode = _this.getRealMenuMode();
|
|
|
|
var menuOpenMotion = _this.getOpenMotionProps(menuMode);
|
|
|
|
var prefixCls = getPrefixCls('menu', customizePrefixCls);
|
|
var menuClassName = classNames(className, "".concat(prefixCls, "-").concat(theme), _defineProperty({}, "".concat(prefixCls, "-inline-collapsed"), _this.getInlineCollapsed()));
|
|
|
|
var menuProps = _extends({
|
|
openKeys: _this.state.openKeys,
|
|
onOpenChange: _this.handleOpenChange,
|
|
className: menuClassName,
|
|
mode: menuMode
|
|
}, menuOpenMotion);
|
|
|
|
if (menuMode !== 'inline') {
|
|
// closing vertical popup submenu after click it
|
|
menuProps.onClick = _this.handleClick;
|
|
} // https://github.com/ant-design/ant-design/issues/8587
|
|
|
|
|
|
var hideMenu = _this.getInlineCollapsed() && (collapsedWidth === 0 || collapsedWidth === '0' || collapsedWidth === '0px');
|
|
|
|
if (hideMenu) {
|
|
menuProps.openKeys = [];
|
|
}
|
|
|
|
return /*#__PURE__*/React.createElement(MenuContext.Provider, {
|
|
value: {
|
|
inlineCollapsed: _this.getInlineCollapsed() || false,
|
|
antdMenuTheme: _this.props.theme,
|
|
direction: direction
|
|
}
|
|
}, /*#__PURE__*/React.createElement(RcMenu, _extends({
|
|
getPopupContainer: getPopupContainer
|
|
}, passProps, menuProps, {
|
|
prefixCls: prefixCls,
|
|
onTransitionEnd: _this.handleTransitionEnd,
|
|
onMouseEnter: _this.handleMouseEnter,
|
|
direction: direction
|
|
})));
|
|
};
|
|
|
|
warning(!('inlineCollapsed' in props && props.mode !== 'inline'), 'Menu', '`inlineCollapsed` should only be used when `mode` is inline.');
|
|
warning(!(props.siderCollapsed !== undefined && 'inlineCollapsed' in props), 'Menu', '`inlineCollapsed` not control Menu under Sider. Should set `collapsed` on Sider instead.');
|
|
var openKeys;
|
|
|
|
if ('openKeys' in props) {
|
|
openKeys = props.openKeys;
|
|
} else if ('defaultOpenKeys' in props) {
|
|
openKeys = props.defaultOpenKeys;
|
|
}
|
|
|
|
_this.state = {
|
|
openKeys: openKeys || [],
|
|
switchingModeFromInline: false,
|
|
inlineOpenKeys: [],
|
|
prevProps: props
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
_createClass(InternalMenu, [{
|
|
key: "componentWillUnmount",
|
|
value: function componentWillUnmount() {
|
|
raf.cancel(this.mountRafId);
|
|
}
|
|
}, {
|
|
key: "setOpenKeys",
|
|
value: function setOpenKeys(openKeys) {
|
|
if (!('openKeys' in this.props)) {
|
|
this.setState({
|
|
openKeys: openKeys
|
|
});
|
|
}
|
|
}
|
|
}, {
|
|
key: "getRealMenuMode",
|
|
value: function getRealMenuMode() {
|
|
var inlineCollapsed = this.getInlineCollapsed();
|
|
|
|
if (this.state.switchingModeFromInline && inlineCollapsed) {
|
|
return 'inline';
|
|
}
|
|
|
|
var mode = this.props.mode;
|
|
return inlineCollapsed ? 'vertical' : mode;
|
|
}
|
|
}, {
|
|
key: "getInlineCollapsed",
|
|
value: function getInlineCollapsed() {
|
|
var inlineCollapsed = this.props.inlineCollapsed;
|
|
|
|
if (this.props.siderCollapsed !== undefined) {
|
|
return this.props.siderCollapsed;
|
|
}
|
|
|
|
return inlineCollapsed;
|
|
}
|
|
}, {
|
|
key: "getOpenMotionProps",
|
|
value: function getOpenMotionProps(menuMode) {
|
|
var _this$props2 = this.props,
|
|
openTransitionName = _this$props2.openTransitionName,
|
|
openAnimation = _this$props2.openAnimation,
|
|
motion = _this$props2.motion; // Provides by user
|
|
|
|
if (motion) {
|
|
return {
|
|
motion: motion
|
|
};
|
|
}
|
|
|
|
if (openAnimation) {
|
|
warning(typeof openAnimation === 'string', 'Menu', '`openAnimation` do not support object. Please use `motion` instead.');
|
|
return {
|
|
openAnimation: openAnimation
|
|
};
|
|
}
|
|
|
|
if (openTransitionName) {
|
|
return {
|
|
openTransitionName: openTransitionName
|
|
};
|
|
} // Default logic
|
|
|
|
|
|
if (menuMode === 'horizontal') {
|
|
return {
|
|
motion: {
|
|
motionName: 'slide-up'
|
|
}
|
|
};
|
|
}
|
|
|
|
if (menuMode === 'inline') {
|
|
return {
|
|
motion: collapseMotion
|
|
};
|
|
} // When mode switch from inline
|
|
// submenu should hide without animation
|
|
|
|
|
|
return {
|
|
motion: {
|
|
motionName: this.state.switchingModeFromInline ? '' : 'zoom-big'
|
|
}
|
|
};
|
|
}
|
|
}, {
|
|
key: "restoreModeVerticalFromInline",
|
|
value: function restoreModeVerticalFromInline() {
|
|
var switchingModeFromInline = this.state.switchingModeFromInline;
|
|
|
|
if (switchingModeFromInline) {
|
|
this.setState({
|
|
switchingModeFromInline: false
|
|
});
|
|
}
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
return /*#__PURE__*/React.createElement(ConfigConsumer, null, this.renderMenu);
|
|
}
|
|
}], [{
|
|
key: "getDerivedStateFromProps",
|
|
value: function getDerivedStateFromProps(nextProps, prevState) {
|
|
var prevProps = prevState.prevProps;
|
|
var newState = {
|
|
prevProps: nextProps
|
|
};
|
|
|
|
if (prevProps.mode === 'inline' && nextProps.mode !== 'inline') {
|
|
newState.switchingModeFromInline = true;
|
|
}
|
|
|
|
if ('openKeys' in nextProps) {
|
|
newState.openKeys = nextProps.openKeys;
|
|
} else {
|
|
// [Legacy] Old code will return after `openKeys` changed.
|
|
// Not sure the reason, we should keep this logic still.
|
|
if (nextProps.inlineCollapsed && !prevProps.inlineCollapsed || nextProps.siderCollapsed && !prevProps.siderCollapsed) {
|
|
newState.switchingModeFromInline = true;
|
|
newState.inlineOpenKeys = prevState.openKeys;
|
|
newState.openKeys = [];
|
|
}
|
|
|
|
if (!nextProps.inlineCollapsed && prevProps.inlineCollapsed || !nextProps.siderCollapsed && prevProps.siderCollapsed) {
|
|
newState.openKeys = prevState.inlineOpenKeys;
|
|
newState.inlineOpenKeys = [];
|
|
}
|
|
}
|
|
|
|
return newState;
|
|
}
|
|
}]);
|
|
|
|
return InternalMenu;
|
|
}(React.Component);
|
|
|
|
InternalMenu.defaultProps = {
|
|
className: '',
|
|
theme: 'light',
|
|
focusable: false
|
|
}; // We should keep this as ref-able
|
|
|
|
var Menu = /*#__PURE__*/function (_React$Component2) {
|
|
_inherits(Menu, _React$Component2);
|
|
|
|
var _super2 = _createSuper(Menu);
|
|
|
|
function Menu() {
|
|
_classCallCheck(this, Menu);
|
|
|
|
return _super2.apply(this, arguments);
|
|
}
|
|
|
|
_createClass(Menu, [{
|
|
key: "render",
|
|
value: function render() {
|
|
var _this2 = this;
|
|
|
|
return /*#__PURE__*/React.createElement(SiderContext.Consumer, null, function (context) {
|
|
return /*#__PURE__*/React.createElement(InternalMenu, _extends({}, _this2.props, context));
|
|
});
|
|
}
|
|
}]);
|
|
|
|
return Menu;
|
|
}(React.Component);
|
|
|
|
export { Menu as default };
|
|
Menu.Divider = Divider;
|
|
Menu.Item = Item;
|
|
Menu.SubMenu = SubMenu;
|
|
Menu.ItemGroup = ItemGroup; |