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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
import _toConsumableArray from 'babel-runtime/helpers/toConsumableArray';
import _defineProperty from 'babel-runtime/helpers/defineProperty';
import _extends from 'babel-runtime/helpers/extends';
import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties';
import PropTypes from '../_util/vue-types';
import ResizeObserver from 'resize-observer-polyfill';
import SubMenu from './SubMenu';
import BaseMixin from '../_util/BaseMixin';
import { getWidth, setStyle, menuAllProps } from './util';
import { cloneElement } from '../_util/vnode';
import { getClass, getPropsData, getEvents } from '../_util/props-util';
var canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);
var MENUITEM_OVERFLOWED_CLASSNAME = 'menuitem-overflowed';
var FLOAT_PRECISION_ADJUST = 0.5;
// Fix ssr
if (canUseDOM) {
require('mutationobserver-shim');
}
var DOMWrap = {
name: 'DOMWrap',
mixins: [BaseMixin],
data: function data() {
this.resizeObserver = null;
this.mutationObserver = null;
// original scroll size of the list
this.originalTotalWidth = 0;
// copy of overflowed items
this.overflowedItems = [];
// cache item of the original items (so we can track the size and order)
this.menuItemSizes = [];
return {
lastVisibleIndex: undefined
};
},
mounted: function mounted() {
var _this = this;
this.$nextTick(function () {
_this.setChildrenWidthAndResize();
if (_this.level === 1 && _this.mode === 'horizontal') {
var menuUl = _this.$el;
if (!menuUl) {
return;
}
_this.resizeObserver = new ResizeObserver(function (entries) {
entries.forEach(_this.setChildrenWidthAndResize);
});
[].slice.call(menuUl.children).concat(menuUl).forEach(function (el) {
_this.resizeObserver.observe(el);
});
if (typeof MutationObserver !== 'undefined') {
_this.mutationObserver = new MutationObserver(function () {
_this.resizeObserver.disconnect();
[].slice.call(menuUl.children).concat(menuUl).forEach(function (el) {
_this.resizeObserver.observe(el);
});
_this.setChildrenWidthAndResize();
});
_this.mutationObserver.observe(menuUl, {
attributes: false,
childList: true,
subTree: false
});
}
}
});
},
beforeDestroy: function beforeDestroy() {
if (this.resizeObserver) {
this.resizeObserver.disconnect();
}
if (this.mutationObserver) {
this.resizeObserver.disconnect();
}
},
methods: {
// get all valid menuItem nodes
getMenuItemNodes: function getMenuItemNodes() {
var prefixCls = this.$props.prefixCls;
var ul = this.$el;
if (!ul) {
return [];
}
// filter out all overflowed indicator placeholder
return [].slice.call(ul.children).filter(function (node) {
return node.className.split(' ').indexOf(prefixCls + '-overflowed-submenu') < 0;
});
},
getOverflowedSubMenuItem: function getOverflowedSubMenuItem(keyPrefix, overflowedItems, renderPlaceholder) {
var h = this.$createElement;
var _$props = this.$props,
overflowedIndicator = _$props.overflowedIndicator,
level = _$props.level,
mode = _$props.mode,
prefixCls = _$props.prefixCls,
theme = _$props.theme;
if (level !== 1 || mode !== 'horizontal') {
return null;
}
// put all the overflowed item inside a submenu
// with a title of overflow indicator ('...')
var copy = this.$slots['default'][0];
var _getPropsData = getPropsData(copy),
title = _getPropsData.title,
eventKey = _getPropsData.eventKey,
rest = _objectWithoutProperties(_getPropsData, ['title', 'eventKey']); // eslint-disable-line no-unused-vars
var style = {};
var key = keyPrefix + '-overflowed-indicator';
if (overflowedItems.length === 0 && renderPlaceholder !== true) {
style = {
display: 'none'
};
} else if (renderPlaceholder) {
style = {
visibility: 'hidden',
// prevent from taking normal dom space
position: 'absolute'
};
key = key + '-placeholder';
}
var popupClassName = theme ? prefixCls + '-' + theme : '';
var props = {};
menuAllProps.props.forEach(function (k) {
if (rest[k] !== undefined) {
props[k] = rest[k];
}
});
var subMenuProps = {
props: _extends({
title: overflowedIndicator,
popupClassName: popupClassName
}, props, {
eventKey: keyPrefix + '-overflowed-indicator',
disabled: false
}),
'class': prefixCls + '-overflowed-submenu',
key: key,
style: style,
on: getEvents(copy)
};
return h(
SubMenu,
subMenuProps,
[overflowedItems]
);
},
// memorize rendered menuSize
setChildrenWidthAndResize: function setChildrenWidthAndResize() {
if (this.mode !== 'horizontal') {
return;
}
var ul = this.$el;
if (!ul) {
return;
}
var ulChildrenNodes = ul.children;
if (!ulChildrenNodes || ulChildrenNodes.length === 0) {
return;
}
var lastOverflowedIndicatorPlaceholder = ul.children[ulChildrenNodes.length - 1];
// need last overflowed indicator for calculating length;
setStyle(lastOverflowedIndicatorPlaceholder, 'display', 'inline-block');
var menuItemNodes = this.getMenuItemNodes();
// reset display attribute for all hidden elements caused by overflow to calculate updated width
// and then reset to original state after width calculation
var overflowedItems = menuItemNodes.filter(function (c) {
return c.className.split(' ').indexOf(MENUITEM_OVERFLOWED_CLASSNAME) >= 0;
});
overflowedItems.forEach(function (c) {
setStyle(c, 'display', 'inline-block');
});
this.menuItemSizes = menuItemNodes.map(function (c) {
return getWidth(c);
});
overflowedItems.forEach(function (c) {
setStyle(c, 'display', 'none');
});
this.overflowedIndicatorWidth = getWidth(ul.children[ul.children.length - 1]);
this.originalTotalWidth = this.menuItemSizes.reduce(function (acc, cur) {
return acc + cur;
}, 0);
this.handleResize();
// prevent the overflowed indicator from taking space;
setStyle(lastOverflowedIndicatorPlaceholder, 'display', 'none');
},
handleResize: function handleResize() {
var _this2 = this;
if (this.mode !== 'horizontal') {
return;
}
var ul = this.$el;
if (!ul) {
return;
}
var width = getWidth(ul);
this.overflowedItems = [];
var currentSumWidth = 0;
// index for last visible child in horizontal mode
var lastVisibleIndex = void 0;
// float number comparison could be problematic
// e.g. 0.1 + 0.2 > 0.3 =====> true
// thus using FLOAT_PRECISION_ADJUST as buffer to help the situation
if (this.originalTotalWidth > width + FLOAT_PRECISION_ADJUST) {
lastVisibleIndex = -1;
this.menuItemSizes.forEach(function (liWidth) {
currentSumWidth += liWidth;
if (currentSumWidth + _this2.overflowedIndicatorWidth <= width) {
lastVisibleIndex++;
}
});
}
this.setState({ lastVisibleIndex: lastVisibleIndex });
},
renderChildren: function renderChildren(children) {
var _this3 = this;
// need to take care of overflowed items in horizontal mode
var lastVisibleIndex = this.$data.lastVisibleIndex;
var className = getClass(this);
return (children || []).reduce(function (acc, childNode, index) {
var item = childNode;
var eventKey = getPropsData(childNode).eventKey;
if (_this3.mode === 'horizontal') {
var overflowed = _this3.getOverflowedSubMenuItem(eventKey, []);
if (lastVisibleIndex !== undefined && className[_this3.prefixCls + '-root'] !== -1) {
if (index > lastVisibleIndex) {
item = cloneElement(childNode,
// 这里修改 eventKey 是为了防止隐藏状态下还会触发 openkeys 事件
{
style: { display: 'none' },
props: { eventKey: eventKey + '-hidden' },
'class': _extends({}, getClass(childNode), _defineProperty({}, MENUITEM_OVERFLOWED_CLASSNAME, true))
});
}
if (index === lastVisibleIndex + 1) {
_this3.overflowedItems = children.slice(lastVisibleIndex + 1).map(function (c) {
return cloneElement(c,
// children[index].key will become '.$key' in clone by default,
// we have to overwrite with the correct key explicitly
{ key: getPropsData(c).eventKey, props: { mode: 'vertical-left' } });
});
overflowed = _this3.getOverflowedSubMenuItem(eventKey, _this3.overflowedItems);
}
}
var ret = [].concat(_toConsumableArray(acc), [overflowed, item]);
if (index === children.length - 1) {
// need a placeholder for calculating overflowed indicator width
ret.push(_this3.getOverflowedSubMenuItem(eventKey, [], true));
}
return ret;
}
return [].concat(_toConsumableArray(acc), [item]);
}, []);
}
},
render: function render() {
var h = arguments[0];
var Tag = this.$props.tag;
var tagProps = {
on: this.$listeners
};
return h(
Tag,
tagProps,
[this.renderChildren(this.$slots['default'])]
);
}
};
DOMWrap.props = {
mode: PropTypes.oneOf(['horizontal', 'vertical', 'vertical-left', 'vertical-right', 'inline']),
prefixCls: PropTypes.string,
level: PropTypes.number,
theme: PropTypes.string,
overflowedIndicator: PropTypes.node,
visible: PropTypes.bool,
hiddenClassName: PropTypes.string,
tag: PropTypes.string.def('div')
};
export default DOMWrap;