mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import {
|
|
AlertDialog,
|
|
AlertDialogAction,
|
|
AlertDialogCancel,
|
|
AlertDialogContent,
|
|
AlertDialogDescription,
|
|
AlertDialogFooter,
|
|
AlertDialogHeader,
|
|
AlertDialogTitle,
|
|
AlertDialogTrigger,
|
|
} from "@/components/ui/alert-dialog";
|
|
import { Button } from "@/components/ui/button";
|
|
import { api } from "@/utils/api";
|
|
import { TrashIcon } from "lucide-react";
|
|
import React from "react";
|
|
import { toast } from "sonner";
|
|
|
|
interface Props {
|
|
notificationId: string;
|
|
}
|
|
export const DeleteNotification = ({ notificationId }: Props) => {
|
|
const { mutateAsync, isLoading } = api.notification.remove.useMutation();
|
|
const utils = api.useUtils();
|
|
return (
|
|
<AlertDialog>
|
|
<AlertDialogTrigger asChild>
|
|
<Button variant="ghost" isLoading={isLoading}>
|
|
<TrashIcon className="size-4 text-muted-foreground" />
|
|
</Button>
|
|
</AlertDialogTrigger>
|
|
<AlertDialogContent>
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle>
|
|
<AlertDialogDescription>
|
|
This action cannot be undone. This will permanently delete the
|
|
notification
|
|
</AlertDialogDescription>
|
|
</AlertDialogHeader>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
|
<AlertDialogAction
|
|
onClick={async () => {
|
|
await mutateAsync({
|
|
notificationId,
|
|
})
|
|
.then(() => {
|
|
utils.notification.all.invalidate();
|
|
toast.success("Notification delete succesfully");
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error to delete notification");
|
|
});
|
|
}}
|
|
>
|
|
Confirm
|
|
</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
);
|
|
};
|