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.
|
|
|
import React from 'react';
|
|
|
|
import { Item } from 'rc-menu';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Tooltip from '../tooltip';
|
|
|
|
|
|
|
|
class MenuItem extends React.Component<any, any> {
|
|
|
|
static contextTypes = {
|
|
|
|
inlineCollapsed: PropTypes.bool,
|
|
|
|
};
|
|
|
|
static isMenuItem = 1;
|
|
|
|
render() {
|
|
|
|
const { inlineCollapsed } = this.context;
|
|
|
|
const props = this.props;
|
|
|
|
return <Tooltip
|
|
|
|
title={inlineCollapsed && props.level === 1 ? props.children : ''}
|
|
|
|
placement="right"
|
|
|
|
overlayClassName={`${props.rootPrefixCls}-inline-collapsed-tooltip`}
|
|
|
|
>
|
|
|
|
<Item {...props} />
|
|
|
|
</Tooltip>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MenuItem;
|