ant-design-vue/components/vc-menu/Menu.jsx

194 lines
5.0 KiB
React
Raw Normal View History

2018-03-19 02:16:27 +00:00
2018-02-06 09:22:36 +00:00
import PropTypes from '../_util/vue-types'
2017-12-12 05:49:02 +00:00
import MenuMixin from './MenuMixin'
2018-02-06 09:22:36 +00:00
import BaseMixin from '../_util/BaseMixin'
import hasProp from '../_util/props-util'
2018-01-04 11:06:54 +00:00
import commonPropsType from './commonPropsType'
2017-12-12 05:49:02 +00:00
const Menu = {
name: 'Menu',
props: {
2018-01-04 11:06:54 +00:00
...commonPropsType,
2018-01-19 10:18:17 +00:00
selectable: PropTypes.bool.def(true),
2017-12-12 05:49:02 +00:00
},
2018-01-12 08:10:41 +00:00
mixins: [BaseMixin, MenuMixin],
2017-12-12 05:49:02 +00:00
data () {
const props = this.$props
2018-01-02 11:05:02 +00:00
let sSelectedKeys = props.defaultSelectedKeys
let sOpenKeys = props.defaultOpenKeys
2018-01-08 10:31:04 +00:00
if (hasProp(this, 'selectedKeys')) {
sSelectedKeys = props.selectedKeys || []
}
if (hasProp(this, 'openKeys')) {
sOpenKeys = props.openKeys || []
}
2018-01-30 09:13:44 +00:00
// this.isRootMenu = true
2017-12-12 05:49:02 +00:00
return {
2018-01-02 11:05:02 +00:00
sSelectedKeys,
sOpenKeys,
2017-12-12 05:49:02 +00:00
}
},
2017-12-27 10:15:11 +00:00
watch: {
'$props': {
handler: function (nextProps) {
2018-01-08 10:31:04 +00:00
if (hasProp(this, 'selectedKeys')) {
2018-01-29 11:02:18 +00:00
this.setState({
sSelectedKeys: nextProps.selectedKeys || [],
})
2017-12-27 10:15:11 +00:00
}
2018-01-17 11:15:18 +00:00
if (hasProp(this, 'openKeys')) {
2018-01-29 11:02:18 +00:00
this.setState({
sOpenKeys: nextProps.openKeys || [],
})
2017-12-27 10:15:11 +00:00
}
},
deep: true,
},
2017-12-12 05:49:02 +00:00
},
methods: {
2018-01-17 08:12:53 +00:00
// onDestroy (key) {
// const state = this.$data
// const sSelectedKeys = state.sSelectedKeys
// const sOpenKeys = state.sOpenKeys
// let index = sSelectedKeys.indexOf(key)
// if (!hasProp(this, 'selectedKeys') && index !== -1) {
// sSelectedKeys.splice(index, 1)
// }
// index = sOpenKeys.indexOf(key)
// if (!hasProp(this, 'openKeys') && index !== -1) {
// sOpenKeys.splice(index, 1)
// }
// },
2017-12-12 05:49:02 +00:00
onSelect (selectInfo) {
const props = this.$props
if (props.selectable) {
// root menu
2018-01-02 11:05:02 +00:00
let sSelectedKeys = this.$data.sSelectedKeys
2017-12-12 05:49:02 +00:00
const selectedKey = selectInfo.key
if (props.multiple) {
2018-01-02 11:05:02 +00:00
sSelectedKeys = sSelectedKeys.concat([selectedKey])
2017-12-12 05:49:02 +00:00
} else {
2018-01-02 11:05:02 +00:00
sSelectedKeys = [selectedKey]
2017-12-12 05:49:02 +00:00
}
2018-01-02 11:05:02 +00:00
if (!hasProp(this, 'selectedKeys')) {
2017-12-12 05:49:02 +00:00
this.setState({
2018-01-02 11:05:02 +00:00
sSelectedKeys,
2017-12-12 05:49:02 +00:00
})
}
2018-01-12 08:10:41 +00:00
this.__emit('select', {
2017-12-12 05:49:02 +00:00
...selectInfo,
2018-01-17 11:15:18 +00:00
selectedKeys: sSelectedKeys,
2017-12-12 05:49:02 +00:00
})
}
},
onClick (e) {
2018-01-12 08:10:41 +00:00
this.__emit('click', e)
2017-12-12 05:49:02 +00:00
},
2018-01-17 08:12:53 +00:00
onOpenChange (event) {
2018-01-02 11:05:02 +00:00
const sOpenKeys = this.$data.sOpenKeys.concat()
2017-12-12 05:49:02 +00:00
let changed = false
const processSingle = (e) => {
let oneChanged = false
if (e.open) {
2018-01-02 11:05:02 +00:00
oneChanged = sOpenKeys.indexOf(e.key) === -1
2017-12-12 05:49:02 +00:00
if (oneChanged) {
2018-01-02 11:05:02 +00:00
sOpenKeys.push(e.key)
2017-12-12 05:49:02 +00:00
}
} else {
2018-01-02 11:05:02 +00:00
const index = sOpenKeys.indexOf(e.key)
2017-12-12 05:49:02 +00:00
oneChanged = index !== -1
if (oneChanged) {
2018-01-02 11:05:02 +00:00
sOpenKeys.splice(index, 1)
2017-12-12 05:49:02 +00:00
}
}
changed = changed || oneChanged
}
2018-01-17 08:12:53 +00:00
if (Array.isArray(event)) {
2017-12-12 05:49:02 +00:00
// batch change call
2018-01-17 08:12:53 +00:00
event.forEach(processSingle)
2017-12-12 05:49:02 +00:00
} else {
2018-01-17 08:12:53 +00:00
processSingle(event)
2017-12-12 05:49:02 +00:00
}
if (changed) {
2018-01-02 11:05:02 +00:00
if (!hasProp(this, 'openKeys')) {
this.setState({ sOpenKeys })
2017-12-12 05:49:02 +00:00
}
2018-01-12 08:10:41 +00:00
this.__emit('openChange', sOpenKeys)
2017-12-12 05:49:02 +00:00
}
},
onDeselect (selectInfo) {
const props = this.$props
if (props.selectable) {
2018-01-02 11:05:02 +00:00
const sSelectedKeys = this.$data.sSelectedKeys.concat()
2017-12-12 05:49:02 +00:00
const selectedKey = selectInfo.key
2018-01-02 11:05:02 +00:00
const index = sSelectedKeys.indexOf(selectedKey)
2017-12-12 05:49:02 +00:00
if (index !== -1) {
2018-01-02 11:05:02 +00:00
sSelectedKeys.splice(index, 1)
2017-12-12 05:49:02 +00:00
}
2018-01-02 11:05:02 +00:00
if (!hasProp(this, 'selectedKeys')) {
2017-12-12 05:49:02 +00:00
this.setState({
2018-01-02 11:05:02 +00:00
sSelectedKeys,
2017-12-12 05:49:02 +00:00
})
}
2018-01-12 08:10:41 +00:00
this.__emit('deselect', {
2017-12-12 05:49:02 +00:00
...selectInfo,
2018-01-17 11:15:18 +00:00
selectedKeys: sSelectedKeys,
2017-12-12 05:49:02 +00:00
})
}
},
getOpenTransitionName () {
const props = this.$props
let transitionName = props.openTransitionName
const animationName = props.openAnimation
if (!transitionName && typeof animationName === 'string') {
transitionName = `${props.prefixCls}-open-${animationName}`
}
return transitionName
},
isInlineMode () {
return this.$props.mode === 'inline'
},
lastOpenSubMenu () {
let lastOpen = []
2018-01-02 11:05:02 +00:00
const { sOpenKeys } = this.$data
if (sOpenKeys.length) {
2017-12-12 05:49:02 +00:00
lastOpen = this.getFlatInstanceArray().filter((c) => {
2018-01-09 06:21:15 +00:00
return c && sOpenKeys.indexOf(c.eventKey) !== -1
2017-12-12 05:49:02 +00:00
})
}
return lastOpen[0]
},
renderMenuItem (c, i, subIndex) {
if (!c) {
return null
}
const state = this.$data
const extraProps = {
2018-01-02 11:05:02 +00:00
openKeys: state.sOpenKeys,
selectedKeys: state.sSelectedKeys,
2017-12-12 05:49:02 +00:00
triggerSubMenuAction: this.$props.triggerSubMenuAction,
2018-01-30 09:13:44 +00:00
isRootMenu: this.isRootMenu,
2017-12-12 05:49:02 +00:00
}
return this.renderCommonMenuItem(c, i, subIndex, extraProps)
},
},
render () {
const props = { ...this.$props }
2018-01-02 11:05:02 +00:00
props.class = ` ${props.prefixCls}-root`
2018-01-03 10:30:12 +00:00
return this.renderRoot(props, this.$slots.default)
2017-12-12 05:49:02 +00:00
},
}
export default Menu
2018-03-19 02:16:27 +00:00