import { DeleteSSHKey } from "@/components/dashboard/settings/ssh-keys/delete-ssh-key"; 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 { sshKeyUpdate } from "@/server/db/validations"; import { api } from "@/utils/api"; import { zodResolver } from "@hookform/resolvers/zod"; import copy from "copy-to-clipboard"; import { CopyIcon } from "lucide-react"; import { type ReactNode, useEffect, useState } from "react"; import { useForm } from "react-hook-form"; import { toast } from "sonner"; import type { z } from "zod"; type SSHKey = z.infer; interface Props { children: ReactNode; sshKeyId?: string; } export const UpdateSSHKey = ({ children, sshKeyId = "" }: Props) => { const utils = api.useUtils(); const [isOpen, setIsOpen] = useState(false); const { data } = api.sshKey.one.useQuery({ sshKeyId, }); const { mutateAsync, isError, error, isLoading } = api.sshKey.update.useMutation(); const form = useForm({ resolver: zodResolver(sshKeyUpdate), }); useEffect(() => { if (data) { form.reset({ ...data, /* Convert null to undefined */ description: data.description || undefined, }); } }, [data]); const onSubmit = async (data: SSHKey) => { await mutateAsync({ sshKeyId, ...data, }) .then(async () => { toast.success("SSH Key Updated"); await utils.sshKey.all.invalidate(); setIsOpen(false); }) .catch(() => { toast.error("Error to update the SSH key"); }); }; return ( {children} SSH Key In this section you can edit an SSH key {isError && {error?.message}}
{ return ( Name ); }} /> { return ( Description ); }} /> Public Key