forked from primer/view_components
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtree_view.ts
More file actions
497 lines (393 loc) · 14.2 KB
/
Copy pathtree_view.ts
File metadata and controls
497 lines (393 loc) · 14.2 KB
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
import {controller, target} from '@github/catalyst'
import {SelectStrategy, SelectVariant, TreeViewSubTreeNodeElement} from './tree_view_sub_tree_node_element'
import {useRovingTabIndex} from './tree_view_roving_tab_index'
import type {TreeViewCheckedValue, TreeViewNodeInfo, TreeViewNodeType} from '../../shared_events'
@controller
export class TreeViewElement extends HTMLElement {
@target formInputContainer: HTMLElement
@target formInputPrototype: HTMLInputElement
#abortController: AbortController
connectedCallback() {
const {signal} = (this.#abortController = new AbortController())
this.addEventListener('click', this, {signal})
this.addEventListener('focusin', this, {signal})
this.addEventListener('keydown', this, {signal})
useRovingTabIndex(this)
// catch-all for any straggler nodes that aren't available when connectedCallback runs
new MutationObserver(mutations => {
for (const mutation of mutations) {
for (const addedNode of mutation.addedNodes) {
if (!(addedNode instanceof HTMLElement)) continue
// eslint-disable-next-line custom-elements/no-dom-traversal-in-connectedcallback
if (addedNode.querySelector('[aria-expanded=true]')) {
this.#autoExpandFrom(addedNode)
}
}
}
}).observe(this, {childList: true, subtree: true})
const updateInputsObserver = new MutationObserver(mutations => {
if (!this.formInputContainer) return
// There is another MutationObserver in TreeViewSubTreeNodeElement that manages checking/unchecking
// nodes based on the component's select strategy. These two observers can conflict and cause infinite
// looping, so we make sure something actually changed before computing inputs again.
const somethingChanged = mutations.some(m => {
if (!(m.target instanceof HTMLElement)) return false
return m.target.getAttribute('aria-checked') !== m.oldValue
})
if (!somethingChanged) return
const newInputs = []
// eslint-disable-next-line custom-elements/no-dom-traversal-in-connectedcallback
for (const node of this.querySelectorAll('[role=treeitem][aria-checked=true]')) {
const newInput = this.formInputPrototype.cloneNode() as HTMLInputElement
newInput.removeAttribute('data-target')
newInput.removeAttribute('form')
const payload: {path: string[]; value?: string} = {
path: this.getNodePath(node),
}
const inputValue = this.getFormInputValueForNode(node)
if (inputValue) payload.value = inputValue
newInput.value = JSON.stringify(payload)
newInputs.push(newInput)
}
this.formInputContainer.replaceChildren(...newInputs)
})
updateInputsObserver.observe(this, {
childList: true,
subtree: true,
attributeFilter: ['aria-checked'],
})
// eslint-disable-next-line github/no-then -- We don't want to wait for this to resolve, just get on with it
customElements.whenDefined('tree-view-sub-tree-node').then(() => {
// depends on TreeViewSubTreeNodeElement#eachAncestorSubTreeNode, which may not be defined yet
this.#autoExpandFrom(this)
})
}
rootLeafNodes(): NodeListOf<HTMLElement> {
return this.querySelectorAll(':scope > ul > li > .TreeViewItemContainer [role=treeitem]')
}
rootSubTreeNodes(): NodeListOf<TreeViewSubTreeNodeElement> {
return this.querySelectorAll(':scope > ul > tree-view-sub-tree-node')
}
#autoExpandFrom(root: HTMLElement) {
for (const element of root.querySelectorAll('[aria-expanded=true]')) {
this.expandAncestorsForNode(element as HTMLElement)
}
}
disconnectedCallback() {
this.#abortController.abort()
}
handleEvent(event: Event) {
const node = this.#nodeForEvent(event)
if (node) {
this.#handleNodeEvent(node, event)
}
}
#eventIsActivation(event: Event): boolean {
return event.type === 'click'
}
#nodeForEvent(event: Event): Element | null {
const eventTarget = event.target as Element
const node = eventTarget.closest('[role=treeitem]')
if (!node) return null
if (eventTarget.closest('.TreeViewItemToggle')) return null
if (eventTarget.closest('.TreeViewItemLeadingAction')) return null
return node
}
#handleNodeEvent(node: Element, event: Event) {
if (this.#eventIsCheckboxToggle(event, node)) {
this.#handleCheckboxToggle(event, node)
} else if (this.#eventIsSingleSelection(event, node)) {
this.handleSingleSelection(event, node)
} else if (this.#eventIsActivation(event)) {
this.#handleNodeActivated(event, node)
} else if (event.type === 'focusin') {
this.#handleNodeFocused(node)
} else if (event instanceof KeyboardEvent) {
this.#handleNodeKeyboardEvent(event, node)
}
}
#eventIsCheckboxToggle(event: Event, node: Element) {
return event.type === 'click' && this.nodeHasCheckBox(node)
}
#handleCheckboxToggle(event: Event, node: Element) {
if (this.getNodeDisabledValue(node)) {
event.preventDefault()
return
}
// only handle checking of leaf nodes, see TreeViewSubTreeNodeElement for the code that
// handles checking sub tree items.
const type = this.getNodeType(node)
if (type !== 'leaf') return
const checkValue = this.getNodeCheckedValue(node)
const newCheckValue = checkValue === 'false' ? 'true' : 'false'
const nodeInfo = this.infoFromNode(node, newCheckValue)
const checkSuccess = this.dispatchEvent(
new CustomEvent('treeViewBeforeNodeChecked', {
bubbles: true,
cancelable: true,
detail: [nodeInfo],
}),
)
if (!checkSuccess) return
if (this.getNodeCheckedValue(node) === 'true') {
this.setNodeCheckedValue(node, 'false')
} else {
this.setNodeCheckedValue(node, 'true')
}
this.dispatchEvent(
new CustomEvent('treeViewNodeChecked', {
bubbles: true,
cancelable: true,
detail: [nodeInfo],
}),
)
}
#eventIsSingleSelection(event: Event, node: Element) {
return event.type === 'click' && this.selectVariant(node) === 'single'
}
handleSingleSelection(event: Event, node: Element) {
if (this.getNodeDisabledValue(node)) {
event.preventDefault()
return
}
// do not emit activation events for buttons and anchors, since it is assumed any activation
// behavior for these element types is user- or browser-defined
if (!(node instanceof HTMLDivElement)) return
const path = this.getNodePath(node)
const nodeInfo = this.infoFromNode(node, 'true')
const checkSuccess = this.dispatchEvent(
new CustomEvent('treeViewBeforeNodeChecked', {
bubbles: true,
cancelable: true,
detail: [nodeInfo],
}),
)
if (!checkSuccess) return
if (this.getNodeCheckedValue(node) === 'true') {
this.setNodeCheckedValue(node, 'false')
} else {
this.checkOnlyAtPath(path)
}
this.dispatchEvent(
new CustomEvent('treeViewNodeChecked', {
bubbles: true,
detail: [nodeInfo],
}),
)
}
#handleNodeActivated(event: Event, node: Element) {
if (this.getNodeDisabledValue(node)) {
event.preventDefault()
return
}
// do not emit activation events for buttons and anchors, since it is assumed any activation
// behavior for these element types is user- or browser-defined
if (!(node instanceof HTMLDivElement)) return
const path = this.getNodePath(node)
const activationSuccess = this.dispatchEvent(
new CustomEvent('treeViewBeforeNodeActivated', {
bubbles: true,
cancelable: true,
detail: this.infoFromNode(node),
}),
)
if (!activationSuccess) return
// navigate or trigger button, don't toggle
if (!this.nodeHasNativeAction(node)) {
this.toggleAtPath(path)
}
this.dispatchEvent(
new CustomEvent('treeViewNodeActivated', {
bubbles: true,
detail: this.infoFromNode(node),
}),
)
}
#handleNodeFocused(node: Element) {
const previousNode = this.querySelector('[aria-selected=true]')
previousNode?.setAttribute('aria-selected', 'false')
node.setAttribute('aria-selected', 'true')
}
#handleNodeKeyboardEvent(event: KeyboardEvent, node: Element) {
if (!node || this.getNodeType(node) !== 'leaf') {
return
}
switch (event.key) {
case ' ':
case 'Enter':
if (this.getNodeDisabledValue(node)) {
event.preventDefault()
break
}
if (this.selectVariant(node) === 'multiple') {
event.preventDefault()
if (this.getNodeCheckedValue(node) === 'true') {
this.setNodeCheckedValue(node, 'false')
} else {
this.setNodeCheckedValue(node, 'true')
}
} else if (this.selectVariant(node) === 'single') {
event.preventDefault()
this.checkOnlyAtPath(this.getNodePath(node))
} else if (node instanceof HTMLAnchorElement) {
// simulate click on space
node.click()
}
break
}
}
getFormInputValueForNode(node: Element): string | null {
return node.getAttribute('data-value')
}
getNodePath(node: Element): string[] {
const rawPath = node.getAttribute('data-path')
if (rawPath) {
return JSON.parse(rawPath)
}
return []
}
getNodeType(node: Element): TreeViewNodeType | null {
return node.getAttribute('data-node-type') as TreeViewNodeType | null
}
markCurrentAtPath(path: string[]) {
const pathStr = JSON.stringify(path)
const nodeToMark = this.querySelector(`[data-path="${CSS.escape(pathStr)}"`)
if (!nodeToMark) return
this.currentNode?.setAttribute('aria-current', 'false')
nodeToMark.setAttribute('aria-current', 'true')
}
get currentNode(): HTMLLIElement | null {
return this.querySelector('[aria-current=true]')
}
get activeNodes() {
return document.querySelectorAll('[aria-checked="true"]')
}
expandAtPath(path: string[]) {
const node = this.subTreeAtPath(path)
if (!node) return
node.expand()
}
collapseAtPath(path: string[]) {
const node = this.subTreeAtPath(path)
if (!node) return
node.collapse()
}
toggleAtPath(path: string[]) {
const node = this.subTreeAtPath(path)
if (!node) return
node.toggle()
}
checkAtPath(path: string[]) {
const node = this.nodeAtPath(path)
if (!node) return
this.setNodeCheckedValue(node, 'true')
}
uncheckAtPath(path: string[]) {
const node = this.nodeAtPath(path)
if (!node) return
this.setNodeCheckedValue(node, 'false')
}
checkOnlyAtPath(path: string[]) {
for (const el of this.activeNodes) {
this.uncheckAtPath(this.getNodePath(el))
}
this.checkAtPath(path)
}
toggleCheckedAtPath(path: string[]) {
const node = this.nodeAtPath(path)
if (!node) return
if (this.getNodeType(node) === 'leaf') {
if (this.getNodeCheckedValue(node) === 'true') {
this.uncheckAtPath(path)
} else {
this.checkAtPath(path)
}
}
}
checkedValueAtPath(path: string[]): TreeViewCheckedValue {
const node = this.nodeAtPath(path)
if (!node) return 'false'
return this.getNodeCheckedValue(node)
}
disabledValueAtPath(path: string[]): boolean {
const node = this.nodeAtPath(path)
if (!node) return false
return this.getNodeDisabledValue(node)
}
nodeAtPath(path: string[], selector?: string): Element | null {
const pathStr = JSON.stringify(path)
return this.querySelector(`${selector || ''}[data-path="${CSS.escape(pathStr)}"]`)
}
subTreeAtPath(path: string[]): TreeViewSubTreeNodeElement | null {
const node = this.nodeAtPath(path, '[data-node-type=sub-tree]')
if (!node) return null
return node.closest('tree-view-sub-tree-node') as TreeViewSubTreeNodeElement | null
}
leafAtPath(path: string[]): HTMLLIElement | null {
return this.nodeAtPath(path, '[data-node-type=leaf]') as HTMLLIElement | null
}
setNodeCheckedValue(node: Element, value: TreeViewCheckedValue) {
node.setAttribute('aria-checked', value.toString())
}
getNodeCheckedValue(node: Element): TreeViewCheckedValue {
return (node.getAttribute('aria-checked') || 'false') as TreeViewCheckedValue
}
getNodeDisabledValue(node: Element): boolean {
return node.getAttribute('aria-disabled') === 'true'
}
setNodeDisabledValue(node: Element, disabled: boolean) {
if (disabled) {
node.setAttribute('aria-disabled', 'true')
} else {
node.removeAttribute('aria-disabled')
}
}
nodeHasCheckBox(node: Element): boolean {
return node.querySelector('.TreeViewItemCheckbox') !== null
}
nodeHasNativeAction(node: Element): boolean {
return node instanceof HTMLAnchorElement || node instanceof HTMLButtonElement
}
expandAncestorsForNode(node: HTMLElement) {
const subTreeNode = node.closest('tree-view-sub-tree-node') as TreeViewSubTreeNodeElement
if (!subTreeNode) return
for (const ancestor of subTreeNode.eachAncestorSubTreeNode()) {
if (!ancestor.expanded) {
ancestor.expand()
}
}
}
changeSelectStrategy(newStrategy: SelectStrategy) {
for (const subTreeNode of this.querySelectorAll<TreeViewSubTreeNodeElement>('tree-view-sub-tree-node')) {
subTreeNode.changeSelectStrategy(newStrategy)
}
}
// PRIVATE API METHOD
//
// This would normally be marked private, but it's called by TreeViewSubTreeNodes
// and thus must be public.
infoFromNode(node: Element, newCheckedValue?: TreeViewCheckedValue): TreeViewNodeInfo | null {
const type = this.getNodeType(node)
if (!type) return null
const checkedValue = this.getNodeCheckedValue(node)
return {
node,
type,
path: this.getNodePath(node),
checkedValue: newCheckedValue || checkedValue,
previousCheckedValue: checkedValue,
}
}
selectVariant(node: Element): SelectVariant {
return (node.getAttribute('data-select-variant') || 'none') as SelectVariant
}
}
if (!window.customElements.get('tree-view')) {
window.TreeViewElement = TreeViewElement
window.customElements.define('tree-view', TreeViewElement)
}
declare global {
interface Window {
TreeViewElement: typeof TreeViewElement
}
}