import { getComponent, findDOMNode } from '../_util/props-util'; import PropTypes from '../_util/vue-types'; import arrayTreeFilter from 'array-tree-filter'; import BaseMixin from '../_util/BaseMixin'; import isEqual from 'lodash-es/isEqual'; export default { name: 'CascaderMenus', mixins: [BaseMixin], inheritAttrs: false, props: { value: PropTypes.array.def([]), activeValue: PropTypes.array.def([]), options: PropTypes.array, prefixCls: PropTypes.string.def('rc-cascader-menus'), expandTrigger: PropTypes.string.def('click'), // onSelect: PropTypes.func, visible: PropTypes.looseBool.def(false), dropdownMenuColumnStyle: PropTypes.object, defaultFieldNames: PropTypes.object, fieldNames: PropTypes.object, expandIcon: PropTypes.any, loadingIcon: PropTypes.any, }, data() { this.menuItems = {}; return {}; }, watch: { visible(val) { if (val) { this.$nextTick(() => { this.scrollActiveItemToView(); }); } }, }, mounted() { this.$nextTick(() => { this.scrollActiveItemToView(); }); }, methods: { getFieldName(name) { const { fieldNames, defaultFieldNames } = this.$props; // 防止只设置单个属性的名字 return fieldNames[name] || defaultFieldNames[name]; }, getOption(option, menuIndex) { const { prefixCls, expandTrigger } = this; const loadingIcon = getComponent(this, 'loadingIcon'); const expandIcon = getComponent(this, 'expandIcon'); const onSelect = e => { this.__emit('select', option, menuIndex, e); }; const onItemDoubleClick = e => { this.__emit('itemDoubleClick', option, menuIndex, e); }; const key = option[this.getFieldName('value')]; let expandProps = { onClick: onSelect, onDblclick: onItemDoubleClick, }; let menuItemCls = `${prefixCls}-menu-item`; let expandIconNode = null; const hasChildren = option[this.getFieldName('children')] && option[this.getFieldName('children')].length > 0; if (hasChildren || option.isLeaf === false) { menuItemCls += ` ${prefixCls}-menu-item-expand`; if (!option.loading) { expandIconNode = {expandIcon}; } } if (expandTrigger === 'hover' && (hasChildren || option.isLeaf === false)) { expandProps = { onMouseenter: this.delayOnSelect.bind(this, onSelect), onMouseleave: this.delayOnSelect.bind(this), onClick: onSelect, }; } if (this.isActiveOption(option, menuIndex)) { menuItemCls += ` ${prefixCls}-menu-item-active`; expandProps.ref = this.saveMenuItem(menuIndex); } if (option.disabled) { menuItemCls += ` ${prefixCls}-menu-item-disabled`; } let loadingIconNode = null; if (option.loading) { menuItemCls += ` ${prefixCls}-menu-item-loading`; loadingIconNode = loadingIcon || null; } let title = ''; if (option.title) { title = option.title; } else if (typeof option[this.getFieldName('label')] === 'string') { title = option[this.getFieldName('label')]; } return ( ); }, getActiveOptions(values) { const activeValue = values || this.activeValue; const options = this.options; return arrayTreeFilter( options, (o, level) => isEqual(o[this.getFieldName('value')], activeValue[level]), { childrenKeyName: this.getFieldName('children') }, ); }, getShowOptions() { const { options } = this; const result = this.getActiveOptions() .map(activeOption => activeOption[this.getFieldName('children')]) .filter(activeOption => !!activeOption); result.unshift(options); return result; }, delayOnSelect(onSelect, ...args) { if (this.delayTimer) { clearTimeout(this.delayTimer); this.delayTimer = null; } if (typeof onSelect === 'function') { this.delayTimer = setTimeout(() => { onSelect(args); this.delayTimer = null; }, 150); } }, scrollActiveItemToView() { // scroll into view const optionsLength = this.getShowOptions().length; for (let i = 0; i < optionsLength; i++) { const itemComponent = this.menuItems[i]; if (itemComponent) { const target = findDOMNode(itemComponent); target.parentNode.scrollTop = target.offsetTop; } } }, isActiveOption(option, menuIndex) { const { activeValue = [] } = this; return isEqual(activeValue[menuIndex], option[this.getFieldName('value')]); }, saveMenuItem(index) { return node => { this.menuItems[index] = node; }; }, }, render() { const { prefixCls, dropdownMenuColumnStyle } = this; return (
{this.getShowOptions().map((options, menuIndex) => ( ))}
); }, };