Overview
- Getting Started
- Loading States
- Forms
- Feature Flags
- Portal
- Show
- For
- Text
- Toggle
- Local Storage
Actions
- Button
- Icon Button
Communication
- Admonition
- Accordion
- Avatar
- Notifications
- Progress Indicators
- Tag
- Tooltip
Containment
- Confirm Modal
- Prompt Modal
- CTA Modal
- Modaldeprecated
- Dialog
- Table
Navigation
- Menu
- Tabs
Selection
- Drag & Drop
- Checkbox
- Date Picker
- Radio
- Rating
- Select
- Combobox
- Switch
Inputs
- Field
- Input
- Textarea
- Labeldeprecated
- Fieldset
- Field Messagedeprecated
- File Uploader
Hooks & Helpers
- split-props
- trap-focusdeprecated
- use-root-colors
- use-theme
- use-theme-context
- use-toggledeprecated
trapFocus
A utility for trapping focus within a Modal.
Trap Focus
The trapFocus
helper allows you to trap the focus within a Modal.
Usage
1import {2 Modal,3 Button,4 trapFocus,5 useModal6} from '@cerberus/react'7
8function SomePage() {9 const { modalRef, show, close } = useModal()10 const handleKeyDown = trapFocus(modalRef)11
12 return (13 <div>14 <Button onClick={show}>Show Modal</Button>15
16 <Modal onKeyDown={handleKeyDown} ref={modalRef}>17 This is a custom modal!18 <Button onClick={close}>19 Close20 </Button>21 </Modal>22 </div>23 )24}
API
define function useModal(modalRef: RefObject<HTMLDialogElement>): KeyboardEventHandler<HTMLDialogElement>
Arguments
The trapFocus
helper accepts a single argument:
Name | Default | Description |
---|---|---|
ref | null | The ref of the dialog element to trap focus within. |
On this page