You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
923 B
42 lines
923 B
import React, { useState } from 'react';
|
|
import { Button, Popconfirm } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [open, setOpen] = useState(false);
|
|
const [confirmLoading, setConfirmLoading] = useState(false);
|
|
|
|
const showPopconfirm = () => {
|
|
setOpen(true);
|
|
};
|
|
|
|
const handleOk = () => {
|
|
setConfirmLoading(true);
|
|
|
|
setTimeout(() => {
|
|
setOpen(false);
|
|
setConfirmLoading(false);
|
|
}, 2000);
|
|
};
|
|
|
|
const handleCancel = () => {
|
|
console.log('Clicked cancel button');
|
|
setOpen(false);
|
|
};
|
|
|
|
return (
|
|
<Popconfirm
|
|
title="Title"
|
|
description="Open Popconfirm with async logic"
|
|
open={open}
|
|
onConfirm={handleOk}
|
|
okButtonProps={{ loading: confirmLoading }}
|
|
onCancel={handleCancel}
|
|
>
|
|
<Button type="primary" onClick={showPopconfirm}>
|
|
Open Popconfirm with async logic
|
|
</Button>
|
|
</Popconfirm>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|