-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpopover.ts
670 lines (571 loc) · 19.7 KB
/
popover.ts
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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
import {
defineComponent,
inject,
onUnmounted,
provide,
ref,
watchEffect,
// Types
InjectionKey,
Ref,
computed,
} from 'vue'
import { match } from '../../utils/match'
import { render, Features } from '../../utils/render'
import { useId } from '../../hooks/use-id'
import { Keys } from '../../keyboard'
import {
getFocusableElements,
Focus,
focusIn,
FocusResult,
isFocusableElement,
FocusableMode,
} from '../../utils/focus-management'
import { dom } from '../../utils/dom'
import { useOpenClosedProvider, State, useOpenClosed } from '../../internal/open-closed'
import { useResolveButtonType } from '../../hooks/use-resolve-button-type'
import { useOutsideClick } from '../../hooks/use-outside-click'
import { getOwnerDocument } from '../../utils/owner'
import { useEventListener } from '../../hooks/use-event-listener'
enum PopoverStates {
Open,
Closed,
}
interface StateDefinition {
// State
popoverState: Ref<PopoverStates>
button: Ref<HTMLElement | null>
buttonId: string
panel: Ref<HTMLElement | null>
panelId: string
// State mutators
togglePopover(): void
closePopover(): void
// Exposed functions
close(focusableElement: HTMLElement | Ref<HTMLElement | null>): void
}
let PopoverContext = Symbol('PopoverContext') as InjectionKey<StateDefinition>
function usePopoverContext(component: string) {
let context = inject(PopoverContext, null)
if (context === null) {
let err = new Error(`<${component} /> is missing a parent <${Popover.name} /> component.`)
if (Error.captureStackTrace) Error.captureStackTrace(err, usePopoverContext)
throw err
}
return context
}
let PopoverGroupContext = Symbol('PopoverGroupContext') as InjectionKey<{
registerPopover(registerbag: PopoverRegisterBag): void
unregisterPopover(registerbag: PopoverRegisterBag): void
isFocusWithinPopoverGroup(): boolean
closeOthers(buttonId: string): void
} | null>
function usePopoverGroupContext() {
return inject(PopoverGroupContext, null)
}
let PopoverPanelContext = Symbol('PopoverPanelContext') as InjectionKey<string | null>
function usePopoverPanelContext() {
return inject(PopoverPanelContext, null)
}
interface PopoverRegisterBag {
buttonId: string
panelId: string
close(): void
}
// ---
export let Popover = defineComponent({
name: 'Popover',
props: {
as: { type: [Object, String], default: 'div' },
},
setup(props, { slots, attrs, expose }) {
let buttonId = `headlessui-popover-button-${useId()}`
let panelId = `headlessui-popover-panel-${useId()}`
let internalPopoverRef = ref<HTMLElement | null>(null)
expose({ el: internalPopoverRef, $el: internalPopoverRef })
let popoverState = ref<StateDefinition['popoverState']['value']>(PopoverStates.Closed)
let button = ref<StateDefinition['button']['value']>(null)
let panel = ref<StateDefinition['panel']['value']>(null)
let ownerDocument = computed(() => getOwnerDocument(internalPopoverRef))
let api = {
popoverState,
buttonId,
panelId,
panel,
button,
togglePopover() {
popoverState.value = match(popoverState.value, {
[PopoverStates.Open]: PopoverStates.Closed,
[PopoverStates.Closed]: PopoverStates.Open,
})
},
closePopover() {
if (popoverState.value === PopoverStates.Closed) return
popoverState.value = PopoverStates.Closed
},
close(focusableElement: HTMLElement | Ref<HTMLElement | null>) {
api.closePopover()
let restoreElement = (() => {
if (!focusableElement) return dom(api.button)
if (focusableElement instanceof HTMLElement) return focusableElement
if (focusableElement.value instanceof HTMLElement) return dom(focusableElement)
return dom(api.button)
})()
restoreElement?.focus()
},
} as StateDefinition
provide(PopoverContext, api)
useOpenClosedProvider(
computed(() =>
match(popoverState.value, {
[PopoverStates.Open]: State.Open,
[PopoverStates.Closed]: State.Closed,
})
)
)
let registerBag = {
buttonId,
panelId,
close() {
api.closePopover()
},
}
let groupContext = usePopoverGroupContext()
let registerPopover = groupContext?.registerPopover
function isFocusWithinPopoverGroup() {
return (
groupContext?.isFocusWithinPopoverGroup() ??
(ownerDocument.value?.activeElement &&
(dom(button)?.contains(ownerDocument.value.activeElement) ||
dom(panel)?.contains(ownerDocument.value.activeElement)))
)
}
watchEffect(() => registerPopover?.(registerBag))
// Handle focus out
useEventListener(
ownerDocument.value?.defaultView,
'focus',
() => {
if (popoverState.value !== PopoverStates.Open) return
if (isFocusWithinPopoverGroup()) return
if (!button) return
if (!panel) return
api.closePopover()
},
true
)
// Handle outside click
useOutsideClick([button, panel], (event, target) => {
if (popoverState.value !== PopoverStates.Open) return
api.closePopover()
if (!isFocusableElement(target, FocusableMode.Loose)) {
event.preventDefault()
dom(button)?.focus()
}
})
return () => {
let slot = { open: popoverState.value === PopoverStates.Open, close: api.close }
return render({
props: {
...props,
ref: internalPopoverRef,
},
slot,
slots,
attrs,
name: 'Popover',
})
}
},
})
// ---
export let PopoverButton = defineComponent({
name: 'PopoverButton',
props: {
as: { type: [Object, String], default: 'button' },
disabled: { type: [Boolean], default: false },
},
setup(props, { attrs, slots, expose }) {
let api = usePopoverContext('PopoverButton')
let ownerDocument = computed(() => getOwnerDocument(api.button))
expose({ el: api.button, $el: api.button })
let groupContext = usePopoverGroupContext()
let closeOthers = groupContext?.closeOthers
let panelContext = usePopoverPanelContext()
let isWithinPanel = panelContext === null ? false : panelContext === api.panelId
// TODO: Revisit when handling Tab/Shift+Tab when using Portal's
let activeElementRef = ref<Element | null>(null)
let previousActiveElementRef = ref<Element | null>()
useEventListener(
ownerDocument.value?.defaultView,
'focus',
() => {
previousActiveElementRef.value = activeElementRef.value
activeElementRef.value = ownerDocument.value?.activeElement as HTMLElement
},
true
)
let elementRef = ref(null)
if (!isWithinPanel) {
watchEffect(() => {
api.button.value = elementRef.value
})
}
let type = useResolveButtonType(
computed(() => ({ as: props.as, type: attrs.type })),
elementRef
)
function handleKeyDown(event: KeyboardEvent) {
if (isWithinPanel) {
if (api.popoverState.value === PopoverStates.Closed) return
switch (event.key) {
case Keys.Space:
case Keys.Enter:
event.preventDefault() // Prevent triggering a *click* event
// @ts-expect-error
event.target.click?.()
api.closePopover()
dom(api.button)?.focus() // Re-focus the original opening Button
break
}
} else {
switch (event.key) {
case Keys.Space:
case Keys.Enter:
event.preventDefault() // Prevent triggering a *click* event
event.stopPropagation()
if (api.popoverState.value === PopoverStates.Closed) closeOthers?.(api.buttonId)
api.togglePopover()
break
case Keys.Escape:
if (api.popoverState.value !== PopoverStates.Open) return closeOthers?.(api.buttonId)
if (!dom(api.button)) return
if (
ownerDocument.value?.activeElement &&
!dom(api.button)?.contains(ownerDocument.value.activeElement)
)
return
event.preventDefault()
event.stopPropagation()
api.closePopover()
break
case Keys.Tab:
if (api.popoverState.value !== PopoverStates.Open) return
if (!api.panel) return
if (!api.button) return
// TODO: Revisit when handling Tab/Shift+Tab when using Portal's
if (event.shiftKey) {
// Check if the last focused element exists, and check that it is not inside button or panel itself
if (!previousActiveElementRef.value) return
if (dom(api.button)?.contains(previousActiveElementRef.value)) return
if (dom(api.panel)?.contains(previousActiveElementRef.value)) return
// Check if the last focused element is *after* the button in the DOM
let focusableElements = getFocusableElements(ownerDocument.value?.body)
let previousIdx = focusableElements.indexOf(
previousActiveElementRef.value as HTMLElement
)
let buttonIdx = focusableElements.indexOf(dom(api.button)!)
if (buttonIdx > previousIdx) return
event.preventDefault()
event.stopPropagation()
focusIn(dom(api.panel)!, Focus.Last)
} else {
event.preventDefault()
event.stopPropagation()
focusIn(dom(api.panel)!, Focus.First)
}
break
}
}
}
function handleKeyUp(event: KeyboardEvent) {
if (isWithinPanel) return
if (event.key === Keys.Space) {
// Required for firefox, event.preventDefault() in handleKeyDown for
// the Space key doesn't cancel the handleKeyUp, which in turn
// triggers a *click*.
event.preventDefault()
}
if (api.popoverState.value !== PopoverStates.Open) return
if (!api.panel) return
if (!api.button) return
// TODO: Revisit when handling Tab/Shift+Tab when using Portal's
switch (event.key) {
case Keys.Tab:
// Check if the last focused element exists, and check that it is not inside button or panel itself
if (!previousActiveElementRef.value) return
if (dom(api.button)?.contains(previousActiveElementRef.value)) return
if (dom(api.panel)?.contains(previousActiveElementRef.value)) return
// Check if the last focused element is *after* the button in the DOM
let focusableElements = getFocusableElements(ownerDocument.value?.body)
let previousIdx = focusableElements.indexOf(previousActiveElementRef.value as HTMLElement)
let buttonIdx = focusableElements.indexOf(dom(api.button)!)
if (buttonIdx > previousIdx) return
event.preventDefault()
event.stopPropagation()
focusIn(dom(api.panel)!, Focus.Last)
break
}
}
function handleClick(event: MouseEvent) {
if (props.disabled) return
if (isWithinPanel) {
api.closePopover()
dom(api.button)?.focus() // Re-focus the original opening Button
} else {
event.preventDefault()
event.stopPropagation()
if (api.popoverState.value === PopoverStates.Closed) closeOthers?.(api.buttonId)
dom(api.button)?.focus()
api.togglePopover()
}
}
return () => {
let slot = { open: api.popoverState.value === PopoverStates.Open }
let propsWeControl = isWithinPanel
? {
ref: elementRef,
type: type.value,
onKeydown: handleKeyDown,
onClick: handleClick,
}
: {
ref: elementRef,
id: api.buttonId,
type: type.value,
'aria-expanded': props.disabled
? undefined
: api.popoverState.value === PopoverStates.Open,
'aria-controls': dom(api.panel) ? api.panelId : undefined,
disabled: props.disabled ? true : undefined,
onKeydown: handleKeyDown,
onKeyup: handleKeyUp,
onClick: handleClick,
}
return render({
props: { ...props, ...propsWeControl },
slot,
attrs: attrs,
slots: slots,
name: 'PopoverButton',
})
}
},
})
// ---
export let PopoverOverlay = defineComponent({
name: 'PopoverOverlay',
props: {
as: { type: [Object, String], default: 'div' },
static: { type: Boolean, default: false },
unmount: { type: Boolean, default: true },
},
setup(props, { attrs, slots }) {
let api = usePopoverContext('PopoverOverlay')
let id = `headlessui-popover-overlay-${useId()}`
let usesOpenClosedState = useOpenClosed()
let visible = computed(() => {
if (usesOpenClosedState !== null) {
return usesOpenClosedState.value === State.Open
}
return api.popoverState.value === PopoverStates.Open
})
function handleClick() {
api.closePopover()
}
return () => {
let slot = { open: api.popoverState.value === PopoverStates.Open }
let propsWeControl = {
id,
'aria-hidden': true,
onClick: handleClick,
}
return render({
props: { ...props, ...propsWeControl },
slot,
attrs,
slots,
features: Features.RenderStrategy | Features.Static,
visible: visible.value,
name: 'PopoverOverlay',
})
}
},
})
// ---
export let PopoverPanel = defineComponent({
name: 'PopoverPanel',
props: {
as: { type: [Object, String], default: 'div' },
static: { type: Boolean, default: false },
unmount: { type: Boolean, default: true },
focus: { type: Boolean, default: false },
},
setup(props, { attrs, slots, expose }) {
let { focus } = props
let api = usePopoverContext('PopoverPanel')
let ownerDocument = computed(() => getOwnerDocument(api.panel))
expose({ el: api.panel, $el: api.panel })
provide(PopoverPanelContext, api.panelId)
onUnmounted(() => {
api.panel.value = null
})
// Move focus within panel
watchEffect(() => {
if (!focus) return
if (api.popoverState.value !== PopoverStates.Open) return
if (!api.panel) return
let activeElement = ownerDocument.value?.activeElement as HTMLElement
if (dom(api.panel)?.contains(activeElement)) return // Already focused within Dialog
focusIn(dom(api.panel)!, Focus.First)
})
// Handle Tab / Shift+Tab focus positioning
useEventListener(ownerDocument.value?.defaultView, 'keydown', (event: KeyboardEvent) => {
if (api.popoverState.value !== PopoverStates.Open) return
if (!dom(api.panel)) return
if (event.key !== Keys.Tab) return
if (!ownerDocument.value?.activeElement) return
if (!dom(api.panel)?.contains(ownerDocument.value.activeElement)) return
// We will take-over the default tab behaviour so that we have a bit
// control over what is focused next. It will behave exactly the same,
// but it will also "fix" some issues based on whether you are using a
// Portal or not.
event.preventDefault()
let result = focusIn(dom(api.panel)!, event.shiftKey ? Focus.Previous : Focus.Next)
if (result === FocusResult.Underflow) {
return dom(api.button)?.focus()
} else if (result === FocusResult.Overflow) {
if (!dom(api.button)) return
let elements = getFocusableElements(ownerDocument.value.body)
let buttonIdx = elements.indexOf(dom(api.button)!)
let nextElements = elements
.splice(buttonIdx + 1) // Elements after button
.filter((element) => !dom(api.panel)?.contains(element)) // Ignore items in panel
// Try to focus the next element, however it could fail if we are in a
// Portal that happens to be the very last one in the DOM. In that
// case we would Error (because nothing after the button is
// focusable). Therefore we will try and focus the very first item in
// the document.body.
if (focusIn(nextElements, Focus.First) === FocusResult.Error) {
focusIn(ownerDocument.value.body, Focus.First)
}
}
})
// Handle focus out when we are in special "focus" mode
useEventListener(
ownerDocument.value?.defaultView,
'focus',
() => {
if (!focus) return
if (api.popoverState.value !== PopoverStates.Open) return
if (!dom(api.panel)) return
if (
ownerDocument.value?.activeElement &&
dom(api.panel)?.contains(ownerDocument.value.activeElement as HTMLElement)
)
return
api.closePopover()
},
true
)
let usesOpenClosedState = useOpenClosed()
let visible = computed(() => {
if (usesOpenClosedState !== null) {
return usesOpenClosedState.value === State.Open
}
return api.popoverState.value === PopoverStates.Open
})
function handleKeyDown(event: KeyboardEvent) {
switch (event.key) {
case Keys.Escape:
if (api.popoverState.value !== PopoverStates.Open) return
if (!dom(api.panel)) return
if (ownerDocument.value && !dom(api.panel)?.contains(ownerDocument.value.activeElement))
return
event.preventDefault()
event.stopPropagation()
api.closePopover()
dom(api.button)?.focus()
break
}
}
return () => {
let slot = {
open: api.popoverState.value === PopoverStates.Open,
close: api.close,
}
let propsWeControl = {
ref: api.panel,
id: api.panelId,
onKeydown: handleKeyDown,
}
return render({
props: { ...props, ...propsWeControl },
slot,
attrs,
slots,
features: Features.RenderStrategy | Features.Static,
visible: visible.value,
name: 'PopoverPanel',
})
}
},
})
// ---
export let PopoverGroup = defineComponent({
name: 'PopoverGroup',
props: {
as: { type: [Object, String], default: 'div' },
},
setup(props, { attrs, slots, expose }) {
let groupRef = ref<HTMLElement | null>(null)
let popovers = ref<PopoverRegisterBag[]>([])
let ownerDocument = computed(() => getOwnerDocument(groupRef))
expose({ el: groupRef, $el: groupRef })
function unregisterPopover(registerBag: PopoverRegisterBag) {
let idx = popovers.value.indexOf(registerBag)
if (idx !== -1) popovers.value.splice(idx, 1)
}
function registerPopover(registerBag: PopoverRegisterBag) {
popovers.value.push(registerBag)
return () => {
unregisterPopover(registerBag)
}
}
function isFocusWithinPopoverGroup() {
let owner = ownerDocument.value
if (!owner) return false
let element = owner.activeElement as HTMLElement
if (dom(groupRef)?.contains(element)) return true
// Check if the focus is in one of the button or panel elements. This is important in case you are rendering inside a Portal.
return popovers.value.some((bag) => {
return (
owner!.getElementById(bag.buttonId)?.contains(element) ||
owner!.getElementById(bag.panelId)?.contains(element)
)
})
}
function closeOthers(buttonId: string) {
for (let popover of popovers.value) {
if (popover.buttonId !== buttonId) popover.close()
}
}
provide(PopoverGroupContext, {
registerPopover,
unregisterPopover,
isFocusWithinPopoverGroup,
closeOthers,
})
return () => {
let propsWeControl = { ref: groupRef }
return render({
props: { ...props, ...propsWeControl },
slot: {},
attrs,
slots,
name: 'PopoverGroup',
})
}
},
})