forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTreeItem.js
369 lines (340 loc) · 8.49 KB
/
TreeItem.js
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
/* eslint-disable jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions */
import React from 'react';
import clsx from 'clsx';
import PropTypes from 'prop-types';
import Typography from '@material-ui/core/Typography';
import Collapse from '@material-ui/core/Collapse';
import { withStyles, useTheme } from '@material-ui/core/styles';
import { useForkRef } from '@material-ui/core/utils';
import TreeViewContext from '../TreeView/TreeViewContext';
export const styles = theme => ({
/* Styles applied to the root element. */
root: {
listStyle: 'none',
margin: 0,
padding: 0,
outline: 0,
WebkitTapHighlightColor: 'transparent',
'&:focus > $content': {
backgroundColor: theme.palette.grey[400],
},
},
/* Pseudo-class applied to the root element when expanded. */
expanded: {},
/* Styles applied to the `role="group"` element. */
group: {
margin: 0,
padding: 0,
marginLeft: 26,
},
/* Styles applied to the tree node content. */
content: {
width: '100%',
display: 'flex',
alignItems: 'center',
cursor: 'pointer',
'&:hover': {
backgroundColor: theme.palette.action.hover,
},
},
/* Styles applied to the tree node icon and collapse/expand icon. */
iconContainer: {
marginRight: 2,
width: 24,
display: 'flex',
justifyContent: 'center',
},
/* Styles applied to the label element. */
label: {
width: '100%',
},
});
const isPrintableCharacter = str => {
return str && str.length === 1 && str.match(/\S/);
};
const TreeItem = React.forwardRef(function TreeItem(props, ref) {
const {
children,
classes,
className,
collapseIcon,
endIcon,
expandIcon,
icon: iconProp,
label,
nodeId,
onClick,
onFocus,
onKeyDown,
TransitionComponent = Collapse,
...other
} = props;
const {
expandAllSiblings,
focus,
focusFirstNode,
focusLastNode,
focusNextNode,
focusPreviousNode,
handleFirstChars,
handleLeftArrow,
addNodeToNodeMap,
removeNodeFromNodeMap,
icons: contextIcons,
isExpanded,
isFocused,
isTabbable,
setFocusByFirstCharacter,
toggle,
} = React.useContext(TreeViewContext);
const nodeRef = React.useRef(null);
const contentRef = React.useRef(null);
const handleRef = useForkRef(nodeRef, ref);
let icon = iconProp;
const expandable = Boolean(Array.isArray(children) ? children.length : children);
const expanded = isExpanded ? isExpanded(nodeId) : false;
const focused = isFocused ? isFocused(nodeId) : false;
const tabbable = isTabbable ? isTabbable(nodeId) : false;
const icons = contextIcons || {};
const theme = useTheme();
if (!icon) {
if (expandable) {
if (!expanded) {
icon = expandIcon || icons.defaultExpandIcon;
} else {
icon = collapseIcon || icons.defaultCollapseIcon;
}
if (!icon) {
icon = icons.defaultParentIcon;
}
} else {
icon = endIcon || icons.defaultEndIcon;
}
}
const handleClick = event => {
if (!focused) {
focus(nodeId);
}
if (expandable) {
toggle(event, nodeId);
}
if (onClick) {
onClick(event);
}
};
const printableCharacter = (event, key) => {
if (key === '*') {
expandAllSiblings(event, nodeId);
return true;
}
if (isPrintableCharacter(key)) {
setFocusByFirstCharacter(nodeId, key);
return true;
}
return false;
};
const handleNextArrow = event => {
if (expandable) {
if (expanded) {
focusNextNode(nodeId);
} else {
toggle(event);
}
}
};
const handlePreviousArrow = event => {
handleLeftArrow(nodeId, event);
};
const handleKeyDown = event => {
let flag = false;
const key = event.key;
if (event.altKey || event.ctrlKey || event.metaKey || event.currentTarget !== event.target) {
return;
}
if (event.shift) {
if (key === ' ' || key === 'Enter') {
event.stopPropagation();
} else if (isPrintableCharacter(key)) {
flag = printableCharacter(event, key);
}
} else {
switch (key) {
case 'Enter':
case ' ':
if (nodeRef.current === event.currentTarget && expandable) {
toggle(event);
flag = true;
}
event.stopPropagation();
break;
case 'ArrowDown':
focusNextNode(nodeId);
flag = true;
break;
case 'ArrowUp':
focusPreviousNode(nodeId);
flag = true;
break;
case 'ArrowRight':
if (theme.direction === 'rtl') {
handlePreviousArrow(event);
} else {
handleNextArrow(event);
flag = true;
}
break;
case 'ArrowLeft':
if (theme.direction === 'rtl') {
handleNextArrow(event);
flag = true;
} else {
handlePreviousArrow(event);
}
break;
case 'Home':
focusFirstNode();
flag = true;
break;
case 'End':
focusLastNode();
flag = true;
break;
default:
if (isPrintableCharacter(key)) {
flag = printableCharacter(event, key);
}
}
}
if (flag) {
event.preventDefault();
event.stopPropagation();
}
if (onKeyDown) {
onKeyDown(event);
}
};
const handleFocus = event => {
if (!focused && tabbable) {
focus(nodeId);
}
if (onFocus) {
onFocus(event);
}
};
React.useEffect(() => {
const childIds = React.Children.map(children, child => child.props.nodeId) || [];
if (addNodeToNodeMap) {
addNodeToNodeMap(nodeId, childIds);
}
}, [children, nodeId, addNodeToNodeMap]);
React.useEffect(() => {
if (removeNodeFromNodeMap) {
return () => {
removeNodeFromNodeMap(nodeId);
};
}
return undefined;
}, [nodeId, removeNodeFromNodeMap]);
React.useEffect(() => {
if (handleFirstChars && label) {
handleFirstChars(nodeId, contentRef.current.textContent.substring(0, 1).toLowerCase());
}
}, [handleFirstChars, nodeId, label]);
React.useEffect(() => {
if (focused) {
nodeRef.current.focus();
}
}, [focused]);
return (
<li
className={clsx(classes.root, className, {
[classes.expanded]: expanded,
})}
role="treeitem"
onKeyDown={handleKeyDown}
onFocus={handleFocus}
aria-expanded={expandable ? expanded : null}
ref={handleRef}
tabIndex={tabbable ? 0 : -1}
{...other}
>
<div className={classes.content} onClick={handleClick} ref={contentRef}>
{icon ? <div className={classes.iconContainer}>{icon}</div> : null}
<Typography component="div" className={classes.label}>
{label}
</Typography>
</div>
{children && (
<TransitionComponent
unmountOnExit
className={classes.group}
in={expanded}
component="ul"
role="group"
>
{children}
</TransitionComponent>
)}
</li>
);
});
TreeItem.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the d.ts file and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css) below for more details.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The icon used to collapse the node.
*/
collapseIcon: PropTypes.node,
/**
* The icon displayed next to a end node.
*/
endIcon: PropTypes.node,
/**
* The icon used to expand the node.
*/
expandIcon: PropTypes.node,
/**
* The icon to display next to the tree node's label.
*/
icon: PropTypes.node,
/**
* The tree node label.
*/
label: PropTypes.node,
/**
* The id of the node.
*/
nodeId: PropTypes.string.isRequired,
/**
* @ignore
*/
onClick: PropTypes.func,
/**
* @ignore
*/
onFocus: PropTypes.func,
/**
* @ignore
*/
onKeyDown: PropTypes.func,
/**
* The component used for the transition.
*/
TransitionComponent: PropTypes.elementType,
};
export default withStyles(styles, { name: 'MuiTreeItem' })(TreeItem);