Files
edr-platform/apps/edr-freight-web/portal/src/pages/tracking/DeleteShipmentDialog.tsx
2026-05-15 22:17:31 +03:00

64 lines
1.5 KiB
TypeScript

import type { ReactNode } from "react";
import {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
export interface DeleteShipmentDialogProps {
shipmentReference: string;
onConfirm?: () => void;
children: ReactNode;
}
export default function DeleteShipmentDialog({
shipmentReference,
onConfirm,
children,
}: DeleteShipmentDialogProps) {
return (
<Dialog>
<DialogTrigger asChild>{children}</DialogTrigger>
<DialogContent className="sm:max-w-md rounded-3xl">
<DialogHeader>
<DialogTitle className="text-xl font-bold">
Remove shipment?
</DialogTitle>
<DialogDescription>
This will permanently remove shipment{" "}
<span className="font-semibold text-slate-900">
{shipmentReference}
</span>{" "}
from tracking. This action cannot be undone.
</DialogDescription>
</DialogHeader>
<DialogFooter className="mt-2">
<DialogClose asChild>
<Button variant="outline">Cancel</Button>
</DialogClose>
<DialogClose asChild>
<Button
onClick={onConfirm}
className="bg-red-600 text-white hover:bg-red-700"
>
Remove
</Button>
</DialogClose>
</DialogFooter>
</DialogContent>
</Dialog>
);
}