一个模态对话框,用于打断用户流程,显示重要内容并期望用户做出响应。
import * as React from "react";import { AlertDialog } from "radix-ui";import "./styles.css";const AlertDialogDemo = () => (<AlertDialog.Root><AlertDialog.Trigger asChild><button className="Button violet">Delete account</button></AlertDialog.Trigger><AlertDialog.Portal><AlertDialog.Overlay className="AlertDialogOverlay" /><AlertDialog.Content className="AlertDialogContent"><AlertDialog.Title className="AlertDialogTitle">Are you absolutely sure?</AlertDialog.Title><AlertDialog.Description className="AlertDialogDescription">This action cannot be undone. This will permanently delete youraccount and remove your data from our servers.</AlertDialog.Description><div style={{ display: "flex", gap: 25, justifyContent: "flex-end" }}><AlertDialog.Cancel asChild><button className="Button mauve">Cancel</button></AlertDialog.Cancel><AlertDialog.Action asChild><button className="Button red">Yes, delete account</button></AlertDialog.Action></div></AlertDialog.Content></AlertDialog.Portal></AlertDialog.Root>);export default AlertDialogDemo;
焦点自动被捕获。
可控或非受控。
通过 Title
和管理屏幕阅读器公告 Description
组件。
按下 Esc 键自动关闭组件。
从命令行安装组件。
导入所有部分并将它们组合在一起。
包含警告对话框的所有部分。
一个用于打开对话框的按钮。
使用时,将你的 overlay 和 content 部分传送到 body
中。
当对话框打开时,覆盖视图中非活动部分的图层。
包含对话框打开时要渲染的内容。
一个用于关闭对话框的按钮。此按钮在视觉上应与 AlertDialog.Action
按钮区分开。
一个用于关闭对话框的按钮。这些按钮在视觉上应与 AlertDialog.Cancel
按钮区分开。
对话框打开时要宣告的可访问名称。或者,你可以为 AlertDialog.Content
提供 aria-label
或 aria-labelledby
,并排除此组件。
对话框打开时要宣告的可访问描述。或者,你可以为 AlertDialog.Content
提供 aria-describedby
,并排除此组件。
在异步操作完成后,使用受控属性以编程方式关闭警告对话框。
自定义你的警告对话框传送到的元素。
遵循 Alert and Message Dialogs WAI-ARIA 设计模式。