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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _extends2 = require('babel-runtime/helpers/extends');
var _extends3 = _interopRequireDefault(_extends2);
var _raf = require('raf');
var _raf2 = _interopRequireDefault(_raf);
var _vueTypes = require('../_util/vue-types');
var _vueTypes2 = _interopRequireDefault(_vueTypes);
var _vcMenu = require('../vc-menu');
var _vcMenu2 = _interopRequireDefault(_vcMenu);
var _domScrollIntoView = require('dom-scroll-into-view');
var _domScrollIntoView2 = _interopRequireDefault(_domScrollIntoView);
var _util = require('./util');
var _vnode = require('../_util/vnode');
var _BaseMixin = require('../_util/BaseMixin');
var _BaseMixin2 = _interopRequireDefault(_BaseMixin);
var _propsUtil = require('../_util/props-util');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
exports['default'] = {
name: 'DropdownMenu',
mixins: [_BaseMixin2['default']],
props: {
ariaId: _vueTypes2['default'].string,
defaultActiveFirstOption: _vueTypes2['default'].bool,
value: _vueTypes2['default'].any,
dropdownMenuStyle: _vueTypes2['default'].object,
multiple: _vueTypes2['default'].bool,
// onPopupFocus: PropTypes.func,
// onPopupScroll: PropTypes.func,
// onMenuDeSelect: PropTypes.func,
// onMenuSelect: PropTypes.func,
prefixCls: _vueTypes2['default'].string,
menuItems: _vueTypes2['default'].any,
inputValue: _vueTypes2['default'].string,
visible: _vueTypes2['default'].bool,
backfillValue: _vueTypes2['default'].any,
firstActiveValue: _vueTypes2['default'].string,
menuItemSelectedIcon: _vueTypes2['default'].any
},
watch: {
visible: function visible(val) {
if (!val) {
this.lastVisible = val;
}
}
},
created: function created() {
this.rafInstance = { cancel: function cancel() {
return null;
} };
this.lastInputValue = this.$props.inputValue;
this.lastVisible = false;
},
mounted: function mounted() {
var _this = this;
this.$nextTick(function () {
_this.scrollActiveItemToView();
});
this.lastVisible = this.$props.visible;
},
updated: function updated() {
var _this2 = this;
var props = this.$props;
if (!this.prevVisible && props.visible) {
this.$nextTick(function () {
_this2.scrollActiveItemToView();
});
}
this.lastVisible = props.visible;
this.lastInputValue = props.inputValue;
this.prevVisible = this.visible;
},
beforeDestroy: function beforeDestroy() {
if (this.rafInstance && this.rafInstance.cancel) {
this.rafInstance.cancel();
}
},
methods: {
scrollActiveItemToView: function scrollActiveItemToView() {
var _this3 = this;
// scroll into view
var itemComponent = this.firstActiveItem && this.firstActiveItem.$el;
var props = this.$props;
var value = props.value,
visible = props.visible,
firstActiveValue = props.firstActiveValue;
if (!itemComponent || !visible) {
return;
}
var scrollIntoViewOpts = {
onlyScrollIfNeeded: true
};
if ((!value || value.length === 0) && firstActiveValue) {
scrollIntoViewOpts.alignWithTop = true;
}
// Delay to scroll since current frame item position is not ready when pre view is by filter
// https://github.com/ant-design/ant-design/issues/11268#issuecomment-406634462
this.rafInstance = (0, _raf2['default'])(function () {
(0, _domScrollIntoView2['default'])(itemComponent, _this3.$refs.menuRef.$el, scrollIntoViewOpts);
});
},
renderMenu: function renderMenu() {
var _this4 = this;
var h = this.$createElement;
var props = this.$props;
var menuItems = props.menuItems,
defaultActiveFirstOption = props.defaultActiveFirstOption,
value = props.value,
prefixCls = props.prefixCls,
multiple = props.multiple,
inputValue = props.inputValue,
firstActiveValue = props.firstActiveValue,
dropdownMenuStyle = props.dropdownMenuStyle,
backfillValue = props.backfillValue,
visible = props.visible;
var menuItemSelectedIcon = (0, _propsUtil.getComponentFromProp)(this, 'menuItemSelectedIcon');
var _$listeners = this.$listeners,
menuDeselect = _$listeners.menuDeselect,
menuSelect = _$listeners.menuSelect,
popupScroll = _$listeners.popupScroll;
if (menuItems && menuItems.length) {
var selectedKeys = (0, _util.getSelectKeys)(menuItems, value);
var menuProps = {
props: {
multiple: multiple,
defaultActiveFirst: defaultActiveFirstOption,
itemIcon: multiple ? menuItemSelectedIcon : null,
selectedKeys: selectedKeys,
prefixCls: prefixCls + '-menu'
},
on: {},
style: dropdownMenuStyle,
ref: 'menuRef',
attrs: {
role: 'listbox'
}
};
if (popupScroll) {
menuProps.on.scroll = popupScroll;
}
if (multiple) {
menuProps.on.deselect = menuDeselect;
menuProps.on.select = menuSelect;
} else {
menuProps.on.click = menuSelect;
}
var activeKeyProps = {};
var clonedMenuItems = menuItems;
if (selectedKeys.length || firstActiveValue) {
if (props.visible && !this.lastVisible) {
activeKeyProps.activeKey = selectedKeys[0] !== undefined ? selectedKeys[0] : firstActiveValue;
} else if (!visible) {
activeKeyProps.activeKey = undefined;
}
var foundFirst = false;
// set firstActiveItem via cloning menus
// for scroll into view
var clone = function clone(item) {
if (!foundFirst && selectedKeys.indexOf(item.key) !== -1 || !foundFirst && !selectedKeys.length && firstActiveValue.indexOf(item.key) !== -1) {
foundFirst = true;
return (0, _vnode.cloneElement)(item, {
directives: [{
name: 'ant-ref',
value: function value(ref) {
_this4.firstActiveItem = ref;
}
}]
});
}
return item;
};
clonedMenuItems = menuItems.map(function (item) {
if ((0, _propsUtil.getSlotOptions)(item).isMenuItemGroup) {
var children = item.componentOptions.children.map(clone);
return (0, _vnode.cloneElement)(item, { children: children });
}
return clone(item);
});
} else {
// Clear firstActiveItem when dropdown menu items was empty
// Avoid `Unable to find node on an unmounted component`
// https://github.com/ant-design/ant-design/issues/10774
this.firstActiveItem = null;
}
// clear activeKey when inputValue change
var lastValue = value && value[value.length - 1];
if (inputValue !== this.lastInputValue && (!lastValue || lastValue !== backfillValue)) {
activeKeyProps.activeKey = '';
}
menuProps.props = (0, _extends3['default'])({}, activeKeyProps, menuProps.props);
return h(
_vcMenu2['default'],
menuProps,
[clonedMenuItems]
);
}
return null;
}
},
render: function render() {
var h = arguments[0];
var renderMenu = this.renderMenu();
var _$listeners2 = this.$listeners,
popupFocus = _$listeners2.popupFocus,
popupScroll = _$listeners2.popupScroll;
return renderMenu ? h(
'div',
{
style: {
overflow: 'auto',
transform: 'translateZ(0)'
},
attrs: { id: this.$props.ariaId,
tabIndex: '-1'
},
on: {
'focus': popupFocus,
'mousedown': _util.preventDefaultEvent,
'scroll': popupScroll
},
ref: 'menuContainer'
},
[renderMenu]
) : null;
}
};