1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _propsUtil = require('../_util/props-util');
var _vueTypes = require('../_util/vue-types');
var _vueTypes2 = _interopRequireDefault(_vueTypes);
var _arrayTreeFilter = require('array-tree-filter');
var _arrayTreeFilter2 = _interopRequireDefault(_arrayTreeFilter);
var _BaseMixin = require('../_util/BaseMixin');
var _BaseMixin2 = _interopRequireDefault(_BaseMixin);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
exports['default'] = {
name: 'CascaderMenus',
mixins: [_BaseMixin2['default']],
props: {
value: _vueTypes2['default'].array.def([]),
activeValue: _vueTypes2['default'].array.def([]),
options: _vueTypes2['default'].array.isRequired,
prefixCls: _vueTypes2['default'].string.def('rc-cascader-menus'),
expandTrigger: _vueTypes2['default'].string.def('click'),
// onSelect: PropTypes.func,
visible: _vueTypes2['default'].bool.def(false),
dropdownMenuColumnStyle: _vueTypes2['default'].object,
defaultFieldNames: _vueTypes2['default'].object,
fieldNames: _vueTypes2['default'].object,
expandIcon: _vueTypes2['default'].any,
loadingIcon: _vueTypes2['default'].any
},
data: function data() {
this.menuItems = {};
return {};
},
watch: {
visible: function visible(val) {
var _this = this;
if (val) {
this.$nextTick(function () {
_this.scrollActiveItemToView();
});
}
}
},
mounted: function mounted() {
var _this2 = this;
this.$nextTick(function () {
_this2.scrollActiveItemToView();
});
},
methods: {
getFieldName: function getFieldName(name) {
var _$props = this.$props,
fieldNames = _$props.fieldNames,
defaultFieldNames = _$props.defaultFieldNames;
// 防止只设置单个属性的名字
return fieldNames[name] || defaultFieldNames[name];
},
getOption: function getOption(option, menuIndex) {
var _this3 = this;
var h = this.$createElement;
var prefixCls = this.prefixCls,
expandTrigger = this.expandTrigger;
var loadingIcon = (0, _propsUtil.getComponentFromProp)(this, 'loadingIcon');
var expandIcon = (0, _propsUtil.getComponentFromProp)(this, 'expandIcon');
var onSelect = function onSelect(e) {
_this3.__emit('select', option, menuIndex, e);
};
var key = option[this.getFieldName('value')];
var expandProps = {
attrs: {},
on: {
click: onSelect
},
key: Array.isArray(key) ? key.join('__ant__') : key
};
var menuItemCls = prefixCls + '-menu-item';
var expandIconNode = null;
var 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 = h(
'span',
{ 'class': prefixCls + '-menu-item-expand-icon' },
[expandIcon]
);
}
}
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';
}
var loadingIconNode = null;
if (option.loading) {
menuItemCls += ' ' + prefixCls + '-menu-item-loading';
loadingIconNode = loadingIcon || null;
}
var title = '';
if (option.title) {
title = option.title;
} else if (typeof option[this.getFieldName('label')] === 'string') {
title = option[this.getFieldName('label')];
}
expandProps.attrs.title = title;
expandProps['class'] = menuItemCls;
return h(
'li',
expandProps,
[option[this.getFieldName('label')], expandIconNode, loadingIconNode]
);
},
getActiveOptions: function getActiveOptions(values) {
var _this4 = this;
var activeValue = values || this.activeValue;
var options = this.options;
return (0, _arrayTreeFilter2['default'])(options, function (o, level) {
return o[_this4.getFieldName('value')] === activeValue[level];
}, { childrenKeyName: this.getFieldName('children') });
},
getShowOptions: function getShowOptions() {
var _this5 = this;
var options = this.options;
var result = this.getActiveOptions().map(function (activeOption) {
return activeOption[_this5.getFieldName('children')];
}).filter(function (activeOption) {
return !!activeOption;
});
result.unshift(options);
return result;
},
delayOnSelect: function delayOnSelect(onSelect) {
var _this6 = this;
for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
args[_key - 1] = arguments[_key];
}
if (this.delayTimer) {
clearTimeout(this.delayTimer);
this.delayTimer = null;
}
if (typeof onSelect === 'function') {
this.delayTimer = setTimeout(function () {
onSelect(args);
_this6.delayTimer = null;
}, 150);
}
},
scrollActiveItemToView: function scrollActiveItemToView() {
// scroll into view
var optionsLength = this.getShowOptions().length;
for (var i = 0; i < optionsLength; i++) {
var itemComponent = this.$refs['menuItems_' + i];
if (itemComponent) {
var target = itemComponent;
target.parentNode.scrollTop = target.offsetTop;
}
}
},
isActiveOption: function isActiveOption(option, menuIndex) {
var _activeValue = this.activeValue,
activeValue = _activeValue === undefined ? [] : _activeValue;
return activeValue[menuIndex] === option[this.getFieldName('value')];
},
getMenuItemRef: function getMenuItemRef(index) {
return 'menuItems_' + index;
}
},
render: function render() {
var _this7 = this;
var h = arguments[0];
var prefixCls = this.prefixCls,
dropdownMenuColumnStyle = this.dropdownMenuColumnStyle;
return h('div', [this.getShowOptions().map(function (options, menuIndex) {
return h(
'ul',
{ 'class': prefixCls + '-menu', key: menuIndex, style: dropdownMenuColumnStyle },
[options.map(function (option) {
return _this7.getOption(option, menuIndex);
})]
);
})]);
}
};