import * as React from 'react'; import { Item } from 'rc-menu'; import toArray from 'rc-util/lib/Children/toArray'; import classNames from 'classnames'; import { ClickParam } from '.'; import MenuContext, { MenuContextProps } from './MenuContext'; import Tooltip, { TooltipProps } from '../tooltip'; import { SiderContext, SiderContextProps } from '../layout/Sider'; import { isValidElement } from '../_util/reactNode'; export interface MenuItemProps extends Omit< React.HTMLAttributes, 'title' | 'onClick' | 'onMouseEnter' | 'onMouseLeave' > { rootPrefixCls?: string; disabled?: boolean; level?: number; icon?: React.ReactNode; title?: React.ReactNode; children?: React.ReactNode; className?: string; style?: React.CSSProperties; onClick?: (param: ClickParam) => void; onMouseEnter?: (e: { key: string; domEvent: MouseEvent }) => void; onMouseLeave?: (e: { key: string; domEvent: MouseEvent }) => void; } export default class MenuItem extends React.Component { static isMenuItem = true; private menuItem: this; onKeyDown = (e: React.MouseEvent) => { this.menuItem.onKeyDown(e); }; saveMenuItem = (menuItem: this) => { this.menuItem = menuItem; }; renderItemChildren() { const { icon, children } = this.props; // inline-collapsed.md demo 依赖 span 来隐藏文字,有 icon 属性,则内部包裹一个 span // ref: https://github.com/ant-design/ant-design/pull/23456 if (!icon || (isValidElement(children) && children.type === 'span')) { return children; } return {children}; } renderItem = ({ siderCollapsed }: SiderContextProps) => { const { level, className, children, rootPrefixCls } = this.props; const { title, icon, ...rest } = this.props; return ( {({ inlineCollapsed, direction }: MenuContextProps) => { let tooltipTitle = title; if (typeof title === 'undefined') { tooltipTitle = level === 1 ? children : ''; } else if (title === false) { tooltipTitle = ''; } const tooltipProps: TooltipProps = { title: tooltipTitle, }; if (!siderCollapsed && !inlineCollapsed) { tooltipProps.title = null; // Reset `visible` to fix control mode tooltip display not correct // ref: https://github.com/ant-design/ant-design/issues/16742 tooltipProps.visible = false; } const childrenLength = toArray(children).length; return ( {icon} {this.renderItemChildren()} ); }} ); }; render() { return {this.renderItem}; } }