On this page
Dialog v2
- Draft
- Not reviewed for accessibility
import {Dialog} from '@primer/react/drafts'
The dialog component is the Primer implementation of the ARIA design pattern Dialog. A dialog is a type of overlay that can be used for confirming actions, asking for disambiguation, and presenting small forms. They generally allow the user to focus on a quick task without having to navigate to a different page.
Dialogs appear in the page after a direct user interaction. Don't show dialogs on page load or as system alerts.
Dialogs appear centered in the page, with a visible backdrop that dims the rest of the window for focus.
All dialogs should have a title and a close button. Use the title
prop to set the title. The close button is created automatically, but must be handled with an onClose
prop.
Dialogs are modal. Dialogs can be dismissed by clicking on the close button, by interacting with another button in the overlay, or by clicking outside of the overlay.
(Coming soon) Make sure larger dialogs remain mobile-friendly. Even large dialogs need to be responsive. A dialog's width and height will be readjusted depending on the screen size and should never exceed the available space. Use responsive solutions to adjust the UI so they behave well on smaller screens.
(Coming soon) Simple and small dialogs can remain as-is on mobile. As more elements are added to it, mobile-specific style variations such as Bottom sheet and Full-screen should be considered.
State
The dialog component is completely stateless. The parent component must conditionally render a dialog based on the necessary criteria. The parent component can be notified by a gesture to close the dialog (e.g. by clicking the "X" button or by pressing the Escape key) by passing in the onClose
prop.
Accessibility
The dialog component is fully accessible out-of-the-box. The dialog's title is used for aria-labelledby
, and the dialog's description is used for aria-describedby
. The aria-modal="true"
attribute is used to inform screen readers that the rest of the content on the page is inert.
Keyboard
The default keyboard API for a dialog employs three mechanisms:
- The Escape key can be pressed to close the dialog.
- Focus is trapped within the top-most dialog. When a dialog is opened, the close button receives initial focus by default, or on a button defined with
autoFocus: true
. - If there are buttons in the dialog footer, focus can be moved between them with left and right arrow keys or tab/shift+tab.
- When a dialog is closed, it can optionally handle returning focus to the element that was focused immediately before the dialog was opened. Otherwise, it is the consumer's responsibility to move focus to a suitable element.
Custom rendering
Note: using custom rendering allows breaking out of the defined design, UX, and accessibility patterns of the dialog. Use only as a last resort.
By default, the Dialog component implements the design and interactions defined by the Primer design system. If necessary, you can provide custom renderers for the header, body, or footer using the renderHeader
, renderBody
, and renderFooter
props, respectively. The JSX produced by these render props will render full-bleed into their respective areas of the dialog. If you are using the custom renderers, you should use the provided sub-components Dialog.Header
, Dialog.Title
, Dialog.Subtitle
, Dialog.CloseButton
, Dialog.Body
, Dialog.Footer
, and Dialog.Buttons
to the extent possible.
Example
Props
Dialog
Name | Type | Default | Description |
---|---|---|---|
title | React.ReactNode | Title of the Dialog. Also serves as the aria-label for this Dialog. | |
subtitle | React.ReactNode | The Dialog's subtitle. Optional. Rendered below the title in smaller type with less contrast. Also serves as the aria-describedby for this Dialog. | |
renderHeader | React.FunctionComponent<React.PropsWithChildren<DialogHeaderProps>> | Provide a custom renderer for the dialog header. This content is rendered directly into the dialog body area, full bleed from edge to edge, top to the start of the body element. Warning: using a custom renderer may violate Primer UX principles. | |
renderBody | React.FunctionComponent<React.PropsWithChildren<DialogProps>> | Provide a custom render function for the dialog body. This content is rendered directly into the dialog body area, full bleed from edge to edge, header to footer. Warning: using a custom renderer may violate Primer UX principles. | |
renderFooter | React.FunctionComponent<React.PropsWithChildren<DialogProps>> | Provide a custom render function for the dialog footer. This content is rendered directly into the dialog footer area, full bleed from edge to edge, end of the body element to bottom. Warning: using a custom renderer may violate Primer UX principles. | |
footerButtons | DialogButtonProps[] | Specifies the buttons to be rendered in the Dialog footer. | |
onClose | (gesture: 'close-button' | 'escape') => void | This method is invoked when a gesture to close the dialog is used (either an Escape key press or clicking the 'X' in the top-right corner). The gesture argument indicates the gesture that was used to close the dialog (either 'close-button' or 'escape'). | |
role | 'dialog' | 'alertdialog' | The ARIA role to assign to this dialog. | |
width | 'small' | 'medium' | 'large' | 'xlarge' | ||
height | 'small' | 'large' | 'auto' |
DialogHeaderProps
The DialogHeaderProps
interface extends DialogProps
and adds these additional properties:
Prop name | Type | Description |
---|---|---|
dialogLabelId | string | ID of the element that will be used as the aria-labelledby attribute on the dialog. This ID should be set to the element that renders the dialog's title. |
dialogDescriptionId | string | ID of the element that will be used as the aria-describedby attribute on the dialog. This ID should be set to the element that renders the dialog's subtitle. |
DialogButtonProps
The DialogButtonProps
interface extends ButtonProps
(see Button) and adds these additional properties:
Prop name | Type | Default | Description |
---|---|---|---|
buttonType | "normal" │ "primary" │ "danger" | Button | The type of button to render |
content | React.ReactNode | Required. The button's inner content. | |
autoFocus | boolean | false | If true, this button will be automatically focused when the dialog is first rendered. If autoFocus is true on subsequent button definitions, it will be ignored. |
ConfirmationDialog
A ConfirmationDialog
is a special kind of dialog with more rigid behavior. It is used to confirm a user action. ConfirmationDialog
s always have exactly two buttons: one to cancel the action and one to confirm it. No custom rendering capabilities are provided for ConfirmationDialog.
useConfirm hook
An alternate way to use ConfirmationDialog
is with the useConfirm()
hook. It takes no parameters and returns an async
function, confirm
. When confirm
is called (see ConfirmOptions below for its argument), it shows the confirmation dialog. When the dialog is dismissed, a promise is resolved with true
or false
depending on whether or not the confirm button was used.
Example (with useConfirm
hook)
Example (using the full ConfirmationDialog
component)
ConfirmationDialogProps
Prop name | Type | Default | Description |
---|---|---|---|
title | React.ReactNode | Required. Sets the title of the dialog, which by default is also used as the aria-labelledby attribute. | |
onClose | (gesture: 'confirm' │ 'cancel' │ 'close-button' │ 'escape') => void | Required. This callback is invoked when a gesture to close the dialog is performed. The first argument indicates the gesture. | |
cancelButtonContent | React.ReactNode | "Cancel" | The content to use for the cancel button. |
confirmButtonContent | React.ReactNode | "OK" | The content to use for the confirm button. |
confirmButtonType | "normal" │ "primary" │ "danger" | Button | The type of button to use for the confirm button. |
ConfirmOptions
Prop name | Type | Default | Description |
---|---|---|---|
title | React.ReactNode | Required. Sets the title of the dialog, which by default is also used as the aria-labelledby attribute. | |
content | React.ReactNode | Required. Used as the body of the ConfirmationDialog that is displayed. | |
cancelButtonContent | React.ReactNode | "Cancel" | The content to use for the cancel button. |
confirmButtonContent | React.ReactNode | "OK" | The content to use for the confirm button. |
confirmButtonType | "normal" │ "primary" │ "danger" | Button | The type of button to use for the confirm button. |