Skip to content

Alert dialog API

Cimpress UI exports four alert dialog-related components:

  • DialogRoot: component that connects a trigger button with its associated dialog.
  • AlertDialog: component that displays an overlay element which blocks interaction with outside elements.
  • AlertDialogBody: component that contains the main content of the alert dialog.
  • AlertDialogActions: component that contains the actions of the alert dialog.
import { AlertDialog, AlertDialogActions, AlertDialogBody, DialogRoot } from '@cimpress-ui/react';

While an alert dialog is open, all content outside of it is hidden from assistive technologies.

Alert dialog has no built-in way of dismissing the dialog, and it can only be closed by taking action inside of the dialog. Make sure that your dialog has at least one action, and that the action will cause the dialog to close. See the Closing programmatically section for more information.

If your alert dialog contains form fields, we recommend to automatically focus one of the fields when the alert dialog is opened. This can be achieved by setting the autoFocus prop on the field that you want focused.

AlertDialog requires a textual label to remain accessible to assistive technologies. See our accessibility guide for more details.

To open an alert dialog when a trigger button is pressed, wrap both the trigger button and the alert dialog component with a DialogRoot component. This will automatically associate the button with the alert dialog, without any manual setup.

It’s also possible to display an alert dialog programmatically (not as a result of a user action), or render it in a different part of the component tree than its trigger. In this case, you’ll have to manage the alert dialog’s open state manually.

Alert dialogs can be closed programmatically by passing a function as children to the AlertDialog component, and using the close function provided as an argument to that function.

Encapsulates a dialog trigger and its associated dialog. The trigger can be any Cimpress UI button, and the dialog will be displayed when the trigger is activated.

DialogRootProps
ReactNode

The dialog trigger with its associated dialog. Provide the trigger as the first child, and the dialog as the second child.

boolean

Whether the dialog is open (controlled).

boolean

Whether the dialog is open by default (uncontrolled).

(isOpen: boolean) => void

Handler that is called when the dialog's open state changes.

Renders an overlay that interrupts user activity and requires a user action.

See alert dialog usage guidelines.

Ref<HTMLElement>

The ref type for this component.

AlertDialogProps
string

The title of the alert dialog.

ReactNode | ((renderProps: AlertDialogRenderProps) => ReactNode)

The contents of the alert dialog. A function may be provided to access a function to close the dialog.

'success' | 'info' | 'warning' | 'critical'

The tone of the alert dialog.

boolean

Whether the dialog is open (controlled). If using DialogRoot, this prop has no effect - provide isOpen to DialogRoot instead.

boolean

Whether the dialog is open by default (uncontrolled). If using DialogRoot, this prop has no effect - provide defaultOpen to DialogRoot instead.

(isOpen: boolean) => void

Handler that is called when the dialog's open state changes. If using DialogRoot, this prop has no effect - provide onOpenChange to DialogRoot instead.

string

The element's unique identifier. See MDN.

boolean

Use this attribute to "claim" the component tree for exclusive Cimpress UI usage.

string

Sets the CSS className for the element. Only use as a last resort. Use style props instead.

See styling guide.

CSSProperties

Sets the CSS style for the element. Only use as a last resort. Use style props instead.

See styling guide.

Renders content within AlertDialog.

AlertDialogBodyProps
ReactNode

The content to render within the alert dialog.

Renders actions within AlertDialog.

AlertDialogActionsProps
ReactNode

Actions that should be available in the alert dialog.