ToolJet/frontend/src/_components/ConfirmDialog.jsx
Gandharv f9aa596994
feat: app builder design changes (#5041)
* feat: version manager, realtime avatars + popover addition
2022-12-29 17:18:24 +05:30

69 lines
2.3 KiB
JavaScript

import React, { useState, useEffect } from 'react';
import cx from 'classnames';
import Modal from 'react-bootstrap/Modal';
import { useTranslation } from 'react-i18next';
export function ConfirmDialog({ show, title, message, onConfirm, onCancel, confirmButtonLoading, darkMode }) {
const [showModal, setShow] = useState(show);
const { t } = useTranslation();
useEffect(() => {
setShow(show);
}, [show]);
const handleClose = () => {
onCancel();
setShow(false);
};
const handleConfirm = () => {
onConfirm();
};
return (
<Modal
show={showModal}
onHide={handleClose}
size="sm"
animation={false}
centered={true}
contentClassName={darkMode ? 'theme-dark' : ''}
data-cy="modal-component"
>
{title && (
<Modal.Header>
<Modal.Title>{title}</Modal.Title>
<svg
onClick={handleClose}
className="cursor-pointer"
width="33"
height="33"
viewBox="0 0 33 33"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M11.5996 11.6201C11.8599 11.3597 12.282 11.3597 12.5424 11.6201L16.071 15.1487L19.5996 11.6201C19.8599 11.3597 20.282 11.3597 20.5424 11.6201C20.8027 11.8804 20.8027 12.3025 20.5424 12.5629L17.0138 16.0915L20.5424 19.6201C20.8027 19.8804 20.8027 20.3025 20.5424 20.5629C20.282 20.8232 19.8599 20.8232 19.5996 20.5629L16.071 17.0343L12.5424 20.5629C12.282 20.8232 11.8599 20.8232 11.5996 20.5629C11.3392 20.3025 11.3392 19.8804 11.5996 19.6201L15.1282 16.0915L11.5996 12.5629C11.3392 12.3025 11.3392 11.8804 11.5996 11.6201Z"
fill="#11181C"
/>
</svg>
</Modal.Header>
)}
<Modal.Body data-cy="modal-message">{message}</Modal.Body>
<Modal.Footer className="mt-3">
<button className="btn" onClick={handleClose} data-cy="cancel-button">
{t('globals.cancel', 'Cancel')}
</button>
<button
className={cx('btn btn-danger', { 'btn-loading': confirmButtonLoading })}
onClick={handleConfirm}
data-cy="yes-button"
>
{t('globals.yes', 'Yes')}
</button>
</Modal.Footer>
</Modal>
);
}