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.
52 lines
1.2 KiB
52 lines
1.2 KiB
import { Item, itemProps } from '../vc-menu';
|
|
import { getOptionProps } from '../_util/props-util';
|
|
import Tooltip from '../tooltip';
|
|
function noop() {}
|
|
export default {
|
|
inheritAttrs: false,
|
|
props: itemProps,
|
|
name: 'MenuItem',
|
|
inject: {
|
|
getInlineCollapsed: { default: () => noop },
|
|
},
|
|
isMenuItem: 1,
|
|
methods: {
|
|
onKeyDown(e) {
|
|
this.$refs.menuItem.onKeyDown(e);
|
|
},
|
|
},
|
|
render(h) {
|
|
const props = getOptionProps(this);
|
|
const { level, title, rootPrefixCls } = props;
|
|
const { getInlineCollapsed, $slots, $attrs: attrs, $listeners } = this;
|
|
const inlineCollapsed = getInlineCollapsed();
|
|
let titleNode;
|
|
if (inlineCollapsed) {
|
|
titleNode = title || (level === 1 ? $slots.default : '');
|
|
}
|
|
|
|
const itemProps = {
|
|
props: {
|
|
...props,
|
|
title: inlineCollapsed ? null : title,
|
|
},
|
|
attrs,
|
|
on: $listeners,
|
|
};
|
|
const toolTipProps = {
|
|
props: {
|
|
title: titleNode,
|
|
placement: 'right',
|
|
overlayClassName: `${rootPrefixCls}-inline-collapsed-tooltip`,
|
|
},
|
|
};
|
|
return (
|
|
<Tooltip {...toolTipProps}>
|
|
<Item {...itemProps} ref="menuItem">
|
|
{$slots.default}
|
|
</Item>
|
|
</Tooltip>
|
|
);
|
|
},
|
|
};
|