mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
317 lines
7.8 KiB
TypeScript
317 lines
7.8 KiB
TypeScript
import { AlertBlock } from "@/components/shared/alert-block";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { DropdownMenuItem } from "@/components/ui/dropdown-menu";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectGroup,
|
|
SelectItem,
|
|
SelectLabel,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
import { api } from "@/utils/api";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { PlusIcon } from "lucide-react";
|
|
import { useTranslation } from "next-i18next";
|
|
import Link from "next/link";
|
|
import { useEffect, useState } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import { z } from "zod";
|
|
|
|
const Schema = z.object({
|
|
name: z.string().min(1, {
|
|
message: "Name is required",
|
|
}),
|
|
description: z.string().optional(),
|
|
ipAddress: z.string().min(1, {
|
|
message: "IP Address is required",
|
|
}),
|
|
port: z.number().optional(),
|
|
username: z.string().optional(),
|
|
sshKeyId: z.string().min(1, {
|
|
message: "SSH Key is required",
|
|
}),
|
|
});
|
|
|
|
type Schema = z.infer<typeof Schema>;
|
|
|
|
interface Props {
|
|
serverId?: string;
|
|
}
|
|
|
|
export const HandleServers = ({ serverId }: Props) => {
|
|
const { t } = useTranslation("settings");
|
|
|
|
const utils = api.useUtils();
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
const { data: canCreateMoreServers, refetch } =
|
|
api.stripe.canCreateMoreServers.useQuery();
|
|
|
|
const { data, refetch: refetchServer } = api.server.one.useQuery(
|
|
{
|
|
serverId: serverId || "",
|
|
},
|
|
{
|
|
enabled: !!serverId,
|
|
},
|
|
);
|
|
|
|
const { data: sshKeys } = api.sshKey.all.useQuery();
|
|
const { mutateAsync, error, isLoading, isError } = serverId
|
|
? api.server.update.useMutation()
|
|
: api.server.create.useMutation();
|
|
const form = useForm<Schema>({
|
|
defaultValues: {
|
|
description: "",
|
|
name: "",
|
|
ipAddress: "",
|
|
port: 22,
|
|
username: "root",
|
|
sshKeyId: "",
|
|
},
|
|
resolver: zodResolver(Schema),
|
|
});
|
|
|
|
useEffect(() => {
|
|
form.reset({
|
|
description: data?.description || "",
|
|
name: data?.name || "",
|
|
ipAddress: data?.ipAddress || "",
|
|
port: data?.port || 22,
|
|
username: data?.username || "root",
|
|
sshKeyId: data?.sshKeyId || "",
|
|
});
|
|
}, [form, form.reset, form.formState.isSubmitSuccessful, data]);
|
|
|
|
useEffect(() => {
|
|
refetch();
|
|
}, [isOpen]);
|
|
|
|
const onSubmit = async (data: Schema) => {
|
|
await mutateAsync({
|
|
name: data.name,
|
|
description: data.description || "",
|
|
ipAddress: data.ipAddress || "",
|
|
port: data.port || 22,
|
|
username: data.username || "root",
|
|
sshKeyId: data.sshKeyId || "",
|
|
serverId: serverId || "",
|
|
})
|
|
.then(async (_data) => {
|
|
await utils.server.all.invalidate();
|
|
refetchServer();
|
|
toast.success(serverId ? "Server Updated" : "Server Created");
|
|
setIsOpen(false);
|
|
})
|
|
.catch(() => {
|
|
toast.error(
|
|
serverId ? "Error updating a server" : "Error creating a server",
|
|
);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Dialog open={isOpen} onOpenChange={setIsOpen}>
|
|
<DialogTrigger asChild>
|
|
{serverId ? (
|
|
<DropdownMenuItem
|
|
className="w-full cursor-pointer "
|
|
onSelect={(e) => e.preventDefault()}
|
|
>
|
|
Edit Server
|
|
</DropdownMenuItem>
|
|
) : (
|
|
<Button className="cursor-pointer space-x-3">
|
|
<PlusIcon className="h-4 w-4" />
|
|
Create Server
|
|
</Button>
|
|
)}
|
|
</DialogTrigger>
|
|
<DialogContent className="sm:max-w-3xl ">
|
|
<DialogHeader>
|
|
<DialogTitle>{serverId ? "Edit" : "Create"} Server</DialogTitle>
|
|
<DialogDescription>
|
|
{serverId ? "Edit" : "Create"} a server to deploy your applications
|
|
remotely.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
{!canCreateMoreServers && (
|
|
<AlertBlock type="warning">
|
|
You cannot create more servers,{" "}
|
|
<Link href="/dashboard/settings/billing" className="text-primary">
|
|
Please upgrade your plan
|
|
</Link>
|
|
</AlertBlock>
|
|
)}
|
|
{isError && <AlertBlock type="error">{error?.message}</AlertBlock>}
|
|
<Form {...form}>
|
|
<form
|
|
id="hook-form-add-server"
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="grid w-full gap-4"
|
|
>
|
|
<div className="flex flex-col gap-4 ">
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Name</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="Hostinger Server" {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</div>
|
|
<FormField
|
|
control={form.control}
|
|
name="description"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Description</FormLabel>
|
|
<FormControl>
|
|
<Textarea
|
|
placeholder="This server is for databases..."
|
|
className="resize-none"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="sshKeyId"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Select a SSH Key</FormLabel>
|
|
<Select
|
|
onValueChange={field.onChange}
|
|
defaultValue={field.value}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select a SSH Key" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectGroup>
|
|
{sshKeys?.map((sshKey) => (
|
|
<SelectItem
|
|
key={sshKey.sshKeyId}
|
|
value={sshKey.sshKeyId}
|
|
>
|
|
{sshKey.name}
|
|
</SelectItem>
|
|
))}
|
|
<SelectLabel>
|
|
Registries ({sshKeys?.length})
|
|
</SelectLabel>
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<FormField
|
|
control={form.control}
|
|
name="ipAddress"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t("settings.terminal.ipAddress")}</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="192.168.1.100" {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="port"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t("settings.terminal.port")}</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder="22"
|
|
{...field}
|
|
onChange={(e) => {
|
|
const value = e.target.value;
|
|
if (value === "") {
|
|
field.onChange(0);
|
|
} else {
|
|
const number = Number.parseInt(value, 10);
|
|
if (!Number.isNaN(number)) {
|
|
field.onChange(number);
|
|
}
|
|
}
|
|
}}
|
|
/>
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="username"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t("settings.terminal.username")}</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="root" {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</form>
|
|
|
|
<DialogFooter>
|
|
<Button
|
|
isLoading={isLoading}
|
|
disabled={!canCreateMoreServers && !serverId}
|
|
form="hook-form-add-server"
|
|
type="submit"
|
|
>
|
|
{serverId ? "Update" : "Create"}
|
|
</Button>
|
|
</DialogFooter>
|
|
</Form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|