

<DemoTitle title="AlertDialog" desc="一种在界面中弹出的对话框，用来向用户传达重要信息，并引导其进行确认或取消等操作。">
#### API

| 属性名 | 描述 | 类型 | 默认值 | 
|--------|--------|--------|--------|
| type | 类型 | 'success' \| 'info' \| 'warning' \| 'error' \| 'confirm' | info | 
| danger | 确认按钮是否带有danger属性 | boolean | false | 
| content | 内容 | React.ReactNode | - | 
| onClose | 关闭时触发的回调函数 | (e: SyntheticEvent) => any | - | 


本组件完全兼容 Antd Design 的 Modal 组件，详情可访问[https://ant.design/components/modal-cn/#api](https://ant.design/components/modal-cn/#api)


## antd API

通用属性参考：[通用属性](/docs/react/common-props)

| 参数 | 说明 | 类型 | 默认值 | 版本 | 
|--------|--------|--------|--------|--------|
| afterClose | Modal 完全关闭后的回调 | function | - |  | 
| classNames | 配置弹窗内置模块的 className |  | - |  | 
| styles | 配置弹窗内置模块的 style |  | - | 5.10.0 | 
| cancelButtonProps | cancel 按钮 props |  | - |  | 
| cancelText | 取消按钮文字 | ReactNode | 取消 |  | 
| centered | 垂直居中展示 Modal | boolean | false |  | 
| closable | 是否显示右上角的关闭按钮 | boolean \| { closeIcon?: React.ReactNode; disabled?: boolean; } | true |  | 
| closeIcon | 自定义关闭图标。5.7.0：设置为  | ReactNode |  |  | 
| confirmLoading | 确定按钮 loading | boolean | false |  | 
| destroyOnHidden | 关闭时销毁 Modal 里的子元素 | boolean | false | 5.25.0 | 
| focusTriggerAfterClose | 对话框关闭后是否需要聚焦触发元素 | boolean | true | 4.9.0 | 
| footer | 底部内容，当不需要默认底部按钮时，可以设为  | ReactNode \| (originNode: ReactNode, extra: { OkBtn: React.FC, CancelBtn: React.FC }) => ReactNode | (确定取消按钮) | renderFunction: 5.9.0 | 
| forceRender | 强制渲染 Modal | boolean | false |  | 
| getContainer | 指定 Modal 挂载的节点，但依旧为全屏展示， | HTMLElement \| () => HTMLElement \| Selectors \| false | document.body |  | 
| keyboard | 是否支持键盘 esc 关闭 | boolean | true |  | 
| mask | 是否展示遮罩 | boolean | true |  | 
| maskClosable | 点击蒙层是否允许关闭 | boolean | true |  | 
| modalRender | 自定义渲染对话框 | (node: ReactNode) => ReactNode | - | 4.7.0 | 
| okButtonProps | ok 按钮 props |  | - |  | 
| okText | 确认按钮文字 | ReactNode | 确定 |  | 
| okType | 确认按钮类型 | string | primary |  | 
| style | 可用于设置浮层的样式，调整浮层位置等 | CSSProperties | - |  | 
| loading | 显示骨架屏 | boolean |  | 5.18.0 | 
| title | 标题 | ReactNode | - |  | 
| open | 对话框是否可见 | boolean | - |  | 
| width | 宽度 | string \| number \|  | 520 | Breakpoint: 5.23.0 | 
| wrapClassName | 对话框外层容器的类名 | string | - |  | 
| zIndex | 设置 Modal 的  | number | 1000 |  | 
| onCancel | 点击遮罩层或右上角叉或取消按钮的回调 | function(e) | - |  | 
| onOk | 点击确定回调 | function(e) | - |  | 
| afterOpenChange | 打开和关闭 Modal 时动画结束后的回调 | (open: boolean) => void | - | 5.4.0 | 


#### 注意


- `<Modal />` 默认关闭后状态不会自动清空，如果希望每次打开都是新内容，请设置 `destroyOnHidden`。
- `<Modal />` 和 Form 一起配合使用时，设置 `destroyOnHidden` 也不会在 Modal 关闭时销毁表单字段数据，需要设置 `<Form preserve={false} />`。
- `Modal.method()` RTL 模式仅支持 hooks 用法。

### Modal.method()

包括：


- `Modal.info`
- `Modal.success`
- `Modal.error`
- `Modal.warning`
- `Modal.confirm`

以上均为一个函数，参数为 object，具体属性如下：

| 参数 | 说明 | 类型 | 默认值 | 版本 | 
|--------|--------|--------|--------|--------|
| afterClose | Modal 完全关闭后的回调 | function | - | 4.9.0 | 
| autoFocusButton | 指定自动获得焦点的按钮 | null \|  | ok |  | 
| cancelButtonProps | cancel 按钮 props |  | - |  | 
| cancelText | 设置 Modal.confirm 取消按钮文字 | string | 取消 |  | 
| centered | 垂直居中展示 Modal | boolean | false |  | 
| className | 容器类名 | string | - |  | 
| closable | 是否显示右上角的关闭按钮 | boolean | false | 4.9.0 | 
| closeIcon | 自定义关闭图标 | ReactNode | undefined | 4.9.0 | 
| content | 内容 | ReactNode | - |  | 
| footer | 底部内容，当不需要默认底部按钮时，可以设为  | ReactNode \| (originNode: ReactNode, extra: { OkBtn: React.FC, CancelBtn: React.FC }) => ReactNode | - | renderFunction: 5.9.0 | 
| getContainer | 指定 Modal 挂载的 HTML 节点，false 为挂载在当前 dom | HTMLElement \| () => HTMLElement \| Selectors \| false | document.body |  | 
| icon | 自定义图标 | ReactNode |  |  | 
| keyboard | 是否支持键盘 esc 关闭 | boolean | true |  | 
| mask | 是否展示遮罩 | boolean | true |  | 
| maskClosable | 点击蒙层是否允许关闭 | boolean | false |  | 
| okButtonProps | ok 按钮 props |  | - |  | 
| okText | 确认按钮文字 | string | 确定 |  | 
| okType | 确认按钮类型 | string | primary |  | 
| style | 可用于设置浮层的样式，调整浮层位置等 | CSSProperties | - |  | 
| title | 标题 | ReactNode | - |  | 
| width | 宽度 | string \| number | 416 |  | 
| wrapClassName | 对话框外层容器的类名 | string | - | 4.18.0 | 
| zIndex | 设置 Modal 的  | number | 1000 |  | 
| onCancel | 点击取消回调，参数为关闭函数，若返回 promise 时 resolve 为正常关闭, reject 为不关闭 | function(close) | - |  | 
| onOk | 点击确定回调，参数为关闭函数，若返回 promise 时 resolve 为正常关闭, reject 为不关闭 | function(close) | - |  | 


以上函数调用后，会返回一个引用，可以通过该引用更新和关闭弹窗。


```jsx
const modal = Modal.info();

modal.update({
  title: '修改的标题',
  content: '修改的内容',
});

// 在 4.8.0 或更高版本中，可以通过传入函数的方式更新弹窗
modal.update((prevConfig) => ({
  ...prevConfig,
  title: `${prevConfig.title}（新）`,
}));

modal.destroy();
```



- `Modal.destroyAll`

使用 `Modal.destroyAll()` 可以销毁弹出的确认窗（即上述的 `Modal.info`、`Modal.success`、`Modal.error`、`Modal.warning`、`Modal.confirm`）。通常用于路由监听当中，处理路由前进、后退不能销毁确认对话框的问题，而不用各处去使用实例的返回值进行关闭（`modal.destroy()` 适用于主动关闭，而不是路由这样被动关闭）


```jsx
import { browserHistory } from 'react-router';

// router change
browserHistory.listen(() => {
  Modal.destroyAll();
});
```


### Modal.useModal()

当你需要使用 Context 时，可以通过 `Modal.useModal` 创建一个 `contextHolder` 插入子节点中。通过 hooks 创建的临时 Modal 将会得到 `contextHolder` 所在位置的所有上下文。创建的 `modal` 对象拥有与 [`Modal.method`](#modalmethod) 相同的创建通知方法。


```jsx
const [modal, contextHolder] = Modal.useModal();

React.useEffect(() => {
  modal.confirm({
    // ...
  });
}, []);

return <div>{contextHolder}</div>;
```


`modal.confirm` 返回方法：


- `destroy`：销毁当前窗口
- `update`：更新当前窗口
- `then`：Promise 链式调用，支持 `await` 操作。该方法为 Hooks 仅有


```tsx
//点击 `onOk` 时返回 `true`，点击 `onCancel` 时返回 `false`
const confirmed = await modal.confirm({ ... });
```
