mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-05 19:30:48 -05:00
50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
"use client";
|
|
|
|
import { Button } from "../Button";
|
|
import { Modal } from "../Modal";
|
|
|
|
interface AlertDialogProps {
|
|
open: boolean;
|
|
setOpen: (open: boolean) => void;
|
|
headerText: string;
|
|
mainText: string;
|
|
confirmBtnLabel: string;
|
|
declineBtnLabel?: string;
|
|
declineBtnVariant?: "warn" | "minimal";
|
|
onDecline: () => void;
|
|
onConfirm?: () => void;
|
|
}
|
|
|
|
export const AlertDialog = ({
|
|
open,
|
|
setOpen,
|
|
headerText,
|
|
mainText = "Are you sure? This action cannot be undone.",
|
|
declineBtnLabel,
|
|
onDecline,
|
|
confirmBtnLabel,
|
|
declineBtnVariant = "minimal",
|
|
onConfirm,
|
|
}: AlertDialogProps) => {
|
|
return (
|
|
<Modal open={open} setOpen={setOpen} title={headerText}>
|
|
<p className="mb-6 text-slate-900">{mainText}</p>
|
|
<div className="space-x-2 text-right">
|
|
<Button variant={declineBtnVariant} onClick={onDecline}>
|
|
{declineBtnLabel || "Discard"}
|
|
</Button>
|
|
<Button
|
|
onClick={() => {
|
|
if (onConfirm) {
|
|
onConfirm();
|
|
} else {
|
|
setOpen(false);
|
|
}
|
|
}}>
|
|
{confirmBtnLabel}
|
|
</Button>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
};
|