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.
ant-design-vue/components/menu/index.jsx

263 lines
8.1 KiB

7 years ago
import omit from 'omit.js'
7 years ago
import VcMenu, { Divider, ItemGroup, SubMenu } from '../vc-menu'
7 years ago
import PropTypes from '../_util/vue-types'
7 years ago
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'
7 years ago
import commonPropsType from '../vc-menu/commonPropsType'
7 years ago
export const MenuMode = PropTypes.oneOf(['vertical', 'vertical-left', 'vertical-right', 'horizontal', 'inline'])
export const menuProps = {
7 years ago
...commonPropsType,
7 years ago
theme: PropTypes.oneOf(['light', 'dark']).def('light'),
7 years ago
mode: MenuMode.def('vertical'),
7 years ago
selectable: PropTypes.bool,
7 years ago
selectedKeys: PropTypes.arrayOf(PropTypes.string),
7 years ago
defaultSelectedKeys: PropTypes.array,
openKeys: PropTypes.array,
defaultOpenKeys: PropTypes.array,
openAnimation: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
openTransitionName: PropTypes.string,
prefixCls: PropTypes.string.def('ant-menu'),
multiple: PropTypes.bool,
inlineIndent: PropTypes.number.def(24),
inlineCollapsed: PropTypes.bool,
7 years ago
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
6 years ago
focusable: PropTypes.bool.def(false),
7 years ago
}
const Menu = {
name: 'AMenu',
7 years ago
props: menuProps,
Divider: { ...Divider, name: 'AMenuDivider' },
Item: { ...Item, name: 'AMenuItem' },
SubMenu: { ...SubMenu, name: 'ASubMenu' },
ItemGroup: { ...ItemGroup, name: 'AMenuItemGroup' },
7 years ago
provide () {
return {
7 years ago
getInlineCollapsed: this.getInlineCollapsed,
7 years ago
}
},
mixins: [BaseMixin],
inject: {
7 years ago
layoutSiderContext: { default: {}},
7 years ago
},
7 years ago
model: {
prop: 'selectedKeys',
event: 'selectChange',
},
7 years ago
mounted () {
7 years ago
this.preProps = { ...this.$props }
7 years ago
},
7 years ago
watch: {
'$props': {
handler: function (nextProps) {
7 years ago
const { preProps, sOpenKeys } = this
const { prefixCls } = preProps
if (preProps.mode === 'inline' && nextProps.mode !== 'inline') {
this.switchModeFromInline = true
}
if (hasProp(this, 'openKeys')) {
this.setState({ sOpenKeys: nextProps.openKeys })
return
}
if (nextProps.inlineCollapsed && !preProps.inlineCollapsed) {
this.switchModeFromInline =
!!sOpenKeys.length && !!this.$el.querySelectorAll(`.${prefixCls}-submenu-open`).length
this.inlineOpenKeys = sOpenKeys
this.setState({ sOpenKeys: [] })
}
7 years ago
7 years ago
if (!nextProps.inlineCollapsed && preProps.inlineCollapsed) {
this.setState({ sOpenKeys: this.inlineOpenKeys })
this.inlineOpenKeys = []
}
7 years ago
this.preProps = { ...nextProps }
7 years ago
},
7 years ago
deep: true,
7 years ago
},
7 years ago
'layoutSiderContext.sCollapsed': function (val) {
const { openKeys, sOpenKeys = [], prefixCls } = this
7 years ago
if (hasProp(this, 'openKeys')) {
this.setState({ sOpenKeys: openKeys })
return
}
if (val) {
this.switchModeFromInline =
!!sOpenKeys.length && !!this.$el.querySelectorAll(`.${prefixCls}-submenu-open`).length
this.inlineOpenKeys = sOpenKeys
this.setState({ sOpenKeys: [] })
} else {
this.setState({ sOpenKeys: this.inlineOpenKeys })
this.inlineOpenKeys = []
}
},
7 years ago
},
data () {
const props = this.$props
warning(
!(hasProp(this, 'inlineCollapsed') && props.mode !== 'inline'),
'`inlineCollapsed` should only be used when Menu\'s `mode` is inline.',
)
this.switchModeFromInline = false
this.leaveAnimationExecutedWhenInlineCollapsed = false
this.inlineOpenKeys = []
let sOpenKeys
if (hasProp(this, 'defaultOpenKeys')) {
sOpenKeys = props.defaultOpenKeys
} else if (hasProp(this, 'openKeys')) {
sOpenKeys = props.openKeys
}
return {
sOpenKeys,
}
},
methods: {
handleClick (e) {
this.handleOpenChange([])
7 years ago
this.$emit('click', e)
7 years ago
},
7 years ago
handleSelect (info) {
this.$emit('select', info)
this.$emit('selectChange', info.selectedKeys)
},
handleDeselect (info) {
this.$emit('deselect', info)
this.$emit('selectChange', info.selectedKeys)
},
7 years ago
handleOpenChange (openKeys) {
this.setOpenKeys(openKeys)
7 years ago
this.$emit('openChange', openKeys)
7 years ago
this.$emit('update:openKeys', openKeys)
7 years ago
},
setOpenKeys (openKeys) {
7 years ago
if (!hasProp(this, 'openKeys')) {
this.setState({ sOpenKeys: openKeys })
7 years ago
}
},
getRealMenuMode () {
const inlineCollapsed = this.getInlineCollapsed()
if (this.switchModeFromInline && inlineCollapsed) {
return 'inline'
}
7 years ago
const { mode } = this.$props
7 years ago
return inlineCollapsed ? 'vertical' : mode
},
getInlineCollapsed () {
7 years ago
const { inlineCollapsed } = this.$props
7 years ago
if (this.layoutSiderContext.sCollapsed !== undefined) {
return this.layoutSiderContext.sCollapsed
7 years ago
}
return inlineCollapsed
},
getMenuOpenAnimation (menuMode) {
7 years ago
const { openAnimation, openTransitionName } = this.$props
7 years ago
let menuOpenAnimation = openAnimation || openTransitionName
if (openAnimation === undefined && openTransitionName === undefined) {
switch (menuMode) {
case 'horizontal':
menuOpenAnimation = 'slide-up'
break
case 'vertical':
case 'vertical-left':
case 'vertical-right':
// When mode switch from inline
// submenu should hide without animation
if (this.switchModeFromInline) {
menuOpenAnimation = ''
this.switchModeFromInline = false
} else {
menuOpenAnimation = 'zoom-big'
}
break
case 'inline':
7 years ago
menuOpenAnimation = { on: {
7 years ago
...animation,
7 years ago
leave: (node, done) => animation.leave(node, () => {
7 years ago
// Make sure inline menu leave animation finished before mode is switched
this.switchModeFromInline = false
7 years ago
// this.setState({})
this.$forceUpdate()
7 years ago
// when inlineCollapsed change false to true, all submenu will be unmounted,
// so that we don't need handle animation leaving.
if (this.getRealMenuMode() === 'vertical') {
return
}
done()
}),
7 years ago
}}
7 years ago
break
default:
}
}
return menuOpenAnimation
},
},
render () {
7 years ago
const { layoutSiderContext, $slots, $listeners } = this
const { collapsedWidth } = layoutSiderContext
7 years ago
const { prefixCls, theme } = this.$props
7 years ago
const menuMode = this.getRealMenuMode()
const menuOpenAnimation = this.getMenuOpenAnimation(menuMode)
const menuClassName = {
[`${prefixCls}-${theme}`]: true,
[`${prefixCls}-inline-collapsed`]: this.getInlineCollapsed(),
}
const menuProps = {
7 years ago
props: {
...omit(this.$props, ['inlineCollapsed']),
openKeys: this.sOpenKeys,
mode: menuMode,
},
on: {
7 years ago
...$listeners,
select: this.handleSelect,
deselect: this.handleDeselect,
7 years ago
openChange: this.handleOpenChange,
},
7 years ago
}
if (!hasProp(this, 'selectedKeys')) {
delete menuProps.props.selectedKeys
7 years ago
}
if (menuMode !== 'inline') {
// closing vertical popup submenu after click it
7 years ago
menuProps.on.click = this.handleClick
menuProps.props.openTransitionName = menuOpenAnimation
7 years ago
} else {
menuProps.on.click = (e) => {
this.$emit('click', e)
}
7 years ago
menuProps.props.openAnimation = menuOpenAnimation
7 years ago
}
// https://github.com/ant-design/ant-design/issues/8587
if (
this.getInlineCollapsed() &&
(collapsedWidth === 0 || collapsedWidth === '0' || collapsedWidth === '0px')
) {
return null
}
7 years ago
return <VcMenu {...menuProps} class={menuClassName}>{$slots.default}</VcMenu>
7 years ago
},
}
/* istanbul ignore next */
Menu.install = function (Vue) {
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