mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-25 09:05:21 +02:00
124 lines
3.1 KiB
TypeScript
124 lines
3.1 KiB
TypeScript
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useState } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import { z } from "zod";
|
|
import { AlertBlock } from "@/components/shared/alert-block";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
} from "@/components/ui/form";
|
|
import { Switch } from "@/components/ui/switch";
|
|
import { api } from "@/utils/api";
|
|
|
|
const formSchema = z.object({
|
|
rollbackActive: z.boolean(),
|
|
});
|
|
|
|
type FormValues = z.infer<typeof formSchema>;
|
|
|
|
interface Props {
|
|
applicationId: string;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export const ShowRollbackSettings = ({ applicationId, children }: Props) => {
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
const { data: application, refetch } = api.application.one.useQuery(
|
|
{
|
|
applicationId,
|
|
},
|
|
{
|
|
enabled: !!applicationId,
|
|
},
|
|
);
|
|
|
|
const { mutateAsync: updateApplication, isLoading } =
|
|
api.application.update.useMutation();
|
|
|
|
const form = useForm<FormValues>({
|
|
resolver: zodResolver(formSchema),
|
|
defaultValues: {
|
|
rollbackActive: application?.rollbackActive ?? false,
|
|
},
|
|
});
|
|
|
|
const onSubmit = async (data: FormValues) => {
|
|
await updateApplication({
|
|
applicationId,
|
|
rollbackActive: data.rollbackActive,
|
|
})
|
|
.then(() => {
|
|
toast.success("Rollback settings updated");
|
|
setIsOpen(false);
|
|
refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Failed to update rollback settings");
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Dialog open={isOpen} onOpenChange={setIsOpen}>
|
|
<DialogTrigger asChild>{children}</DialogTrigger>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>Rollback Settings</DialogTitle>
|
|
<DialogDescription>
|
|
Configure how rollbacks work for this application
|
|
</DialogDescription>
|
|
<AlertBlock>
|
|
Having rollbacks enabled increases storage usage. Be careful with
|
|
this option. Note that manually cleaning the cache may delete
|
|
rollback images, making them unavailable for future rollbacks.
|
|
</AlertBlock>
|
|
</DialogHeader>
|
|
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6">
|
|
<FormField
|
|
control={form.control}
|
|
name="rollbackActive"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-row items-center justify-between rounded-lg border p-4">
|
|
<div className="space-y-0.5">
|
|
<FormLabel className="text-base">
|
|
Enable Rollbacks
|
|
</FormLabel>
|
|
<FormDescription>
|
|
Allow rolling back to previous deployments
|
|
</FormDescription>
|
|
</div>
|
|
<FormControl>
|
|
<Switch
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
/>
|
|
</FormControl>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<Button type="submit" className="w-full" isLoading={isLoading}>
|
|
Save Settings
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|