mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-16 19:35:25 +02:00
352 lines
9.6 KiB
TypeScript
352 lines
9.6 KiB
TypeScript
import { api } from "@/utils/api";
|
|
import { useEffect, useState } from "react";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input, NumberInput } from "@/components/ui/input";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useForm } from "react-hook-form";
|
|
import { z } from "zod";
|
|
import { Secrets } from "@/components/ui/secrets";
|
|
import { toast } from "sonner";
|
|
import { Switch } from "@/components/ui/switch";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
|
|
const schema = z.object({
|
|
env: z.string(),
|
|
buildArgs: z.string(),
|
|
wildcardDomain: z.string(),
|
|
port: z.number(),
|
|
previewLimit: z.number(),
|
|
previewHttps: z.boolean(),
|
|
previewPath: z.string(),
|
|
previewCertificateType: z.enum(["letsencrypt", "none"]),
|
|
});
|
|
|
|
type Schema = z.infer<typeof schema>;
|
|
|
|
interface Props {
|
|
applicationId: string;
|
|
}
|
|
|
|
export const ShowPreviewSettings = ({ applicationId }: Props) => {
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
const [isEnabled, setIsEnabled] = useState(false);
|
|
const { mutateAsync: updateApplication, isLoading } =
|
|
api.application.update.useMutation();
|
|
|
|
const { data, refetch } = api.application.one.useQuery({ applicationId });
|
|
|
|
const form = useForm<Schema>({
|
|
defaultValues: {
|
|
env: "",
|
|
wildcardDomain: "*.traefik.me",
|
|
port: 3000,
|
|
previewLimit: 3,
|
|
previewHttps: false,
|
|
previewPath: "/",
|
|
previewCertificateType: "none",
|
|
},
|
|
resolver: zodResolver(schema),
|
|
});
|
|
|
|
const previewHttps = form.watch("previewHttps");
|
|
|
|
useEffect(() => {
|
|
setIsEnabled(data?.isPreviewDeploymentsActive || false);
|
|
}, [data?.isPreviewDeploymentsActive]);
|
|
|
|
useEffect(() => {
|
|
if (data) {
|
|
form.reset({
|
|
env: data.previewEnv || "",
|
|
buildArgs: data.previewBuildArgs || "",
|
|
wildcardDomain: data.previewWildcard || "*.traefik.me",
|
|
port: data.previewPort || 3000,
|
|
previewLimit: data.previewLimit || 3,
|
|
previewHttps: data.previewHttps || false,
|
|
previewPath: data.previewPath || "/",
|
|
previewCertificateType: data.previewCertificateType || "none",
|
|
});
|
|
}
|
|
}, [data]);
|
|
|
|
const onSubmit = async (formData: Schema) => {
|
|
updateApplication({
|
|
previewEnv: formData.env,
|
|
previewBuildArgs: formData.buildArgs,
|
|
previewWildcard: formData.wildcardDomain,
|
|
previewPort: formData.port,
|
|
applicationId,
|
|
previewLimit: formData.previewLimit,
|
|
previewHttps: formData.previewHttps,
|
|
previewPath: formData.previewPath,
|
|
previewCertificateType: formData.previewCertificateType,
|
|
})
|
|
.then(() => {
|
|
toast.success("Preview Deployments settings updated");
|
|
})
|
|
.catch((error) => {
|
|
toast.error(error.message);
|
|
});
|
|
};
|
|
return (
|
|
<div>
|
|
<Dialog open={isOpen} onOpenChange={setIsOpen}>
|
|
<DialogTrigger asChild>
|
|
<Button variant="outline">View Settings</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="max-h-screen overflow-y-auto sm:max-w-5xl w-full">
|
|
<DialogHeader>
|
|
<DialogTitle>Preview Deployment Settings</DialogTitle>
|
|
<DialogDescription>
|
|
Adjust the settings for preview deployments of this application,
|
|
including environment variables, build options, and deployment
|
|
rules.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<div className="grid gap-4">
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
id="hook-form-delete-application"
|
|
className="grid w-full gap-4"
|
|
>
|
|
<div className="grid gap-4 lg:grid-cols-2">
|
|
<FormField
|
|
control={form.control}
|
|
name="wildcardDomain"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Wildcard Domain</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="*.traefik.me" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="previewPath"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Preview Path</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="/" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="port"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Port</FormLabel>
|
|
<FormControl>
|
|
<NumberInput placeholder="3000" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="previewLimit"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Preview Limit</FormLabel>
|
|
{/* <FormDescription>
|
|
Set the limit of preview deployments that can be
|
|
created for this app.
|
|
</FormDescription> */}
|
|
<FormControl>
|
|
<NumberInput placeholder="3000" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="previewHttps"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-sm">
|
|
<div className="space-y-0.5">
|
|
<FormLabel>HTTPS</FormLabel>
|
|
<FormDescription>
|
|
Automatically provision SSL Certificate.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</div>
|
|
<FormControl>
|
|
<Switch
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
/>
|
|
</FormControl>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
{previewHttps && (
|
|
<FormField
|
|
control={form.control}
|
|
name="previewCertificateType"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Certificate</FormLabel>
|
|
<Select
|
|
onValueChange={field.onChange}
|
|
defaultValue={field.value || ""}
|
|
>
|
|
<FormControl>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select a certificate" />
|
|
</SelectTrigger>
|
|
</FormControl>
|
|
|
|
<SelectContent>
|
|
<SelectItem value="none">None</SelectItem>
|
|
<SelectItem value={"letsencrypt"}>
|
|
Letsencrypt (Default)
|
|
</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
)}
|
|
</div>
|
|
<div className="grid gap-4 lg:grid-cols-2">
|
|
<div className="flex flex-row items-center justify-between rounded-lg border p-4 col-span-2">
|
|
<div className="space-y-0.5">
|
|
<FormLabel className="text-base">
|
|
Enable preview deployments
|
|
</FormLabel>
|
|
<FormDescription>
|
|
Enable or disable preview deployments for this
|
|
application.
|
|
</FormDescription>
|
|
</div>
|
|
<Switch
|
|
checked={isEnabled}
|
|
onCheckedChange={(checked) => {
|
|
updateApplication({
|
|
isPreviewDeploymentsActive: checked,
|
|
applicationId,
|
|
})
|
|
.then(() => {
|
|
refetch();
|
|
toast.success("Preview deployments enabled");
|
|
})
|
|
.catch((error) => {
|
|
toast.error(error.message);
|
|
});
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="env"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormControl>
|
|
<Secrets
|
|
name="env"
|
|
title="Environment Settings"
|
|
description="You can add environment variables to your resource."
|
|
placeholder={[
|
|
"NODE_ENV=production",
|
|
"PORT=3000",
|
|
].join("\n")}
|
|
/>
|
|
{/* <CodeEditor
|
|
lineWrapping
|
|
language="properties"
|
|
wrapperClassName="h-[25rem] font-mono"
|
|
placeholder={`NODE_ENV=production
|
|
PORT=3000
|
|
|
|
`}
|
|
{...field}
|
|
/> */}
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
{data?.buildType === "dockerfile" && (
|
|
<Secrets
|
|
name="buildArgs"
|
|
title="Build-time Variables"
|
|
description={
|
|
<span>
|
|
Available only at build-time. See documentation
|
|
<a
|
|
className="text-primary"
|
|
href="https://docs.docker.com/build/guide/build-args/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
here
|
|
</a>
|
|
.
|
|
</span>
|
|
}
|
|
placeholder="NPM_TOKEN=xyz"
|
|
/>
|
|
)}
|
|
</form>
|
|
</Form>
|
|
</div>
|
|
<DialogFooter>
|
|
<Button
|
|
variant="secondary"
|
|
onClick={() => {
|
|
setIsOpen(false);
|
|
}}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
isLoading={isLoading}
|
|
form="hook-form-delete-application"
|
|
type="submit"
|
|
>
|
|
Save
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
{/* */}
|
|
</div>
|
|
);
|
|
};
|