import PropTypes from '../_util/vue-types' import arrayTreeFilter from 'array-tree-filter' import BaseMixin from '../_util/BaseMixin' export default { mixins: [BaseMixin], props: { value: PropTypes.array.def([]), activeValue: PropTypes.array.def([]), options: PropTypes.array.isRequired, prefixCls: PropTypes.string.def('rc-cascader-menus'), expandTrigger: PropTypes.string.def('click'), // onSelect: PropTypes.func, visible: PropTypes.bool.def(false), dropdownMenuColumnStyle: PropTypes.object, }, data () { this.menuItems = {} return {} }, mounted () { this.$nextTick(() => { this.scrollActiveItemToView() }) }, watch: { visible (val) { if (val) { this.$nextTick(() => { this.scrollActiveItemToView() }) } }, }, methods: { getOption (option, menuIndex) { const { prefixCls, expandTrigger } = this const onSelect = (e) => { this.__emit('select', option, menuIndex, e) } const expandProps = { attrs: { }, on: { click: onSelect, }, key: option.value.toString(), } let menuItemCls = `${prefixCls}-menu-item` const hasChildren = option.children && option.children.length > 0 if (hasChildren || option.isLeaf === false) { menuItemCls += ` ${prefixCls}-menu-item-expand` } if (expandTrigger === 'hover' && hasChildren) { expandProps.on = { mouseenter: this.delayOnSelect.bind(this, onSelect), mouseleave: this.delayOnSelect.bind(this), click: onSelect, } } if (this.isActiveOption(option, menuIndex)) { menuItemCls += ` ${prefixCls}-menu-item-active` expandProps.ref = this.getMenuItemRef(menuIndex) } if (option.disabled) { menuItemCls += ` ${prefixCls}-menu-item-disabled` } if (option.loading) { menuItemCls += ` ${prefixCls}-menu-item-loading` } let title = '' if (option.title) { title = option.title } else if (typeof option.label === 'string') { title = option.label } expandProps.attrs.title = title expandProps.class = menuItemCls return (