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/vc-menu/SubPopupMenu.jsx

365 lines
11 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import omit from 'omit.js'
import PropTypes from '../_util/vue-types'
import { connect } from '../_util/store'
import BaseMixin from '../_util/BaseMixin'
import KeyCode from '../_util/KeyCode'
import classNames from 'classnames'
import { getKeyFromChildrenIndex, loopMenuItem, noop } from './util'
import DOMWrap from './DOMWrap'
import { cloneElement } from '../_util/vnode'
import { initDefaultProps, getOptionProps, getEvents } from '../_util/props-util'
function allDisabled (arr) {
if (!arr.length) {
return true
}
return arr.every(c => {
return !!c.disabled
})
}
function updateActiveKey (store, menuId, activeKey) {
const state = store.getState()
store.setState({
activeKey: {
...state.activeKey,
[menuId]: activeKey,
},
})
}
export function saveRef (key, c) {
if (c) {
const index = this.instanceArrayKeyIndexMap[key]
this.instanceArray[index] = c
// const index = this.instanceArray.indexOf(c)
// if (index !== -1) {
// // update component if it's already inside instanceArray
// this.instanceArray[index] = c
// } else {
// // add component if it's not in instanceArray yet;
// this.instanceArray.push(c)
// }
}
}
export function getActiveKey (props, originalActiveKey) {
let activeKey = originalActiveKey
const { eventKey, defaultActiveFirst, children } = props
if (activeKey) {
let found
loopMenuItem(children, (c, i) => {
const propsData = c.componentOptions.propsData || {}
if (c && !propsData.disabled && activeKey === getKeyFromChildrenIndex(c, eventKey, i)) {
found = true
}
})
if (found) {
return activeKey
}
}
activeKey = null
if (defaultActiveFirst) {
loopMenuItem(children, (c, i) => {
const propsData = c.componentOptions.propsData || {}
if (!activeKey && c && !propsData.disabled) {
activeKey = getKeyFromChildrenIndex(c, eventKey, i)
}
})
return activeKey
}
return activeKey
}
const SubPopupMenu = {
name: 'SubPopupMenu',
props: initDefaultProps({
// onSelect: PropTypes.func,
// onClick: PropTypes.func,
// onDeselect: PropTypes.func,
// onOpenChange: PropTypes.func,
// onDestroy: PropTypes.func,
prefixCls: PropTypes.string,
openTransitionName: PropTypes.string,
openAnimation: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
openKeys: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.string, PropTypes.number])),
visible: PropTypes.bool,
parentMenu: PropTypes.object,
eventKey: PropTypes.string,
store: PropTypes.object,
// adding in refactor
focusable: PropTypes.bool,
multiple: PropTypes.bool,
defaultActiveFirst: PropTypes.bool,
activeKey: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
selectedKeys: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.string, PropTypes.number])),
defaultSelectedKeys: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.string, PropTypes.number])),
defaultOpenKeys: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.string, PropTypes.number])),
level: PropTypes.number,
mode: PropTypes.oneOf(['horizontal', 'vertical', 'vertical-left', 'vertical-right', 'inline']),
triggerSubMenuAction: PropTypes.oneOf(['click', 'hover']),
inlineIndent: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
manualRef: PropTypes.func,
children: PropTypes.any.def([]),
__propsSymbol__: PropTypes.any, // mock componentWillReceiveProps
}, {
prefixCls: 'rc-menu',
mode: 'vertical',
level: 1,
inlineIndent: 24,
visible: true,
focusable: true,
manualRef: noop,
}),
mixins: [BaseMixin],
created () {
const props = this.$props
props.store.setState({
activeKey: {
...props.store.getState().activeKey,
[props.eventKey]: getActiveKey(props, props.activeKey),
},
})
this.instanceArray = []
},
mounted () {
// invoke customized ref to expose component to mixin
if (this.manualRef) {
this.manualRef(this)
}
},
watch: {
__propsSymbol__ () {
const props = getOptionProps(this)
const storeActiveKey = this.getStore().getState().activeKey[this.getEventKey()]
const originalActiveKey = 'activeKey' in props ? props.activeKey
: storeActiveKey
const activeKey = getActiveKey(props, originalActiveKey)
if (activeKey !== originalActiveKey || storeActiveKey !== activeKey) {
updateActiveKey(this.getStore(), this.getEventKey(), activeKey)
}
},
},
methods: {
// all keyboard events callbacks run from here at first
onKeyDown (e, callback) {
const keyCode = e.keyCode
let handled
this.getFlatInstanceArray().forEach((obj) => {
if (obj && obj.active && obj.onKeyDown) {
handled = obj.onKeyDown(e)
}
})
if (handled) {
return 1
}
let activeItem = null
if (keyCode === KeyCode.UP || keyCode === KeyCode.DOWN) {
activeItem = this.step(keyCode === KeyCode.UP ? -1 : 1)
}
if (activeItem) {
e.preventDefault()
updateActiveKey(this.getStore(), this.getEventKey(), activeItem.eventKey)
if (typeof callback === 'function') {
callback(activeItem)
}
return 1
}
},
onItemHover (e) {
const { key, hover } = e
updateActiveKey(this.getStore(), this.getEventKey(), hover ? key : null)
},
onDeselect (selectInfo) {
this.__emit('deselect', selectInfo)
},
onSelect (selectInfo) {
this.__emit('select', selectInfo)
},
onClick (e) {
this.__emit('click', e)
},
onOpenChange (e) {
this.__emit('openChange', e)
},
onDestroy (key) {
this.__emit('destroy', key)
},
getFlatInstanceArray () {
return this.instanceArray
},
getStore () {
return this.store
},
getEventKey () {
// when eventKey not available ,it's menu and return menu id '0-menu-'
return this.eventKey || '0-menu-'
},
getOpenTransitionName () {
return this.$props.openTransitionName
},
step (direction) {
let children = this.getFlatInstanceArray()
const activeKey = this.getStore().getState().activeKey[this.getEventKey()]
const len = children.length
if (!len) {
return null
}
if (direction < 0) {
children = children.concat().reverse()
}
// find current activeIndex
let activeIndex = -1
children.every((c, ci) => {
if (c && c.eventKey === activeKey) {
activeIndex = ci
return false
}
return true
})
if (
!this.defaultActiveFirst && activeIndex !== -1 &&
allDisabled(children.slice(activeIndex, len - 1))
) {
return undefined
}
const start = (activeIndex + 1) % len
let i = start
do {
const child = children[i]
if (!child || child.disabled) {
i = (i + 1) % len
} else {
return child
}
} while (i !== start)
return null
},
renderCommonMenuItem (child, i, extraProps) {
if (child.tag === undefined) { return child }
const state = this.getStore().getState()
const props = this.$props
const key = getKeyFromChildrenIndex(child, props.eventKey, i)
const childProps = child.componentOptions.propsData || {}
const isActive = key === state.activeKey[this.getEventKey()]
if (!childProps.disabled) {
// manualRef的执行顺序不能保证使用key映射ref在this.instanceArray中的位置
this.instanceArrayKeyIndexMap[key] = Object.keys(this.instanceArrayKeyIndexMap).length
}
const childListeners = getEvents(child)
const newChildProps = {
props: {
mode: props.mode,
level: props.level,
inlineIndent: props.inlineIndent,
renderMenuItem: this.renderMenuItem,
rootPrefixCls: props.prefixCls,
index: i,
parentMenu: props.parentMenu,
// customized ref function, need to be invoked manually in child's componentDidMount
manualRef: childProps.disabled ? noop : saveRef.bind(this, key),
eventKey: key,
active: !childProps.disabled && isActive,
multiple: props.multiple,
openTransitionName: this.getOpenTransitionName(),
openAnimation: props.openAnimation,
subMenuOpenDelay: props.subMenuOpenDelay,
subMenuCloseDelay: props.subMenuCloseDelay,
forceSubMenuRender: props.forceSubMenuRender,
...extraProps,
},
on: {
click: (e) => {
(childListeners.click || noop)(e)
this.onClick(e)
},
itemHover: this.onItemHover,
openChange: this.onOpenChange,
deselect: this.onDeselect,
// destroy: this.onDestroy,
select: this.onSelect,
},
}
if (props.mode === 'inline') {
newChildProps.props.triggerSubMenuAction = 'click'
}
return cloneElement(child, newChildProps)
},
renderMenuItem (c, i, subMenuKey) {
if (!c) {
return null
}
const state = this.getStore().getState()
const extraProps = {
openKeys: state.openKeys,
selectedKeys: state.selectedKeys,
triggerSubMenuAction: this.triggerSubMenuAction,
isRootMenu: false,
subMenuKey,
}
return this.renderCommonMenuItem(c, i, extraProps)
},
},
render () {
const { ...props } = this.$props
const { eventKey, visible } = props
this.instanceArray = []
this.instanceArrayKeyIndexMap = {}
const className = classNames(
props.prefixCls,
`${props.prefixCls}-${props.mode}`,
)
const domWrapProps = {
props: {
tag: 'ul',
// hiddenClassName: `${prefixCls}-hidden`,
visible,
},
attrs: {
role: props.role || 'menu',
},
class: className,
// Otherwise, the propagated click event will trigger another onClick
on: omit(this.$listeners || {}, ['click']),
}
// if (props.id) {
// domProps.id = props.id
// }
if (props.focusable) {
domWrapProps.attrs.tabIndex = '0'
domWrapProps.on.keydown = this.onKeyDown
}
return (
// ESLint is not smart enough to know that the type of `children` was checked.
/* eslint-disable */
<DOMWrap
{...domWrapProps}
>
{props.children.map((c, i) => this.renderMenuItem(c, i, eventKey || '0-menu-'))}
</DOMWrap>
/*eslint -enable */
)
},
}
export default connect()(SubPopupMenu);