-
-
Notifications
You must be signed in to change notification settings - Fork 252
/
Copy pathSubPopupMenu.tsx
479 lines (442 loc) · 12.1 KB
/
SubPopupMenu.tsx
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
import * as React from 'react';
import { connect } from 'mini-store';
import { CSSMotionProps } from 'rc-motion';
import KeyCode from 'rc-util/lib/KeyCode';
import createChainedFunction from 'rc-util/lib/createChainedFunction';
import toArray from 'rc-util/lib/Children/toArray';
import shallowEqual from 'shallowequal';
import classNames from 'classnames';
import {
getKeyFromChildrenIndex,
loopMenuItem,
noop,
menuAllProps,
isMobileDevice,
} from './util';
import DOMWrap from './DOMWrap';
import {
SelectEventHandler,
OpenEventHandler,
DestroyEventHandler,
MiniStore,
MenuMode,
LegacyFunctionRef,
RenderIconType,
HoverEventHandler,
BuiltinPlacements,
MenuClickEventHandler,
MenuInfo,
TriggerSubMenuAction,
} from './interface';
import { MenuItem, MenuItemProps } from './MenuItem';
import { MenuItemGroupProps } from './MenuItemGroup';
function allDisabled(arr: MenuItem[]) {
if (!arr.length) {
return true;
}
return arr.every(c => !!c.props.disabled);
}
function updateActiveKey(
store: MiniStore,
menuId: React.Key,
activeKey: React.Key,
) {
const state = store.getState();
store.setState({
activeKey: {
...state.activeKey,
[menuId]: activeKey,
},
});
}
function getEventKey(props: SubPopupMenuProps): React.Key {
// when eventKey not available ,it's menu and return menu id '0-menu-'
return props.eventKey || '0-menu-';
}
export function getActiveKey(
props: {
children?: React.ReactNode;
eventKey?: React.Key;
defaultActiveFirst?: boolean;
},
originalActiveKey: string,
) {
let activeKey: React.Key = originalActiveKey;
const { children, eventKey } = props;
if (activeKey) {
let found: boolean;
loopMenuItem(children, (c, i) => {
if (
c &&
c.props &&
!c.props.disabled &&
activeKey === getKeyFromChildrenIndex(c, eventKey, i)
) {
found = true;
}
});
if (found) {
return activeKey;
}
}
activeKey = null;
if (props.defaultActiveFirst) {
loopMenuItem(children, (c, i) => {
if (!activeKey && c && !c.props.disabled) {
activeKey = getKeyFromChildrenIndex(c, eventKey, i);
}
});
return activeKey;
}
return activeKey;
}
export function saveRef(c: React.ReactInstance) {
if (c) {
const index = this.instanceArray.indexOf(c);
if (index !== -1) {
// update component if it's already inside instanceArray
this.instanceArray[index] = c;
} else {
// add component if it's not in instanceArray yet;
this.instanceArray.push(c);
}
}
}
export interface SubPopupMenuProps {
onSelect?: SelectEventHandler;
onClick?: MenuClickEventHandler;
onDeselect?: SelectEventHandler;
onOpenChange?: OpenEventHandler;
onDestroy?: DestroyEventHandler;
openKeys?: string[];
visible?: boolean;
children?: React.ReactNode;
parentMenu?: React.ReactInstance;
eventKey?: React.Key;
store?: MiniStore;
// adding in refactor
prefixCls?: string;
focusable?: boolean;
multiple?: boolean;
style?: React.CSSProperties;
className?: string;
defaultActiveFirst?: boolean;
activeKey?: string;
selectedKeys?: string[];
defaultSelectedKeys?: string[];
defaultOpenKeys?: string[];
level?: number;
mode?: MenuMode;
triggerSubMenuAction?: TriggerSubMenuAction;
inlineIndent?: number;
manualRef?: LegacyFunctionRef;
itemIcon?: RenderIconType;
expandIcon?: RenderIconType;
subMenuOpenDelay?: number;
subMenuCloseDelay?: number;
forceSubMenuRender?: boolean;
builtinPlacements?: BuiltinPlacements;
role?: string;
id?: string;
overflowedIndicator?: React.ReactNode;
theme?: string;
// [Legacy]
// openTransitionName?: string;
// openAnimation?: OpenAnimation;
motion?: CSSMotionProps;
direction?: 'ltr' | 'rtl';
}
export class SubPopupMenu extends React.Component<SubPopupMenuProps> {
static defaultProps = {
prefixCls: 'rc-menu',
className: '',
mode: 'vertical',
level: 1,
inlineIndent: 24,
visible: true,
focusable: true,
style: {},
manualRef: noop,
};
constructor(props: SubPopupMenuProps) {
super(props);
props.store.setState({
activeKey: {
...props.store.getState().activeKey,
[props.eventKey]: getActiveKey(props, props.activeKey),
},
});
this.instanceArray = [];
}
instanceArray: MenuItem[];
componentDidMount() {
// invoke customized ref to expose component to mixin
if (this.props.manualRef) {
this.props.manualRef(this);
}
}
shouldComponentUpdate(nextProps: SubPopupMenuProps) {
return (
this.props.visible ||
nextProps.visible ||
this.props.className !== nextProps.className ||
!shallowEqual(this.props.style, nextProps.style)
);
}
componentDidUpdate(prevProps: SubPopupMenuProps) {
const { props } = this;
const originalActiveKey =
'activeKey' in props
? props.activeKey
: props.store.getState().activeKey[getEventKey(props)];
const activeKey = getActiveKey(props, originalActiveKey);
if (activeKey !== originalActiveKey) {
updateActiveKey(props.store, getEventKey(props), activeKey);
} else if ('activeKey' in prevProps) {
// If prev activeKey is not same as current activeKey,
// we should set it.
const prevActiveKey = getActiveKey(prevProps, prevProps.activeKey);
if (activeKey !== prevActiveKey) {
updateActiveKey(props.store, getEventKey(props), activeKey);
}
}
}
/**
* all keyboard events callbacks run from here at first
*
* note:
* This legacy code that `onKeyDown` is called by parent instead of dom self.
* which need return code to check if this event is handled
*/
onKeyDown = (
e: React.KeyboardEvent<HTMLElement>,
callback: (item: MenuItem) => void,
) => {
const { keyCode } = e;
let handled: boolean;
this.getFlatInstanceArray().forEach((obj: MenuItem) => {
if (obj && obj.props.active && obj.onKeyDown) {
handled = obj.onKeyDown(e);
}
});
if (handled) {
return 1;
}
let activeItem: MenuItem = null;
if (keyCode === KeyCode.UP || keyCode === KeyCode.DOWN) {
activeItem = this.step(keyCode === KeyCode.UP ? -1 : 1);
}
if (activeItem) {
e.preventDefault();
updateActiveKey(
this.props.store,
getEventKey(this.props),
activeItem.props.eventKey,
);
if (typeof callback === 'function') {
callback(activeItem);
}
return 1;
}
return undefined;
};
onItemHover: HoverEventHandler = e => {
const { key, hover } = e;
updateActiveKey(
this.props.store,
getEventKey(this.props),
hover ? key : null,
);
};
onDeselect: SelectEventHandler = selectInfo => {
this.props.onDeselect(selectInfo);
};
onSelect: SelectEventHandler = selectInfo => {
this.props.onSelect(selectInfo);
};
onClick: MenuClickEventHandler = e => {
this.props.onClick(e);
};
onOpenChange: OpenEventHandler = e => {
this.props.onOpenChange(e);
};
onDestroy: DestroyEventHandler = key => {
/* istanbul ignore next */
this.props.onDestroy(key);
};
getFlatInstanceArray = () => this.instanceArray;
step = (direction: number) => {
let children = this.getFlatInstanceArray();
const activeKey = this.props.store.getState().activeKey[
getEventKey(this.props)
];
const len = children.length;
if (!len) {
return null;
}
if (direction < 0) {
children = children.concat().reverse();
}
// find current activeIndex
let activeIndex = -1;
children.every((c, ci) => {
if (c && c.props.eventKey === activeKey) {
activeIndex = ci;
return false;
}
return true;
});
if (
!this.props.defaultActiveFirst &&
activeIndex !== -1 &&
allDisabled(children.slice(activeIndex, len - 1))
) {
return undefined;
}
const start = (activeIndex + 1) % len;
let i = start;
do {
const child = children[i];
if (!child || child.props.disabled || child.props.style?.display === 'none') {
i = (i + 1) % len;
} else {
return child;
}
} while (i !== start);
return null;
};
renderCommonMenuItem = (
child: React.ReactElement,
i: number,
extraProps: MenuItemProps,
) => {
const state = this.props.store.getState();
const { props } = this;
const key = getKeyFromChildrenIndex(child, props.eventKey, i);
const childProps = child.props;
// https://github.com/ant-design/ant-design/issues/11517#issuecomment-477403055
if (!childProps || typeof child.type === 'string') {
return child;
}
const isActive = key === state.activeKey;
const newChildProps: MenuItemProps &
MenuItemGroupProps &
SubPopupMenuProps = {
mode: childProps.mode || props.mode,
level: props.level,
inlineIndent: props.inlineIndent,
renderMenuItem: this.renderMenuItem,
rootPrefixCls: props.prefixCls,
index: i,
parentMenu: props.parentMenu,
// customized ref function, need to be invoked manually in child's componentDidMount
manualRef: childProps.disabled
? undefined
: (createChainedFunction(
(child as any).ref,
saveRef.bind(this),
) as LegacyFunctionRef),
eventKey: key,
active: !childProps.disabled && isActive,
multiple: props.multiple,
onClick: (e: MenuInfo) => {
(childProps.onClick || noop)(e);
this.onClick(e);
},
onItemHover: this.onItemHover,
motion: props.motion,
subMenuOpenDelay: props.subMenuOpenDelay,
subMenuCloseDelay: props.subMenuCloseDelay,
forceSubMenuRender: props.forceSubMenuRender,
onOpenChange: this.onOpenChange,
onDeselect: this.onDeselect,
onSelect: this.onSelect,
builtinPlacements: props.builtinPlacements,
itemIcon: childProps.itemIcon || this.props.itemIcon,
expandIcon: childProps.expandIcon || this.props.expandIcon,
...extraProps,
direction: props.direction,
};
// ref: https://github.com/ant-design/ant-design/issues/13943
if (props.mode === 'inline' || isMobileDevice()) {
newChildProps.triggerSubMenuAction = 'click';
}
return React.cloneElement(child, {
...newChildProps,
key: key || i,
});
};
renderMenuItem = (
c: React.ReactElement,
i: number,
subMenuKey: React.Key,
) => {
/* istanbul ignore if */
if (!c) {
return null;
}
const state = this.props.store.getState();
const extraProps = {
openKeys: state.openKeys,
selectedKeys: state.selectedKeys,
triggerSubMenuAction: this.props.triggerSubMenuAction,
subMenuKey,
};
return this.renderCommonMenuItem(c, i, extraProps);
};
render() {
const { ...props } = this.props;
this.instanceArray = [];
const className = classNames(
props.prefixCls,
props.className,
`${props.prefixCls}-${props.mode}`,
);
const domProps: React.HTMLAttributes<HTMLElement> = {
className,
// role could be 'select' and by default set to menu
role: props.role || 'menu',
};
if (props.id) {
domProps.id = props.id;
}
if (props.focusable) {
domProps.onKeyDown = this.onKeyDown as any;
}
const {
prefixCls,
eventKey,
visible,
level,
mode,
overflowedIndicator,
theme,
} = props;
menuAllProps.forEach(key => delete props[key]);
// Otherwise, the propagated click event will trigger another onClick
delete props.onClick;
return (
<DOMWrap
{...props}
prefixCls={prefixCls}
mode={mode}
tag="ul"
level={level}
theme={theme}
visible={visible}
overflowedIndicator={overflowedIndicator}
{...domProps}
>
{toArray(props.children).map((c: React.ReactElement, i) =>
this.renderMenuItem(c, i, eventKey || '0-menu-'),
)}
</DOMWrap>
);
}
}
const connected = (connect()(
SubPopupMenu as any,
) as unknown) as React.ComponentClass<SubPopupMenuProps> & {
getWrappedInstance: () => SubPopupMenu;
};
export default connected;