On this page
Dialog
- Alpha
- Not reviewed for accessibility
The dialog component is used for all modals. It renders on top of the rest of the app with an overlay.
You'll need to manage the isOpen
state in a wrapper component of your own and pass in a function to be used to close the Dialog. For documentation purposes only we've created a mock State
to handle this, but you should handle the state in the component you consume Dialog
in or in a wrapper component.
Accessibility
A few considerations must be made to ensure your use of the Dialog
component is accessible:
Always be sure to provide either
aria-labelledby
oraria-label
to yourDialog
component. In most cases you should usearia-labelledby
and pass it theid
of yourDialog.Header
. If there is no text in your header, or you chose not to use a header, you can usearia-label
to describe the purpose of theDialog
.Be sure to pass a ref to return the focus back to once the
Dialog
closes via thereturnFocusRef
prop. In most cases this should be the element that opened the Dialog. If you decide to manage focus within your application and want to bypass Primer React Components from doing so when theDialog
closes, you can omit thereturnFocusProp
.
Z-index
If you're running into z-index issues or are rendering the component inside of an absolutely positioned element, you can wrap your Dialog
in a React Portal.
Examples
You can also pass any non-text content into the header:
Props
Dialog
Name | Type | Default | Description |
---|---|---|---|
isOpen | boolean | Whether or not the dialog is open | |
onDismiss | () => void | Function that will be called when the dialog is closed | |
returnFocusRef | React.RefObject<HTMLElement> | The element to restore focus back to after the `Dialog` is closed | |
initialFocusRef | React.RefObject<HTMLElement> | Element inside of the `Dialog` you'd like to be focused when the Dialog is opened. If nothing is passed to `initialFocusRef` the close button is focused. | |
aria-labelledby | string | Pass an id to use for the aria-label. Use either a `aria-label` or an `aria-labelledby` but not both. | |
aria-label | string | Pass a label to be used to describe the Dialog. Use either a `aria-label` or an `aria-labelledby` but not both. | |
sx | SystemStyleObject | Style overrides to apply to the component. See also overriding styles. |
Dialog.Header
Name | Type | Default | Description |
---|---|---|---|
sx | SystemStyleObject | Style overrides to apply to the component. See also overriding styles. |