2022-05-10 00:34:02 +02:00
|
|
|
import { Spin, Skeleton, Modal as AntModal } from 'antd';
|
|
|
|
import React, { ReactNode, useState } from 'react';
|
|
|
|
import s from './Modal.module.scss';
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
title: string;
|
|
|
|
url?: string;
|
|
|
|
visible: boolean;
|
|
|
|
handleOk?: () => void;
|
|
|
|
handleCancel?: () => void;
|
|
|
|
afterClose?: () => void;
|
|
|
|
children?: ReactNode;
|
2022-05-30 06:52:38 +02:00
|
|
|
height?: string;
|
2022-08-23 03:27:47 +02:00
|
|
|
width?: string;
|
2022-05-10 00:34:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export default function Modal(props: Props) {
|
2022-08-23 03:27:47 +02:00
|
|
|
const { title, url, visible, handleOk, handleCancel, afterClose, height, width, children } =
|
|
|
|
props;
|
2022-05-10 00:34:02 +02:00
|
|
|
const [loading, setLoading] = useState(!!url);
|
|
|
|
|
|
|
|
const modalStyle = {
|
|
|
|
padding: '0px',
|
2022-08-23 03:27:47 +02:00
|
|
|
minHeight: height,
|
2022-05-10 00:34:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const iframe = url && (
|
|
|
|
<iframe
|
|
|
|
title={title}
|
|
|
|
src={url}
|
|
|
|
width="100%"
|
|
|
|
height="100%"
|
|
|
|
sandbox="allow-same-origin allow-scripts allow-popups allow-forms"
|
|
|
|
frameBorder="0"
|
|
|
|
allowFullScreen
|
2022-09-05 07:52:32 +02:00
|
|
|
// eslint-disable-next-line react/no-unknown-property
|
2022-05-10 00:34:02 +02:00
|
|
|
onLoad={() => setLoading(false)}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
const iframeDisplayStyle = loading ? 'none' : 'inline';
|
|
|
|
|
|
|
|
return (
|
|
|
|
<AntModal
|
|
|
|
title={title}
|
|
|
|
visible={visible}
|
|
|
|
onOk={handleOk}
|
|
|
|
onCancel={handleCancel}
|
|
|
|
afterClose={afterClose}
|
|
|
|
bodyStyle={modalStyle}
|
2022-08-23 03:27:47 +02:00
|
|
|
width={width}
|
2022-05-10 00:34:02 +02:00
|
|
|
zIndex={9999}
|
|
|
|
footer={null}
|
|
|
|
centered
|
|
|
|
destroyOnClose
|
|
|
|
>
|
|
|
|
<>
|
|
|
|
{loading && (
|
|
|
|
<Skeleton active={loading} style={{ padding: '10px' }} paragraph={{ rows: 10 }} />
|
|
|
|
)}
|
|
|
|
|
|
|
|
{iframe && <div style={{ display: iframeDisplayStyle }}>{iframe}</div>}
|
|
|
|
{children && <div className={s.content}>{children}</div>}
|
|
|
|
{loading && <Spin className={s.spinner} spinning={loading} size="large" />}
|
|
|
|
</>
|
|
|
|
</AntModal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Modal.defaultProps = {
|
|
|
|
url: undefined,
|
|
|
|
children: undefined,
|
|
|
|
handleOk: undefined,
|
|
|
|
handleCancel: undefined,
|
|
|
|
afterClose: undefined,
|
2022-08-23 03:27:47 +02:00
|
|
|
height: '40vh',
|
|
|
|
width: '70%',
|
2022-05-10 00:34:02 +02:00
|
|
|
};
|