mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
236 lines
6.2 KiB
TypeScript
236 lines
6.2 KiB
TypeScript
import { AlertBlock } from "@/components/shared/alert-block";
|
|
import { CodeEditor } from "@/components/shared/code-editor";
|
|
import { Button } from "@/components/ui/button";
|
|
import { CardTitle } from "@/components/ui/card";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import {
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormControl,
|
|
FormDescription,
|
|
FormMessage,
|
|
Form,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import {
|
|
InputOTP,
|
|
InputOTPGroup,
|
|
InputOTPSlot,
|
|
} from "@/components/ui/input-otp";
|
|
import { Switch } from "@/components/ui/switch";
|
|
import { api } from "@/utils/api";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { AlertTriangle, Dices } from "lucide-react";
|
|
import { useEffect, useState } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import { z } from "zod";
|
|
|
|
interface Props {
|
|
composeId: string;
|
|
}
|
|
|
|
const schema = z.object({
|
|
prefix: z.string(),
|
|
randomize: z.boolean().optional(),
|
|
});
|
|
|
|
type Schema = z.infer<typeof schema>;
|
|
|
|
export const RandomizeCompose = ({ composeId }: Props) => {
|
|
const utils = api.useUtils();
|
|
const [compose, setCompose] = useState<string>("");
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
const { mutateAsync, error, isError } =
|
|
api.compose.randomizeCompose.useMutation();
|
|
|
|
const { mutateAsync: updateCompose } = api.compose.update.useMutation();
|
|
|
|
const { data, refetch } = api.compose.one.useQuery(
|
|
{ composeId },
|
|
{ enabled: !!composeId },
|
|
);
|
|
|
|
const form = useForm<Schema>({
|
|
defaultValues: {
|
|
prefix: "",
|
|
randomize: false,
|
|
},
|
|
resolver: zodResolver(schema),
|
|
});
|
|
|
|
const prefix = form.watch("prefix");
|
|
|
|
useEffect(() => {
|
|
if (data) {
|
|
form.reset({
|
|
prefix: data?.prefix || "",
|
|
randomize: data?.randomize || false,
|
|
});
|
|
}
|
|
}, [form, form.reset, form.formState.isSubmitSuccessful, data]);
|
|
|
|
const onSubmit = async (formData: Schema) => {
|
|
await updateCompose({
|
|
composeId,
|
|
prefix: formData?.prefix || "",
|
|
randomize: formData?.randomize || false,
|
|
})
|
|
.then(async (data) => {
|
|
randomizeCompose();
|
|
refetch();
|
|
toast.success("Compose updated");
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error to randomize the compose");
|
|
});
|
|
};
|
|
|
|
const randomizeCompose = async () => {
|
|
await mutateAsync({
|
|
composeId,
|
|
prefix,
|
|
})
|
|
.then(async (data) => {
|
|
await utils.project.all.invalidate();
|
|
setCompose(data);
|
|
toast.success("Compose randomized");
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error to randomize the compose");
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Dialog open={isOpen} onOpenChange={setIsOpen}>
|
|
<DialogTrigger asChild onClick={() => randomizeCompose()}>
|
|
<Button className="max-lg:w-full" variant="outline">
|
|
<Dices className="h-4 w-4" />
|
|
Randomize Compose
|
|
</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="sm:max-w-6xl max-h-[50rem] overflow-y-auto">
|
|
<DialogHeader>
|
|
<DialogTitle>Randomize Compose (Experimental)</DialogTitle>
|
|
<DialogDescription>
|
|
Use this in case you want to deploy the same compose file and you
|
|
have conflicts with some property like volumes, networks, etc.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<div className="text-sm text-muted-foreground flex flex-col gap-2">
|
|
<span>
|
|
This will randomize the compose file and will add a prefix to the
|
|
property to avoid conflicts
|
|
</span>
|
|
<ul className="list-disc list-inside">
|
|
<li>volumes</li>
|
|
<li>networks</li>
|
|
<li>services</li>
|
|
<li>configs</li>
|
|
<li>secrets</li>
|
|
</ul>
|
|
<AlertBlock type="info">
|
|
When you activate this option, we will include a env
|
|
`COMPOSE_PREFIX` variable to the compose file so you can use it in
|
|
your compose file.
|
|
</AlertBlock>
|
|
</div>
|
|
{isError && <AlertBlock type="error">{error?.message}</AlertBlock>}
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
id="hook-form-add-project"
|
|
className="grid w-full gap-4"
|
|
>
|
|
{isError && (
|
|
<div className="flex flex-row gap-4 rounded-lg items-center bg-red-50 p-2 dark:bg-red-950">
|
|
<AlertTriangle className="text-red-600 dark:text-red-400" />
|
|
<span className="text-sm text-red-600 dark:text-red-400">
|
|
{error?.message}
|
|
</span>
|
|
</div>
|
|
)}
|
|
|
|
<div className="flex flex-col lg:flex-col gap-4 w-full ">
|
|
<div>
|
|
<FormField
|
|
control={form.control}
|
|
name="prefix"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-col justify-center max-sm:items-center w-full">
|
|
<FormLabel>Prefix</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder="Enter a prefix (Optional, example: prod)"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="randomize"
|
|
render={({ field }) => (
|
|
<FormItem className="mt-4 flex flex-row items-center justify-between rounded-lg border p-3 shadow-sm">
|
|
<div className="space-y-0.5">
|
|
<FormLabel>Apply Randomize</FormLabel>
|
|
<FormDescription>
|
|
Apply randomize to the compose file.
|
|
</FormDescription>
|
|
</div>
|
|
<FormControl>
|
|
<Switch
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
/>
|
|
</FormControl>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-col lg:flex-row gap-4 w-full items-end justify-end">
|
|
<Button
|
|
form="hook-form-add-project"
|
|
type="submit"
|
|
className="lg:w-fit"
|
|
>
|
|
Save
|
|
</Button>
|
|
<Button
|
|
type="button"
|
|
variant="secondary"
|
|
onClick={async () => {
|
|
await randomizeCompose();
|
|
}}
|
|
className="lg:w-fit"
|
|
>
|
|
Random
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<pre>
|
|
<CodeEditor
|
|
value={compose || ""}
|
|
language="yaml"
|
|
readOnly
|
|
height="50rem"
|
|
/>
|
|
</pre>
|
|
</form>
|
|
</Form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|