Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(modal): handle events and focus #2889

Merged
merged 2 commits into from
Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/four-lizards-do.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@ultraviolet/ui': patch
---

fix(modal): handle events and focus
77 changes: 74 additions & 3 deletions packages/ui/src/components/Modal/Dialog.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import styled from '@emotion/styled'
import type { KeyboardEventHandler, MouseEventHandler } from 'react'
import type {
FocusEventHandler,
KeyboardEventHandler,
MouseEventHandler,
ReactEventHandler,
} from 'react'
import { useCallback, useEffect, useRef } from 'react'
import { createPortal } from 'react-dom'
import { MODAL_PLACEMENT, MODAL_WIDTH } from './constants'
Expand Down Expand Up @@ -75,13 +80,15 @@ export const Dialog = ({
backdropCss,
}: DialogProps) => {
const containerRef = useRef(document.createElement('div'))
const dialogRef = useRef<HTMLDialogElement>(null)
const onCloseRef = useRef(onClose)

// Portal to put the modal in
useEffect(() => {
const element = containerRef.current
if (open) {
document.body.appendChild(element)
dialogRef.current?.focus()
}

return () => {
Expand All @@ -100,15 +107,25 @@ export const Dialog = ({
useEffect(() => {
const handleEscPress = (event: KeyboardEvent) => {
if (event.key === 'Escape' && hideOnEsc) {
event.preventDefault()
event.stopPropagation()
onCloseRef.current()
}
}
if (open) {
document.addEventListener('keyup', handleEscPress)
document.body.addEventListener('keyup', handleEscPress, { capture: true })
document.body.addEventListener('keydown', handleEscPress, {
capture: true,
})
}

return () => {
document.removeEventListener('keyup', handleEscPress)
document.body.removeEventListener('keyup', handleEscPress, {
capture: true,
})
document.body.removeEventListener('keydown', handleEscPress, {
capture: true,
})
}
}, [open, onCloseRef, hideOnEsc])

Expand All @@ -121,6 +138,11 @@ export const Dialog = ({
}
}, [preventBodyScroll, open])

// Stop focus to prevent unexpected body loose focus
const stopFocus: FocusEventHandler = useCallback(event => {
event.stopPropagation()
}, [])

// Stop click to prevent unexpected dialog close
const stopClick: MouseEventHandler = useCallback(event => {
event.stopPropagation()
Expand All @@ -131,17 +153,63 @@ export const Dialog = ({
event.stopPropagation()
}, [])

// Enable focus trap inside the modal
const handleFocusTrap: KeyboardEventHandler = useCallback(event => {
event.stopPropagation()
if (event.key === 'Escape') {
event.preventDefault()

return
}
const isTabPressed = event.key === 'Tab'

if (!isTabPressed) {
return
}

const focusableEls =
dialogRef.current?.querySelectorAll(
'a[href]:not([disabled]), button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled])',
) ?? []

// Handle case when no interactive element are within the modal (including close icon)
if (focusableEls.length === 0) {
event.preventDefault()
}

const firstFocusableEl = focusableEls[0] as HTMLElement
const lastFocusableEl = focusableEls[focusableEls.length - 1] as HTMLElement

if (event.shiftKey) {
if (document.activeElement === firstFocusableEl) {
lastFocusableEl.focus()
event.preventDefault()
}
} else if (document.activeElement === lastFocusableEl) {
firstFocusableEl.focus()
event.preventDefault()
}
}, [])

// Prevent default behaviour on Escape
const stopCancel: ReactEventHandler = event => {
event.preventDefault()
event.stopPropagation()
}

return createPortal(
<StyledBackdrop
data-open={open}
onClick={hideOnClickOutside ? onClose : undefined}
className={backdropClassName}
css={backdropCss}
data-testid={dataTestId ? `${dataTestId}-backdrop` : undefined}
onFocus={stopFocus}
>
<StyledDialog
css={dialogCss}
onKeyUp={stopKeyUp}
onKeyDown={handleFocusTrap}
className={className}
id={id}
data-testid={dataTestId}
Expand All @@ -150,7 +218,10 @@ export const Dialog = ({
data-size={size}
open={open}
onClick={stopClick}
onCancel={stopCancel}
onClose={stopCancel}
aria-modal
ref={dialogRef}
>
{open ? children : null}
</StyledDialog>
Expand Down
6 changes: 6 additions & 0 deletions packages/ui/src/components/Modal/Disclosure.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ export const Disclosure = ({
}
}, [handleOpen, disclosureRef])

useEffect(() => {
if (!visible) {
disclosureRef.current?.focus()
}
}, [visible, disclosureRef])

if (typeof disclosure === 'function') {
return disclosure({
visible,
Expand Down
5 changes: 0 additions & 5 deletions packages/ui/src/components/Modal/__tests__/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {
renderWithTheme,
shouldMatchEmotionSnapshotWithPortal,
} from '../../../../.jest/helpers'
import { TextInput } from '../../TextInput'

const customDialogBackdropStyles = css`
background-color: aliceblue;
Expand Down Expand Up @@ -279,12 +278,8 @@ describe('Modal', () => {
opened
>
<div> test</div>
<TextInput data-testid="input" />
</Modal>,
)
await userEvent.type(screen.getByRole('textbox'), 'test{Escape}')
await userEvent.keyboard('{Escape}')
expect(mockOnClose).toBeCalledTimes(0)
await userEvent.click(screen.getByRole('dialog'))
await userEvent.keyboard('{Escape}')

Expand Down
Loading