3ba5fdd086
CI / Generate TypeScript types (push) Successful in 1m24s
CI / Build server (push) Successful in 26s
CI / Build client (push) Successful in 41s
CI / Server unit tests (push) Successful in 3m25s
CI / Playwright E2E tests (push) Has been cancelled
CI / Build and push Docker image (push) Has been cancelled
CI / Notify (push) Has been cancelled
27 lines
875 B
TypeScript
27 lines
875 B
TypeScript
import { Modal, Button } from "react-bootstrap";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
title: string;
|
|
message: string;
|
|
confirmLabel?: string;
|
|
confirmVariant?: string;
|
|
onConfirm: () => void;
|
|
onClose: () => void;
|
|
};
|
|
|
|
export default function ConfirmModal({ isOpen, title, message, confirmLabel = "Potvrdit", confirmVariant = "primary", onConfirm, onClose }: Readonly<Props>) {
|
|
return (
|
|
<Modal show={isOpen} onHide={onClose}>
|
|
<Modal.Header closeButton>
|
|
<Modal.Title>{title}</Modal.Title>
|
|
</Modal.Header>
|
|
<Modal.Body>{message}</Modal.Body>
|
|
<Modal.Footer>
|
|
<Button variant="secondary" onClick={onClose}>Zrušit</Button>
|
|
<Button variant={confirmVariant} onClick={onConfirm}>{confirmLabel}</Button>
|
|
</Modal.Footer>
|
|
</Modal>
|
|
);
|
|
}
|