Files
dragonsstash/src/components/shared/delete-dialog.tsx
2026-03-05 20:34:53 +00:00

56 lines
1.4 KiB
TypeScript

"use client";
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
} from "@/components/ui/alert-dialog";
interface DeleteDialogProps {
open: boolean;
onOpenChange: (open: boolean) => void;
title?: string;
description?: string;
onConfirm: () => void;
isLoading?: boolean;
confirmLabel?: string;
confirmLoadingLabel?: string;
}
export function DeleteDialog({
open,
onOpenChange,
title = "Are you sure?",
description = "This action cannot be undone.",
onConfirm,
isLoading,
confirmLabel = "Delete",
confirmLoadingLabel,
}: DeleteDialogProps) {
return (
<AlertDialog open={open} onOpenChange={onOpenChange}>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>{title}</AlertDialogTitle>
<AlertDialogDescription>{description}</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel disabled={isLoading}>Cancel</AlertDialogCancel>
<AlertDialogAction
onClick={onConfirm}
disabled={isLoading}
className="bg-destructive text-destructive-foreground hover:bg-destructive/90"
>
{isLoading ? (confirmLoadingLabel ?? `${confirmLabel}...`) : confirmLabel}
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
);
}