UNPKG

rc-menu-rtl

Version:
332 lines (271 loc) 11 kB
import _extends from 'babel-runtime/helpers/extends'; import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties'; import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn'; import _inherits from 'babel-runtime/helpers/inherits'; import React from 'react'; import ReactDOM from 'react-dom'; import PropTypes from 'prop-types'; import ResizeObserver from 'resize-observer-polyfill'; import SubMenu from './SubMenu'; import { getWidth, setStyle, menuAllProps } from './util'; var canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement); var MENUITEM_OVERFLOWED_CLASSNAME = 'menuitem-overflowed'; // Fix ssr if (canUseDOM) { require('mutationobserver-shim'); } var DOMWrap = function (_React$Component) { _inherits(DOMWrap, _React$Component); function DOMWrap() { var _temp, _this, _ret; _classCallCheck(this, DOMWrap); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _ret = (_temp = (_this = _possibleConstructorReturn(this, _React$Component.call.apply(_React$Component, [this].concat(args))), _this), _this.state = { lastVisibleIndex: undefined }, _this.getMenuItemNodes = function () { var prefixCls = _this.props.prefixCls; var ul = ReactDOM.findDOMNode(_this); if (!ul) { return []; } // filter out all overflowed indicator placeholder return [].slice.call(ul.children).filter(function (node) { return node.className.split(' ').indexOf(prefixCls + '-overflowed-submenu') < 0; }); }, _this.getOverflowedSubMenuItem = function (keyPrefix, overflowedItems, renderPlaceholder) { var _this$props = _this.props, overflowedIndicator = _this$props.overflowedIndicator, level = _this$props.level, mode = _this$props.mode, prefixCls = _this$props.prefixCls, theme = _this$props.theme, propStyle = _this$props.style; if (level !== 1 || mode !== 'horizontal') { return null; } // put all the overflowed item inside a submenu // with a title of overflow indicator ('...') var copy = _this.props.children[0]; var _copy$props = copy.props, throwAway = _copy$props.children, title = _copy$props.title, eventKey = _copy$props.eventKey, rest = _objectWithoutProperties(_copy$props, ['children', 'title', 'eventKey']); var style = _extends({}, propStyle); var key = keyPrefix + '-overflowed-indicator'; if (overflowedItems.length === 0 && renderPlaceholder !== true) { style = _extends({}, style, { display: 'none' }); } else if (renderPlaceholder) { style = _extends({}, style, { visibility: 'hidden', // prevent from taking normal dom space position: 'absolute' }); key = key + '-placeholder'; } var popupClassName = theme ? prefixCls + '-' + theme : ''; var props = {}; menuAllProps.forEach(function (k) { if (rest[k] !== undefined) { props[k] = rest[k]; } }); return React.createElement( SubMenu, _extends({ title: overflowedIndicator, className: prefixCls + '-overflowed-submenu', popupClassName: popupClassName }, props, { key: key, eventKey: keyPrefix + '-overflowed-indicator', disabled: false, style: style }), overflowedItems ); }, _this.setChildrenWidthAndResize = function () { if (_this.props.mode !== 'horizontal') { return; } var ul = ReactDOM.findDOMNode(_this); if (!ul) { return; } var ulChildrenNodes = ul.children; if (!ulChildrenNodes || ulChildrenNodes.length === 0) { return; } var lastOverflowedIndicatorPlaceholder = ul.children[ulChildrenNodes.length - 1]; // need last overflowed indicator for calculating length; setStyle(lastOverflowedIndicatorPlaceholder, 'display', 'inline-block'); var menuItemNodes = _this.getMenuItemNodes(); // reset display attribute for all hidden elements caused by overflow to calculate updated width // and then reset to original state after width calculation var overflowedItems = menuItemNodes.filter(function (c) { return c.className.split(' ').indexOf(MENUITEM_OVERFLOWED_CLASSNAME) >= 0; }); overflowedItems.forEach(function (c) { setStyle(c, 'display', 'inline-block'); }); _this.menuItemSizes = menuItemNodes.map(function (c) { return getWidth(c); }); overflowedItems.forEach(function (c) { setStyle(c, 'display', 'none'); }); _this.overflowedIndicatorWidth = getWidth(ul.children[ul.children.length - 1]); _this.originalTotalWidth = _this.menuItemSizes.reduce(function (acc, cur) { return acc + cur; }, 0); _this.handleResize(); // prevent the overflowed indicator from taking space; setStyle(lastOverflowedIndicatorPlaceholder, 'display', 'none'); }, _this.resizeObserver = null, _this.mutationObserver = null, _this.originalTotalWidth = 0, _this.overflowedItems = [], _this.menuItemSizes = [], _this.handleResize = function () { if (_this.props.mode !== 'horizontal') { return; } var ul = ReactDOM.findDOMNode(_this); if (!ul) { return; } var width = getWidth(ul); _this.overflowedItems = []; var currentSumWidth = 0; // index for last visible child in horizontal mode var lastVisibleIndex = undefined; if (_this.originalTotalWidth > width) { lastVisibleIndex = -1; _this.menuItemSizes.forEach(function (liWidth) { currentSumWidth += liWidth; if (currentSumWidth + _this.overflowedIndicatorWidth <= width) { lastVisibleIndex++; } }); } _this.setState({ lastVisibleIndex: lastVisibleIndex }); }, _temp), _possibleConstructorReturn(_this, _ret); } DOMWrap.prototype.componentDidMount = function componentDidMount() { var _this2 = this; this.setChildrenWidthAndResize(); if (this.props.level === 1 && this.props.mode === 'horizontal') { var menuUl = ReactDOM.findDOMNode(this); if (!menuUl) { return; } this.resizeObserver = new ResizeObserver(function (entries) { entries.forEach(_this2.setChildrenWidthAndResize); }); [].slice.call(menuUl.children).concat(menuUl).forEach(function (el) { _this2.resizeObserver.observe(el); }); if (typeof MutationObserver !== 'undefined') { this.mutationObserver = new MutationObserver(function () { _this2.resizeObserver.disconnect(); [].slice.call(menuUl.children).concat(menuUl).forEach(function (el) { _this2.resizeObserver.observe(el); }); _this2.setChildrenWidthAndResize(); }); this.mutationObserver.observe(menuUl, { attributes: false, childList: true, subTree: false }); } } }; DOMWrap.prototype.componentWillUnmount = function componentWillUnmount() { if (this.resizeObserver) { this.resizeObserver.disconnect(); } if (this.mutationObserver) { this.resizeObserver.disconnect(); } }; // get all valid menuItem nodes // memorize rendered menuSize // original scroll size of the list // copy of overflowed items // cache item of the original items (so we can track the size and order) DOMWrap.prototype.renderChildren = function renderChildren(children) { var _this3 = this; // need to take care of overflowed items in horizontal mode var lastVisibleIndex = this.state.lastVisibleIndex; return (children || []).reduce(function (acc, childNode, index) { var item = childNode; if (_this3.props.mode === 'horizontal') { var overflowed = _this3.getOverflowedSubMenuItem(childNode.props.eventKey, []); if (lastVisibleIndex !== undefined && _this3.props.className.indexOf(_this3.props.prefixCls + '-root') !== -1) { if (index > lastVisibleIndex) { item = React.cloneElement(childNode, // 这里修改 eventKey 是为了防止隐藏状态下还会触发 openkeys 事件 { style: { display: 'none' }, eventKey: childNode.props.eventKey + '-hidden', className: childNode.className + ' ' + MENUITEM_OVERFLOWED_CLASSNAME }); } if (index === lastVisibleIndex + 1) { _this3.overflowedItems = children.slice(lastVisibleIndex + 1).map(function (c) { return React.cloneElement(c, // children[index].key will become '.$key' in clone by default, // we have to overwrite with the correct key explicitly { key: c.props.eventKey, mode: 'vertical-left' }); }); overflowed = _this3.getOverflowedSubMenuItem(childNode.props.eventKey, _this3.overflowedItems); } } var ret = [].concat(acc, [overflowed, item]); if (index === children.length - 1) { // need a placeholder for calculating overflowed indicator width ret.push(_this3.getOverflowedSubMenuItem(childNode.props.eventKey, [], true)); } return ret; } return [].concat(acc, [item]); }, []); }; DOMWrap.prototype.render = function render() { var _props = this.props, hiddenClassName = _props.hiddenClassName, visible = _props.visible, prefixCls = _props.prefixCls, overflowedIndicator = _props.overflowedIndicator, mode = _props.mode, level = _props.level, Tag = _props.tag, children = _props.children, theme = _props.theme, rest = _objectWithoutProperties(_props, ['hiddenClassName', 'visible', 'prefixCls', 'overflowedIndicator', 'mode', 'level', 'tag', 'children', 'theme']); if (!visible) { rest.className += ' ' + hiddenClassName; } return React.createElement( Tag, rest, this.renderChildren(this.props.children) ); }; return DOMWrap; }(React.Component); DOMWrap.propTypes = { className: PropTypes.string, children: PropTypes.node, mode: PropTypes.oneOf(['horizontal', 'vertical', 'vertical-left', 'vertical-right', 'inline']), prefixCls: PropTypes.string, level: PropTypes.number, theme: PropTypes.string, overflowedIndicator: PropTypes.node, visible: PropTypes.bool, hiddenClassName: PropTypes.string, tag: PropTypes.string, style: PropTypes.object }; DOMWrap.defaultProps = { tag: 'div', className: '' }; export default DOMWrap;