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 { Hammer } from "lucide-react"; import { toast } from "sonner"; interface Props { composeId: string; } export const RedbuildCompose = ({ composeId }: Props) => { const { data } = api.compose.one.useQuery( { composeId, }, { enabled: !!composeId }, ); const { mutateAsync: markRunning } = api.compose.update.useMutation(); const { mutateAsync } = api.compose.redeploy.useMutation(); const utils = api.useUtils(); return ( Are you sure to rebuild the compose? Is required to deploy at least 1 time in order to reuse the same code Cancel { await markRunning({ composeId, composeStatus: "running", }) .then(async () => { await mutateAsync({ composeId, }) .then(async () => { await utils.compose.one.invalidate({ composeId, }); toast.success("Compose rebuild succesfully"); }) .catch(() => { toast.error("Error to rebuild the compose"); }); }) .catch(() => { toast.error("Error to rebuild the compose"); }); }} > Confirm ); };