Skip to content
On this page

Dialog

  • Alpha
  • Review pending by accessibility team
On this page

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 or aria-label to your Dialog component. In most cases you should use aria-labelledby and pass it the id of your Dialog.Header. If there is no text in your header, or you chose not to use a header, you can use aria-label to describe the purpose of the Dialog.

  • Be sure to pass a ref to return the focus back to once the Dialog closes via the returnFocusRef 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 the Dialog closes, you can omit the returnFocusProp.

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:

Component props

Dialog

Prop nameTypeDefaultDescription
isOpenBooleanSet whether or not the dialog is shown
onDismissFunctionA user-provided function that should close the dialog
returnFocusRefReact refThe element to restore focus back to after the Dialog is closed
initialFocusRefReact refElement 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-labelledbystringPass an id to use for the aria-label. Use either a aria-label or an aria-labelledby but not both.
aria-labelstringPass a label to be used to describe the Dialog. Use either a aria-label or an aria-labelledby but not both.
sxSystemStyleObject{}Style to be applied to the component

Dialog.Header

Prop nameTypeDefaultDescription
sxSystemStyleObject{}Style to be applied to the component
Edit this page on GitHub
7 contributorsty-v1siddharthkpcolebemisjfuchsVanAndersonT-Hugsacknosyn
Last edited by ty-v1 on May 24, 2022