mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +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 {
|
|
mongoId: string;
|
|
}
|
|
|
|
export const StopMongo = ({ mongoId }: Props) => {
|
|
const { mutateAsync, isLoading } = api.mongo.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({
|
|
mongoId,
|
|
})
|
|
.then(async () => {
|
|
await utils.mongo.one.invalidate({
|
|
mongoId,
|
|
});
|
|
toast.success("Application stopped succesfully");
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error to stop the Application");
|
|
});
|
|
}}
|
|
>
|
|
Confirm
|
|
</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
);
|
|
};
|