mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
52 lines
1.2 KiB
Vue
52 lines
1.2 KiB
Vue
import { Item, itemProps } from '../vc-menu';
|
|
import { getOptionProps } from '../_util/props-util';
|
|
import Tooltip from '../tooltip';
|
|
function noop() {}
|
|
export default {
|
|
name: 'MenuItem',
|
|
inheritAttrs: false,
|
|
props: itemProps,
|
|
inject: {
|
|
getInlineCollapsed: { default: () => noop },
|
|
},
|
|
isMenuItem: 1,
|
|
methods: {
|
|
onKeyDown(e) {
|
|
this.$refs.menuItem.onKeyDown(e);
|
|
},
|
|
},
|
|
render() {
|
|
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>
|
|
);
|
|
},
|
|
};
|