2020-11-04 09:05:46 +08:00
|
|
|
---
|
|
|
|
order: 5
|
|
|
|
title:
|
|
|
|
zh-CN: 异步关闭
|
|
|
|
en-US: Asynchronously close
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
点击确定后异步关闭气泡确认框,例如提交表单。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Asynchronously close a popconfirm when a the OK button is pressed. For example, you can use this pattern when you submit a form.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2022-05-23 14:37:16 +08:00
|
|
|
import { Button, Popconfirm } from 'antd';
|
2022-05-19 09:46:26 +08:00
|
|
|
import React, { useState } from 'react';
|
2020-11-04 09:05:46 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => {
|
|
|
|
const [visible, setVisible] = useState(false);
|
|
|
|
const [confirmLoading, setConfirmLoading] = useState(false);
|
2020-11-04 09:05:46 +08:00
|
|
|
|
|
|
|
const showPopconfirm = () => {
|
|
|
|
setVisible(true);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleOk = () => {
|
|
|
|
setConfirmLoading(true);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
2020-11-04 09:05:46 +08:00
|
|
|
setTimeout(() => {
|
|
|
|
setVisible(false);
|
|
|
|
setConfirmLoading(false);
|
|
|
|
}, 2000);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleCancel = () => {
|
|
|
|
console.log('Clicked cancel button');
|
|
|
|
setVisible(false);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2021-11-26 12:18:21 +08:00
|
|
|
<Popconfirm
|
|
|
|
title="Title"
|
|
|
|
visible={visible}
|
|
|
|
onConfirm={handleOk}
|
|
|
|
okButtonProps={{ loading: confirmLoading }}
|
|
|
|
onCancel={handleCancel}
|
|
|
|
>
|
|
|
|
<Button type="primary" onClick={showPopconfirm}>
|
|
|
|
Open Popconfirm with async logic
|
|
|
|
</Button>
|
|
|
|
</Popconfirm>
|
2020-11-04 09:05:46 +08:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-04-15 16:20:56 +08:00
|
|
|
export default App;
|
2020-11-04 09:05:46 +08:00
|
|
|
```
|