mirror of
https://github.com/LukeHagar/dokploy.git
synced 2025-12-08 12:27:49 +00:00
66 lines
1.8 KiB
TypeScript
66 lines
1.8 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 { Ban } from "lucide-react";
|
|
import { toast } from "sonner";
|
|
|
|
interface Props {
|
|
postgresId: string;
|
|
}
|
|
|
|
export const StopPostgres = ({ postgresId }: Props) => {
|
|
const { mutateAsync, isLoading } = api.postgres.stop.useMutation();
|
|
const utils = api.useUtils();
|
|
return (
|
|
<AlertDialog>
|
|
<AlertDialogTrigger asChild>
|
|
<Button variant="destructive" isLoading={isLoading}>
|
|
Stop
|
|
<Ban className="size-4" />
|
|
</Button>
|
|
</AlertDialogTrigger>
|
|
<AlertDialogContent>
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle>
|
|
Are you absolutely sure to stop the database?
|
|
</AlertDialogTitle>
|
|
<AlertDialogDescription>
|
|
This will stop the database
|
|
</AlertDialogDescription>
|
|
</AlertDialogHeader>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
|
<AlertDialogAction
|
|
onClick={async () => {
|
|
await mutateAsync({
|
|
postgresId,
|
|
})
|
|
.then(async () => {
|
|
await utils.postgres.one.invalidate({
|
|
postgresId,
|
|
});
|
|
toast.success("Application stopped succesfully");
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error to stop the Application");
|
|
});
|
|
}}
|
|
>
|
|
Confirm
|
|
</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
);
|
|
};
|