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.
31 lines
810 B
31 lines
810 B
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;
|
|
private menuItem: any;
|
|
onKeyDown = (e) => {
|
|
this.menuItem.onKeyDown(e);
|
|
}
|
|
saveMenuItem = (menuItem) => {
|
|
this.menuItem = menuItem;
|
|
}
|
|
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} ref={this.saveMenuItem} />
|
|
</Tooltip>;
|
|
}
|
|
}
|
|
|
|
export default MenuItem;
|
|
|