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 { Form, FormControl, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form"; import { Input } from "@/components/ui/input"; import { Textarea } from "@/components/ui/textarea"; import { sshKeyCreate, type sshKeyType } from "@/server/db/validations"; import { api } from "@/utils/api"; import { zodResolver } from "@hookform/resolvers/zod"; import { type ReactNode, useState } from "react"; import { flushSync } from "react-dom"; import { useForm } from "react-hook-form"; import { toast } from "sonner"; import type { z } from "zod"; type SSHKey = z.infer; interface Props { children: ReactNode; } export const AddSSHKey = ({ children }: Props) => { const utils = api.useUtils(); const [isOpen, setIsOpen] = useState(false); const { mutateAsync, isError, error, isLoading } = api.sshKey.create.useMutation(); const generateMutation = api.sshKey.generate.useMutation(); const form = useForm({ resolver: zodResolver(sshKeyCreate), }); const onSubmit = async (data: SSHKey) => { await mutateAsync(data) .then(async () => { toast.success("SSH key created successfully"); await utils.sshKey.all.invalidate(); /* Flushsync is needed for a bug witht he react-hook-form reset method https://github.com/orgs/react-hook-form/discussions/7589#discussioncomment-10060621 */ flushSync(() => form.reset()); setIsOpen(false); }) .catch(() => { toast.error("Error to create the SSH key"); }); }; const onGenerateSSHKey = (type: z.infer) => generateMutation .mutateAsync(type) .then(async (data) => { toast.success("SSH Key Generated"); form.setValue("privateKey", data.privateKey); form.setValue("publicKey", data.publicKey); }) .catch(() => { toast.error("Error to generate the SSH Key"); }); return ( {children} SSH Key
In this section you can add one of your keys or generate a new one.
{isError && {error?.message}}
{ return ( Name ); }} /> { return ( Description ); }} /> (
Private Key