mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
171 lines
4.2 KiB
TypeScript
171 lines
4.2 KiB
TypeScript
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { api } from "@/utils/api";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useEffect } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import { z } from "zod";
|
|
|
|
const addServerDomain = z.object({
|
|
domain: z.string().min(1, { message: "URL is required" }),
|
|
letsEncryptEmail: z.string().min(1, "Email is required").email(),
|
|
certificateType: z.enum(["letsencrypt", "none"]),
|
|
});
|
|
|
|
type AddServerDomain = z.infer<typeof addServerDomain>;
|
|
|
|
export const WebDomain = () => {
|
|
const { data: user, refetch } = api.admin.one.useQuery();
|
|
const { mutateAsync, isLoading } =
|
|
api.settings.assignDomainServer.useMutation();
|
|
|
|
const form = useForm<AddServerDomain>({
|
|
defaultValues: {
|
|
domain: "",
|
|
certificateType: "none",
|
|
letsEncryptEmail: "",
|
|
},
|
|
resolver: zodResolver(addServerDomain),
|
|
});
|
|
useEffect(() => {
|
|
if (user) {
|
|
form.reset({
|
|
domain: user?.host || "",
|
|
certificateType: user?.certificateType,
|
|
letsEncryptEmail: user?.letsEncryptEmail || "",
|
|
});
|
|
}
|
|
}, [form, form.reset, user]);
|
|
|
|
const onSubmit = async (data: AddServerDomain) => {
|
|
await mutateAsync({
|
|
host: data.domain,
|
|
letsEncryptEmail: data.letsEncryptEmail,
|
|
certificateType: data.certificateType,
|
|
})
|
|
.then(async () => {
|
|
await refetch();
|
|
toast.success("Domain Assigned");
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error to assign the domain");
|
|
});
|
|
};
|
|
return (
|
|
<div className="w-full">
|
|
<Card className="bg-transparent">
|
|
<CardHeader>
|
|
<CardTitle className="text-xl">Server Domain</CardTitle>
|
|
<CardDescription>
|
|
Add your server domain to your application
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="flex w-full flex-col gap-4">
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="grid w-full gap-4 md:grid-cols-2"
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="domain"
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem>
|
|
<FormLabel>Domain</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
className="w-full"
|
|
placeholder={"dokploy.com"}
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
);
|
|
}}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="letsEncryptEmail"
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem>
|
|
<FormLabel>Letsencrypt Email</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
className="w-full"
|
|
placeholder={"Dp4kz@example.com"}
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
);
|
|
}}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="certificateType"
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem className="md:col-span-2">
|
|
<FormLabel>Certificate</FormLabel>
|
|
<Select
|
|
onValueChange={field.onChange}
|
|
value={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>
|
|
<Button isLoading={isLoading} type="submit">
|
|
Save
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|