2023-09-25 14:27:41 +08:00
|
|
|
import React, { useState } from 'react';
|
|
|
|
import { Button, ConfigProvider, Modal, Space } from 'antd';
|
|
|
|
import { createStyles, useTheme } from 'antd-style';
|
|
|
|
|
|
|
|
const useStyle = createStyles(({ token }) => ({
|
|
|
|
'my-modal-body': {
|
2023-11-06 10:31:51 +08:00
|
|
|
background: token.blue1,
|
2023-09-25 14:27:41 +08:00
|
|
|
padding: token.paddingSM,
|
|
|
|
},
|
|
|
|
'my-modal-mask': {
|
|
|
|
boxShadow: `inset 0 0 15px #fff`,
|
|
|
|
},
|
|
|
|
'my-modal-header': {
|
|
|
|
borderBottom: `1px dotted ${token.colorPrimary}`,
|
|
|
|
},
|
|
|
|
'my-modal-footer': {
|
|
|
|
color: token.colorPrimary,
|
|
|
|
},
|
|
|
|
'my-modal-content': {
|
|
|
|
border: '1px solid #333',
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
|
|
|
const App: React.FC = () => {
|
|
|
|
const [isModalOpen, setIsModalOpen] = useState([false, false]);
|
|
|
|
const { styles } = useStyle();
|
|
|
|
const token = useTheme();
|
|
|
|
|
|
|
|
const toggleModal = (idx: number, target: boolean) => {
|
|
|
|
setIsModalOpen((p) => {
|
|
|
|
p[idx] = target;
|
|
|
|
return [...p];
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const classNames = {
|
|
|
|
body: styles['my-modal-body'],
|
|
|
|
mask: styles['my-modal-mask'],
|
|
|
|
header: styles['my-modal-header'],
|
|
|
|
footer: styles['my-modal-footer'],
|
|
|
|
content: styles['my-modal-content'],
|
|
|
|
};
|
|
|
|
|
|
|
|
const modalStyles = {
|
|
|
|
header: {
|
|
|
|
borderLeft: `5px solid ${token.colorPrimary}`,
|
|
|
|
borderRadius: 0,
|
|
|
|
paddingInlineStart: 5,
|
|
|
|
},
|
|
|
|
body: {
|
|
|
|
boxShadow: 'inset 0 0 5px #999',
|
|
|
|
borderRadius: 5,
|
|
|
|
},
|
|
|
|
mask: {
|
|
|
|
backdropFilter: 'blur(10px)',
|
|
|
|
},
|
|
|
|
footer: {
|
|
|
|
borderTop: '1px solid #333',
|
|
|
|
},
|
|
|
|
content: {
|
|
|
|
boxShadow: '0 0 30px #999',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Space>
|
|
|
|
<Button type="primary" onClick={() => toggleModal(0, true)}>
|
|
|
|
Open Modal
|
|
|
|
</Button>
|
|
|
|
<Button type="primary" onClick={() => toggleModal(1, true)}>
|
|
|
|
ConfigProvider
|
|
|
|
</Button>
|
|
|
|
</Space>
|
|
|
|
<Modal
|
|
|
|
title="Basic Modal"
|
|
|
|
open={isModalOpen[0]}
|
|
|
|
onOk={() => toggleModal(0, false)}
|
|
|
|
onCancel={() => toggleModal(0, false)}
|
|
|
|
footer="Footer"
|
|
|
|
classNames={classNames}
|
|
|
|
styles={modalStyles}
|
|
|
|
>
|
|
|
|
<p>Some contents...</p>
|
|
|
|
<p>Some contents...</p>
|
|
|
|
<p>Some contents...</p>
|
|
|
|
</Modal>
|
|
|
|
<ConfigProvider
|
|
|
|
modal={{
|
|
|
|
classNames,
|
|
|
|
styles: modalStyles,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Modal
|
|
|
|
title="Basic Modal"
|
|
|
|
open={isModalOpen[1]}
|
|
|
|
onOk={() => toggleModal(1, false)}
|
|
|
|
onCancel={() => toggleModal(1, false)}
|
|
|
|
footer="Footer"
|
|
|
|
>
|
|
|
|
<p>Some contents...</p>
|
|
|
|
<p>Some contents...</p>
|
|
|
|
<p>Some contents...</p>
|
|
|
|
</Modal>
|
|
|
|
</ConfigProvider>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default App;
|