2017-11-17 14:38:54 +08:00
|
|
|
import * as React from 'react';
|
2017-06-30 21:07:01 +08:00
|
|
|
import { Item } from 'rc-menu';
|
2019-03-28 09:24:16 +08:00
|
|
|
import { ClickParam } from '.';
|
2019-04-08 21:03:25 +08:00
|
|
|
import Tooltip from '../tooltip';
|
|
|
|
import { SiderContext, SiderContextProps } from '../layout/Sider';
|
2017-06-30 21:07:01 +08:00
|
|
|
|
2019-03-03 16:37:50 +08:00
|
|
|
export interface MenuItemProps {
|
2018-11-20 23:26:40 +08:00
|
|
|
rootPrefixCls?: string;
|
|
|
|
disabled?: boolean;
|
|
|
|
level?: number;
|
|
|
|
title?: React.ReactNode;
|
|
|
|
children?: React.ReactNode;
|
2018-12-02 23:55:25 +08:00
|
|
|
className?: string;
|
2019-01-23 23:49:23 +08:00
|
|
|
style?: React.CSSProperties;
|
2018-12-07 10:54:21 +08:00
|
|
|
onClick?: (param: ClickParam) => void;
|
2019-02-06 05:29:58 +08:00
|
|
|
onMouseEnter?: (e: { key: string; domEvent: MouseEvent }) => void;
|
|
|
|
onMouseLeave?: (e: { key: string; domEvent: MouseEvent }) => void;
|
2018-11-20 23:26:40 +08:00
|
|
|
}
|
|
|
|
|
2019-03-28 09:24:16 +08:00
|
|
|
export default class MenuItem extends React.Component<MenuItemProps> {
|
|
|
|
static isMenuItem = true;
|
2019-03-25 18:37:15 +08:00
|
|
|
private menuItem: this;
|
2018-12-13 22:03:12 +08:00
|
|
|
|
2017-11-21 17:38:51 +08:00
|
|
|
onKeyDown = (e: React.MouseEvent<HTMLElement>) => {
|
2017-11-16 16:08:30 +08:00
|
|
|
this.menuItem.onKeyDown(e);
|
2018-12-07 20:02:01 +08:00
|
|
|
};
|
2019-03-28 09:24:16 +08:00
|
|
|
|
2019-03-25 18:37:15 +08:00
|
|
|
saveMenuItem = (menuItem: this) => {
|
2017-11-16 16:08:30 +08:00
|
|
|
this.menuItem = menuItem;
|
2018-12-07 20:02:01 +08:00
|
|
|
};
|
2018-11-20 23:26:40 +08:00
|
|
|
|
2019-04-08 21:03:25 +08:00
|
|
|
renderItem = ({ siderCollapsed }: SiderContextProps) => {
|
|
|
|
const { level, children, rootPrefixCls } = this.props;
|
|
|
|
const { title, ...rest } = this.props;
|
|
|
|
|
|
|
|
let titleNode = title || (level === 1 ? children : '');
|
|
|
|
if (!siderCollapsed) {
|
|
|
|
titleNode = null;
|
|
|
|
}
|
2018-11-20 23:26:40 +08:00
|
|
|
|
2018-05-10 10:59:33 +08:00
|
|
|
return (
|
|
|
|
<Tooltip
|
2019-04-08 21:03:25 +08:00
|
|
|
title={titleNode}
|
2018-05-10 10:59:33 +08:00
|
|
|
placement="right"
|
2018-11-20 23:26:40 +08:00
|
|
|
overlayClassName={`${rootPrefixCls}-inline-collapsed-tooltip`}
|
2018-05-10 10:59:33 +08:00
|
|
|
>
|
2019-04-08 21:03:25 +08:00
|
|
|
<Item {...rest} title={title} ref={this.saveMenuItem} />
|
2018-05-10 10:59:33 +08:00
|
|
|
</Tooltip>
|
|
|
|
);
|
2019-04-08 21:03:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return <SiderContext.Consumer>{this.renderItem}</SiderContext.Consumer>;
|
2017-10-27 20:21:34 +08:00
|
|
|
}
|
|
|
|
}
|