mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-15 20:25:23 +02:00
73 lines
1.7 KiB
TypeScript
73 lines
1.7 KiB
TypeScript
import { Ban } from "lucide-react";
|
|
import { toast } from "sonner";
|
|
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";
|
|
|
|
interface Props {
|
|
id: string;
|
|
type: "application" | "compose";
|
|
}
|
|
|
|
export const CancelQueues = ({ id, type }: Props) => {
|
|
const { mutateAsync, isPending } =
|
|
type === "application"
|
|
? api.application.cleanQueues.useMutation()
|
|
: api.compose.cleanQueues.useMutation();
|
|
const { data: isCloud } = api.settings.isCloud.useQuery();
|
|
|
|
if (isCloud) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<AlertDialog>
|
|
<AlertDialogTrigger asChild>
|
|
<Button variant="destructive" className="w-fit" isLoading={isPending}>
|
|
Cancel Queues
|
|
<Ban className="size-4" />
|
|
</Button>
|
|
</AlertDialogTrigger>
|
|
<AlertDialogContent>
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle>
|
|
Are you sure to cancel the incoming deployments?
|
|
</AlertDialogTitle>
|
|
<AlertDialogDescription>
|
|
This will cancel all the incoming deployments
|
|
</AlertDialogDescription>
|
|
</AlertDialogHeader>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
|
<AlertDialogAction
|
|
onClick={async () => {
|
|
await mutateAsync({
|
|
applicationId: id || "",
|
|
composeId: id || "",
|
|
})
|
|
.then(() => {
|
|
toast.success("Queues are being cleaned");
|
|
})
|
|
.catch((err) => {
|
|
toast.error(err.message);
|
|
});
|
|
}}
|
|
>
|
|
Confirm
|
|
</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
);
|
|
};
|