ant-design-vue/components/menu/index.jsx

282 lines
8.8 KiB
Vue
Raw Normal View History

2019-01-12 11:33:27 +08:00
import omit from 'omit.js';
import VcMenu, { Divider, ItemGroup, SubMenu } from '../vc-menu';
import PropTypes from '../_util/vue-types';
import animation from '../_util/openAnimation';
import warning from '../_util/warning';
import Item from './MenuItem';
import { hasProp } from '../_util/props-util';
import BaseMixin from '../_util/BaseMixin';
import commonPropsType from '../vc-menu/commonPropsType';
2019-04-10 09:41:02 +08:00
import { ConfigConsumerProps } from '../config-provider';
import Base from '../base';
2018-03-19 10:16:27 +08:00
2019-01-12 11:33:27 +08:00
export const MenuMode = PropTypes.oneOf([
'vertical',
'vertical-left',
'vertical-right',
'horizontal',
'inline',
]);
2018-01-16 15:41:00 +08:00
export const menuProps = {
2018-01-19 18:18:17 +08:00
...commonPropsType,
2018-01-16 15:41:00 +08:00
theme: PropTypes.oneOf(['light', 'dark']).def('light'),
2018-01-17 19:15:18 +08:00
mode: MenuMode.def('vertical'),
2018-01-16 15:41:00 +08:00
selectable: PropTypes.bool,
selectedKeys: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.string, PropTypes.number])),
2018-01-16 15:41:00 +08:00
defaultSelectedKeys: PropTypes.array,
openKeys: PropTypes.array,
defaultOpenKeys: PropTypes.array,
openAnimation: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
openTransitionName: PropTypes.string,
2019-04-10 09:41:02 +08:00
prefixCls: PropTypes.string,
2018-01-16 15:41:00 +08:00
multiple: PropTypes.bool,
inlineIndent: PropTypes.number.def(24),
inlineCollapsed: PropTypes.bool,
2018-01-30 17:13:44 +08:00
isRootMenu: PropTypes.bool.def(true),
update to antd3.8.3 (#159) * refactor: align * feat: update align to 2.4.3 * feat: update trigger 2.5.4 * feat: update tooltip 3.7.2 * fix: align * feat: update vc-calendar to 9.6.2 * feat: update vc-checkbox to 2.1.5 * feat: update vc-dialog to 7.1.8 * feat: update vc-from to 2.2.1 * feat: update vc-notification to 3.1.1 * test: update snapshots * feat: update vc-tree to 1.12.6 * feat: update vc-table to 6.2.8 * feat: update vc-upload to 2.5.1 * feat: update vc-input-number to 4.0.12 * feat: update vc-tabs to 9.2.6 * refactor: vc-menu * refactor: update vc-menu to 7.0.5 * style: remove unused * feat: update pagination to 1.16.5 * feat: add vc-progress 2.2.5 tag * feat: add vc-rate 2.4.0 tag * feat: update vc-slider to 8.6.1 * fix: tooltip error * style: delete conosle * feat: update vc-steps to 3.1.1 * add vc-switch tag 1.6.0 * feat: update upload to 2.5.1 * fix: update vc-menu * fix: update store * fix: add ref dir * fix: trigger mock shouldComponentUpdate * fix: update vc-select * revert: trigger lazyrenderbox * fix: update vc-select * fix: update vc-select * fix: update vc-select * fix: update vc-menu * fix: update vc-slick ref * update style to 3.8.2 * test: update snapshots * update vc-select * update util & affix * feat: add drawer * fix: support title add slot mode * test: update affix test * update alert * update anchor * update snapshots * fix: doc and vc-drawer * update select & auto-complete * update back-top & grid * feractor: avatar * test: add drawer test * update badge * update button * update card * update divider * feat: update vc-tabs to 9.3.6 and tabs * add afterEnter callback * update form * fix: update drawer * test: update snapshots * update modal & notification * test: update snapshots * update message * update locale-provider * update dropdown * update layout popconfirm popover * update time-picker * update menu * update date-picker * docs: update input docs * update input * update snapshots * update table * update test snapshots * feat: update progress * update checkbox * feat: update spin * update radio * docs: slider steps timeline * update list * update transfer * update collapse * update cascader * update upload
2018-09-05 21:28:54 +08:00
focusable: PropTypes.bool.def(false),
2019-01-12 11:33:27 +08:00
};
2018-01-16 15:41:00 +08:00
const Menu = {
2018-04-08 21:17:20 +08:00
name: 'AMenu',
2018-01-16 15:41:00 +08:00
props: menuProps,
2018-04-08 21:17:20 +08:00
Divider: { ...Divider, name: 'AMenuDivider' },
Item: { ...Item, name: 'AMenuItem' },
SubMenu: { ...SubMenu, name: 'ASubMenu' },
ItemGroup: { ...ItemGroup, name: 'AMenuItemGroup' },
2019-01-12 11:33:27 +08:00
provide() {
2018-01-16 15:41:00 +08:00
return {
2018-01-17 19:15:18 +08:00
getInlineCollapsed: this.getInlineCollapsed,
2019-01-12 11:33:27 +08:00
};
2018-01-16 15:41:00 +08:00
},
mixins: [BaseMixin],
inject: {
2019-01-28 21:09:13 +08:00
layoutSiderContext: { default: () => ({}) },
2019-09-11 22:35:25 +08:00
configProvider: { default: () => ConfigConsumerProps },
2018-01-16 19:15:07 +08:00
},
2018-01-17 19:15:18 +08:00
model: {
prop: 'selectedKeys',
event: 'selectChange',
},
2019-01-12 11:33:27 +08:00
created() {
this.preProps = { ...this.$props };
2018-02-12 12:13:37 +08:00
},
2019-01-12 11:33:27 +08:00
updated() {
this.propsUpdating = false;
},
2018-01-16 19:15:07 +08:00
watch: {
2019-01-12 11:33:27 +08:00
mode(val, oldVal) {
2018-12-09 20:04:00 +08:00
if (oldVal === 'inline' && val !== 'inline') {
2019-01-12 11:33:27 +08:00
this.switchingModeFromInline = true;
2018-12-09 20:04:00 +08:00
}
},
2019-01-12 11:33:27 +08:00
openKeys(val) {
this.setState({ sOpenKeys: val });
2018-12-09 20:04:00 +08:00
},
2019-01-12 11:33:27 +08:00
inlineCollapsed(val) {
this.collapsedChange(val);
2018-01-16 19:15:07 +08:00
},
2019-01-12 11:33:27 +08:00
'layoutSiderContext.sCollapsed': function(val) {
this.collapsedChange(val);
2018-01-17 19:15:18 +08:00
},
2018-01-16 15:41:00 +08:00
},
2019-01-12 11:33:27 +08:00
data() {
const props = this.$props;
2018-01-16 15:41:00 +08:00
warning(
!(hasProp(this, 'inlineCollapsed') && props.mode !== 'inline'),
2019-01-12 11:33:27 +08:00
"`inlineCollapsed` should only be used when Menu's `mode` is inline.",
);
this.switchingModeFromInline = false;
this.leaveAnimationExecutedWhenInlineCollapsed = false;
this.inlineOpenKeys = [];
let sOpenKeys;
if (hasProp(this, 'openKeys')) {
2019-01-12 11:33:27 +08:00
sOpenKeys = props.openKeys;
} else if (hasProp(this, 'defaultOpenKeys')) {
2019-01-12 11:33:27 +08:00
sOpenKeys = props.defaultOpenKeys;
2018-01-16 15:41:00 +08:00
}
return {
sOpenKeys,
2019-01-12 11:33:27 +08:00
};
2018-01-16 15:41:00 +08:00
},
methods: {
2019-01-12 11:33:27 +08:00
collapsedChange(val) {
if (this.propsUpdating) {
return;
}
this.propsUpdating = true;
if (!hasProp(this, 'openKeys')) {
if (val) {
2019-01-12 11:33:27 +08:00
this.switchingModeFromInline = true;
this.inlineOpenKeys = this.sOpenKeys;
this.setState({ sOpenKeys: [] });
} else {
2019-01-12 11:33:27 +08:00
this.setState({ sOpenKeys: this.inlineOpenKeys });
this.inlineOpenKeys = [];
}
} else if (val) {
// 缩起时openKeys置为空的动画会闪动react可以通过是否传递openKeys避免闪动vue不是很方便动态传递openKeys
2019-01-12 11:33:27 +08:00
this.switchingModeFromInline = true;
}
},
2019-01-12 11:33:27 +08:00
restoreModeVerticalFromInline() {
2018-12-09 20:04:00 +08:00
if (this.switchingModeFromInline) {
2019-01-12 11:33:27 +08:00
this.switchingModeFromInline = false;
this.$forceUpdate();
2018-12-09 20:04:00 +08:00
}
},
2018-12-13 21:26:21 +08:00
// Restore vertical mode when menu is collapsed responsively when mounted
// https://github.com/ant-design/ant-design/issues/13104
// TODO: not a perfect solution, looking a new way to avoid setting switchingModeFromInline in this situation
2019-01-12 11:33:27 +08:00
handleMouseEnter(e) {
this.restoreModeVerticalFromInline();
this.$emit('mouseenter', e);
2018-12-13 21:26:21 +08:00
},
2019-01-12 11:33:27 +08:00
handleTransitionEnd(e) {
2018-12-09 20:04:00 +08:00
// when inlineCollapsed menu width animation finished
// https://github.com/ant-design/ant-design/issues/12864
2019-01-12 11:33:27 +08:00
const widthCollapsed = e.propertyName === 'width' && e.target === e.currentTarget;
2018-12-09 20:04:00 +08:00
// Fix for <Menu style={{ width: '100%' }} />, the width transition won't trigger when menu is collapsed
// https://github.com/ant-design/ant-design-pro/issues/2783
2019-01-12 11:33:27 +08:00
const iconScaled =
e.propertyName === 'font-size' && e.target.className.indexOf('anticon') >= 0;
2018-12-09 20:04:00 +08:00
if (widthCollapsed || iconScaled) {
2019-01-12 11:33:27 +08:00
this.restoreModeVerticalFromInline();
2018-12-09 20:04:00 +08:00
}
},
2019-01-12 11:33:27 +08:00
handleClick(e) {
this.handleOpenChange([]);
this.$emit('click', e);
2018-01-16 15:41:00 +08:00
},
2019-01-12 11:33:27 +08:00
handleSelect(info) {
this.$emit('select', info);
this.$emit('selectChange', info.selectedKeys);
2018-01-17 19:15:18 +08:00
},
2019-01-12 11:33:27 +08:00
handleDeselect(info) {
this.$emit('deselect', info);
this.$emit('selectChange', info.selectedKeys);
2018-01-17 19:15:18 +08:00
},
2019-01-12 11:33:27 +08:00
handleOpenChange(openKeys) {
this.setOpenKeys(openKeys);
this.$emit('openChange', openKeys);
this.$emit('update:openKeys', openKeys);
2018-01-16 15:41:00 +08:00
},
2019-01-12 11:33:27 +08:00
setOpenKeys(openKeys) {
2018-01-16 19:15:07 +08:00
if (!hasProp(this, 'openKeys')) {
2019-01-12 11:33:27 +08:00
this.setState({ sOpenKeys: openKeys });
2018-01-16 15:41:00 +08:00
}
},
2019-01-12 11:33:27 +08:00
getRealMenuMode() {
const inlineCollapsed = this.getInlineCollapsed();
2018-12-09 20:04:00 +08:00
if (this.switchingModeFromInline && inlineCollapsed) {
2019-01-12 11:33:27 +08:00
return 'inline';
2018-01-16 15:41:00 +08:00
}
2019-01-12 11:33:27 +08:00
const { mode } = this.$props;
return inlineCollapsed ? 'vertical' : mode;
2018-01-16 15:41:00 +08:00
},
2019-01-12 11:33:27 +08:00
getInlineCollapsed() {
const { inlineCollapsed } = this.$props;
2018-04-20 12:52:31 +08:00
if (this.layoutSiderContext.sCollapsed !== undefined) {
2019-01-12 11:33:27 +08:00
return this.layoutSiderContext.sCollapsed;
2018-01-16 15:41:00 +08:00
}
2019-01-12 11:33:27 +08:00
return inlineCollapsed;
2018-01-16 15:41:00 +08:00
},
2019-01-12 11:33:27 +08:00
getMenuOpenAnimation(menuMode) {
const { openAnimation, openTransitionName } = this.$props;
let menuOpenAnimation = openAnimation || openTransitionName;
2018-01-16 15:41:00 +08:00
if (openAnimation === undefined && openTransitionName === undefined) {
2019-01-05 10:54:18 +08:00
if (menuMode === 'horizontal') {
2019-01-12 11:33:27 +08:00
menuOpenAnimation = 'slide-up';
2019-01-05 10:54:18 +08:00
} else if (menuMode === 'inline') {
2019-01-12 11:33:27 +08:00
menuOpenAnimation = { on: animation };
2019-01-05 10:54:18 +08:00
} else {
2018-01-16 15:41:00 +08:00
// When mode switch from inline
// submenu should hide without animation
2019-01-05 10:54:18 +08:00
if (this.switchingModeFromInline) {
2019-01-12 11:33:27 +08:00
menuOpenAnimation = '';
this.switchingModeFromInline = false;
2019-01-05 10:54:18 +08:00
} else {
2019-01-12 11:33:27 +08:00
menuOpenAnimation = 'zoom-big';
2019-01-05 10:54:18 +08:00
}
2018-01-16 15:41:00 +08:00
}
}
2019-01-12 11:33:27 +08:00
return menuOpenAnimation;
2018-01-16 15:41:00 +08:00
},
},
2019-01-12 11:33:27 +08:00
render() {
const { layoutSiderContext, $slots, $listeners } = this;
const { collapsedWidth } = layoutSiderContext;
const { getPopupContainer: getContextPopupContainer } = this.configProvider;
2019-04-10 09:41:02 +08:00
const { prefixCls: customizePrefixCls, theme, getPopupContainer } = this.$props;
2019-09-11 22:35:25 +08:00
const getPrefixCls = this.configProvider.getPrefixCls;
2019-04-10 09:41:02 +08:00
const prefixCls = getPrefixCls('menu', customizePrefixCls);
2019-01-12 11:33:27 +08:00
const menuMode = this.getRealMenuMode();
const menuOpenAnimation = this.getMenuOpenAnimation(menuMode);
2018-01-16 15:41:00 +08:00
const menuClassName = {
[`${prefixCls}-${theme}`]: true,
[`${prefixCls}-inline-collapsed`]: this.getInlineCollapsed(),
2019-01-12 11:33:27 +08:00
};
2018-01-16 15:41:00 +08:00
const menuProps = {
2018-01-16 19:15:07 +08:00
props: {
...omit(this.$props, ['inlineCollapsed']),
2019-01-05 10:54:18 +08:00
getPopupContainer: getPopupContainer || getContextPopupContainer,
2018-01-16 19:15:07 +08:00
openKeys: this.sOpenKeys,
mode: menuMode,
2019-04-10 09:41:02 +08:00
prefixCls,
2018-01-16 19:15:07 +08:00
},
on: {
2018-01-17 19:15:18 +08:00
...$listeners,
select: this.handleSelect,
deselect: this.handleDeselect,
2018-01-16 19:15:07 +08:00
openChange: this.handleOpenChange,
2018-12-13 21:26:21 +08:00
onMouseenter: this.handleMouseEnter,
2018-01-16 19:15:07 +08:00
},
2018-12-09 20:04:00 +08:00
nativeOn: {
transitionend: this.handleTransitionEnd,
},
2019-01-12 11:33:27 +08:00
};
2018-01-17 19:15:18 +08:00
if (!hasProp(this, 'selectedKeys')) {
2019-01-12 11:33:27 +08:00
delete menuProps.props.selectedKeys;
2018-01-16 15:41:00 +08:00
}
if (menuMode !== 'inline') {
// closing vertical popup submenu after click it
2019-01-12 11:33:27 +08:00
menuProps.on.click = this.handleClick;
menuProps.props.openTransitionName = menuOpenAnimation;
2018-01-16 15:41:00 +08:00
} else {
2019-01-12 11:33:27 +08:00
menuProps.on.click = e => {
this.$emit('click', e);
};
menuProps.props.openAnimation = menuOpenAnimation;
2018-01-16 15:41:00 +08:00
}
// https://github.com/ant-design/ant-design/issues/8587
if (
this.getInlineCollapsed() &&
(collapsedWidth === 0 || collapsedWidth === '0' || collapsedWidth === '0px')
) {
2019-01-12 11:33:27 +08:00
return null;
2018-01-16 15:41:00 +08:00
}
2019-01-12 11:33:27 +08:00
return (
<VcMenu {...menuProps} class={menuClassName}>
{$slots.default}
</VcMenu>
);
2018-01-16 15:41:00 +08:00
},
2019-01-12 11:33:27 +08:00
};
2018-01-16 15:41:00 +08:00
/* istanbul ignore next */
2019-01-12 11:33:27 +08:00
Menu.install = function(Vue) {
Vue.use(Base);
2019-01-12 11:33:27 +08:00
Vue.component(Menu.name, Menu);
Vue.component(Menu.Item.name, Menu.Item);
Vue.component(Menu.SubMenu.name, Menu.SubMenu);
Vue.component(Menu.Divider.name, Menu.Divider);
Vue.component(Menu.ItemGroup.name, Menu.ItemGroup);
};
export default Menu;