mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
46 lines
1014 B
TypeScript
46 lines
1014 B
TypeScript
|
import React, { useState } from 'react';
|
||
|
import { Button, Modal } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [open, setOpen] = useState(false);
|
||
|
const [confirmLoading, setConfirmLoading] = useState(false);
|
||
|
const [modalText, setModalText] = useState('Content of the modal');
|
||
|
|
||
|
const showModal = () => {
|
||
|
setOpen(true);
|
||
|
};
|
||
|
|
||
|
const handleOk = () => {
|
||
|
setModalText('The modal will be closed after two seconds');
|
||
|
setConfirmLoading(true);
|
||
|
setTimeout(() => {
|
||
|
setOpen(false);
|
||
|
setConfirmLoading(false);
|
||
|
}, 2000);
|
||
|
};
|
||
|
|
||
|
const handleCancel = () => {
|
||
|
console.log('Clicked cancel button');
|
||
|
setOpen(false);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Button type="primary" onClick={showModal}>
|
||
|
Open Modal with async logic
|
||
|
</Button>
|
||
|
<Modal
|
||
|
title="Title"
|
||
|
open={open}
|
||
|
onOk={handleOk}
|
||
|
confirmLoading={confirmLoading}
|
||
|
onCancel={handleCancel}
|
||
|
>
|
||
|
<p>{modalText}</p>
|
||
|
</Modal>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|