Alert Dialog
A dialog that requires user response to proceed.
View as MarkdownAnatomy
Import the component and assemble its parts:
import { AlertDialog } from '@base-ui-components/react/alert-dialog';
<AlertDialog.Root>
<AlertDialog.Trigger />
<AlertDialog.Portal>
<AlertDialog.Backdrop />
<AlertDialog.Popup>
<AlertDialog.Title />
<AlertDialog.Description />
<AlertDialog.Close />
</AlertDialog.Popup>
</AlertDialog.Portal>
</AlertDialog.Root>API reference
Root
Groups all parts of the alert dialog. Doesn’t render its own HTML element.
defaultOpenboolean(default: false)
- Name
- Description
Whether the dialog is initially open.
To render a controlled dialog, use the
openprop instead.- Type
boolean | undefined- Default
false
openboolean
- Name
- Description
Whether the dialog is currently open.
- Type
boolean | undefined
onOpenChangefunction
- Name
- Description
Event handler called when the dialog is opened or closed.
- Type
| (( open: boolean, eventDetails: AlertDialog.Root.ChangeEventDetails, ) => void) | undefined
actionsRefRefObject<AlertDialog.Root.Actions>
- Name
- Description
A ref to imperative actions.
unmount: When specified, the dialog will not be unmounted when closed. Instead, theunmountfunction must be called to unmount the dialog manually. Useful when the dialog's animation is controlled by an external library.
- Type
| React.RefObject<AlertDialog.Root.Actions> | undefined
onOpenChangeCompletefunction
- Description
Event handler called after any animations complete when the dialog is opened or closed.
- Type
((open: boolean) => void) | undefined
childrenReactNode
- Name
- Type
React.ReactNode
Trigger
A button that opens the alert dialog.
Renders a <button> element.
nativeButtonboolean(default: true)
- Name
- Description
Whether the component renders a native
<button>element when replacing it via therenderprop. Set tofalseif the rendered element is not a button (e.g.<div>).- Type
boolean | undefined- Default
true
classNamestring | function
- Name
- Description
CSS class applied to the element, or a function that returns a class based on the component’s state.
- Type
| string | ((state: AlertDialog.Trigger.State) => string)
renderReactElement | function
- Name
- Description
Allows you to replace the component’s HTML element with a different tag, or compose it with another component.
Accepts a
ReactElementor a function that returns the element to render.- Type
| ReactElement | (( props: HTMLProps, state: AlertDialog.Trigger.State, ) => ReactElement)
data-popup-open
data-disabled
Portal
A portal element that moves the popup to a different part of the DOM.
By default, the portal element is appended to <body>.
containerUnion
- Name
- Description
A parent element to render the portal element into.
- Type
| HTMLElement | ShadowRoot | React.RefObject<HTMLElement | ShadowRoot | null> | null | undefined
childrenReactNode
- Name
- Type
React.ReactNode
keepMountedboolean(default: false)
- Name
- Description
Whether to keep the portal mounted in the DOM while the popup is hidden.
- Type
boolean | undefined- Default
false
Backdrop
An overlay displayed beneath the popup.
Renders a <div> element.
forceRenderboolean(default: false)
- Name
- Description
Whether the backdrop is forced to render even when nested.
- Type
boolean | undefined- Default
false
classNamestring | function
- Name
- Description
CSS class applied to the element, or a function that returns a class based on the component’s state.
- Type
| string | ((state: AlertDialog.Backdrop.State) => string)
renderReactElement | function
- Name
- Description
Allows you to replace the component’s HTML element with a different tag, or compose it with another component.
Accepts a
ReactElementor a function that returns the element to render.- Type
| ReactElement | (( props: HTMLProps, state: AlertDialog.Backdrop.State, ) => ReactElement)
data-open
data-closed
data-starting-style
data-ending-style
Popup
A container for the alert dialog contents.
Renders a <div> element.
initialFocusUnion
- Name
- Description
Determines the element to focus when the dialog is opened.
false: Do not move focus.true: Move focus based on the default behavior (first tabbable element or popup).RefObject: Move focus to the ref element.function: Called with the interaction type (mouse,touch,pen, orkeyboard). Return an element to focus,trueto use the default behavior, orfalse/undefinedto do nothing.
- Type
| boolean | React.RefObject<HTMLElement | null> | (( openType: InteractionType, ) => boolean | void | HTMLElement | null) | undefined
finalFocusUnion
- Name
- Description
Determines the element to focus when the dialog is closed.
false: Do not move focus.true: Move focus based on the default behavior (trigger or previously focused element).RefObject: Move focus to the ref element.function: Called with the interaction type (mouse,touch,pen, orkeyboard). Return an element to focus,trueto use the default behavior, orfalse/undefinedto do nothing.
- Type
| boolean | React.RefObject<HTMLElement | null> | (( closeType: InteractionType, ) => boolean | void | HTMLElement | null) | undefined
classNamestring | function
- Name
- Description
CSS class applied to the element, or a function that returns a class based on the component’s state.
- Type
| string | ((state: AlertDialog.Popup.State) => string)
renderReactElement | function
- Name
- Description
Allows you to replace the component’s HTML element with a different tag, or compose it with another component.
Accepts a
ReactElementor a function that returns the element to render.- Type
| ReactElement | (( props: HTMLProps, state: AlertDialog.Popup.State, ) => ReactElement)
data-open
data-closed
data-nested
data-nested-dialog-open
data-starting-style
data-ending-style
--nested-dialogs
Title
A heading that labels the dialog.
Renders an <h2> element.
classNamestring | function
- Name
- Description
CSS class applied to the element, or a function that returns a class based on the component’s state.
- Type
| string | ((state: AlertDialog.Title.State) => string)
renderReactElement | function
- Name
- Description
Allows you to replace the component’s HTML element with a different tag, or compose it with another component.
Accepts a
ReactElementor a function that returns the element to render.- Type
| ReactElement | (( props: HTMLProps, state: AlertDialog.Title.State, ) => ReactElement)
Description
A paragraph with additional information about the alert dialog.
Renders a <p> element.
classNamestring | function
- Name
- Description
CSS class applied to the element, or a function that returns a class based on the component’s state.
- Type
| string | ((state: AlertDialog.Description.State) => string)
renderReactElement | function
- Name
- Description
Allows you to replace the component’s HTML element with a different tag, or compose it with another component.
Accepts a
ReactElementor a function that returns the element to render.- Type
| ReactElement | (( props: HTMLProps, state: AlertDialog.Description.State, ) => ReactElement)
Close
A button that closes the alert dialog.
Renders a <button> element.
nativeButtonboolean(default: true)
- Name
- Description
Whether the component renders a native
<button>element when replacing it via therenderprop. Set tofalseif the rendered element is not a button (e.g.<div>).- Type
boolean | undefined- Default
true
classNamestring | function
- Name
- Description
CSS class applied to the element, or a function that returns a class based on the component’s state.
- Type
| string | ((state: AlertDialog.Close.State) => string)
renderReactElement | function
- Name
- Description
Allows you to replace the component’s HTML element with a different tag, or compose it with another component.
Accepts a
ReactElementor a function that returns the element to render.- Type
| ReactElement | (( props: HTMLProps, state: AlertDialog.Close.State, ) => ReactElement)
data-disabled
Examples
Open from a menu
In order to open a dialog using a menu, control the dialog state and open it imperatively using the onClick handler on the menu item.
import * as React from 'react';
import { AlertDialog } from '@base-ui-components/react/alert-dialog';
import { Menu } from '@base-ui-components/react/menu';
function ExampleMenu() {
const [dialogOpen, setDialogOpen] = React.useState(false);
return (
<React.Fragment>
<Menu.Root>
<Menu.Trigger>Open menu</Menu.Trigger>
<Menu.Portal>
<Menu.Positioner>
<Menu.Popup>
{/* Open the dialog when the menu item is clicked */}
<Menu.Item onClick={() => setDialogOpen(true)}>Open dialog</Menu.Item>
</Menu.Popup>
</Menu.Positioner>
</Menu.Portal>
</Menu.Root>
{/* Control the dialog state */}
<AlertDialog.Root open={dialogOpen} onOpenChange={setDialogOpen}>
<AlertDialog.Portal>
<AlertDialog.Backdrop />
<AlertDialog.Popup>
{/* Rest of the dialog */}
</AlertDialog.Popup>
</AlertDialog.Portal>
</AlertDialog.Root>
</React.Fragment>
);
}Close confirmation
This example shows a nested confirmation dialog that opens if the text entered in the parent dialog is going to be discarded.
To implement this, both dialogs should be controlled. The confirmation dialog may be opened when onOpenChange callback of the parent dialog receives a request to close. This way, the confirmation is automatically shown when the user clicks the backdrop, presses the Esc key, or clicks a close button.
Use the [data-nested-dialog-open] selector and the var(--nested-dialogs) CSS variable to customize the styling of the parent dialog. Backdrops of the child dialogs won’t be rendered so that you can present the parent dialog in a clean way behind the one on top of it.