mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
75 lines
1.8 KiB
TypeScript
75 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import {
|
|
Dialog,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogDescription,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogClose,
|
|
} from './Dialog';
|
|
import Button from './Button';
|
|
import { AlertTriangle } from 'lucide-react';
|
|
|
|
export interface ConfirmDialogProps {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
onConfirm: () => void;
|
|
title: string;
|
|
description?: string;
|
|
confirmLabel?: string;
|
|
cancelLabel?: string;
|
|
variant?: 'default' | 'destructive';
|
|
icon?: React.ReactNode;
|
|
}
|
|
|
|
/**
|
|
* Confirmation dialog component
|
|
*/
|
|
export const ConfirmDialog = ({
|
|
open,
|
|
onOpenChange,
|
|
onConfirm,
|
|
title,
|
|
description,
|
|
confirmLabel = 'Confirm',
|
|
cancelLabel = 'Cancel',
|
|
variant = 'default',
|
|
icon,
|
|
}: ConfirmDialogProps) => {
|
|
const handleConfirm = () => {
|
|
onConfirm();
|
|
onOpenChange(false);
|
|
};
|
|
|
|
const displayIcon = icon || (variant === 'destructive' ? <AlertTriangle className="h-5 w-5 text-destructive" /> : null);
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogHeader>
|
|
<div className="flex items-center gap-3">
|
|
{displayIcon && <div className="flex-shrink-0">{displayIcon}</div>}
|
|
<DialogTitle>{title}</DialogTitle>
|
|
</div>
|
|
{description && <DialogDescription>{description}</DialogDescription>}
|
|
</DialogHeader>
|
|
<DialogContent>
|
|
{/* Content can be customized if needed */}
|
|
</DialogContent>
|
|
<DialogFooter>
|
|
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
|
{cancelLabel}
|
|
</Button>
|
|
<Button
|
|
variant={variant === 'destructive' ? 'destructive' : 'primary'}
|
|
onClick={handleConfirm}
|
|
>
|
|
{confirmLabel}
|
|
</Button>
|
|
</DialogFooter>
|
|
<DialogClose onClose={() => onOpenChange(false)} />
|
|
</Dialog>
|
|
);
|
|
};
|
|
|