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 { api } from "@/utils/api"; import { zodResolver } from "@hookform/resolvers/zod"; import copy from "copy-to-clipboard"; import { CopyIcon, LockIcon } from "lucide-react"; import { useEffect } from "react"; import { useForm } from "react-hook-form"; import { toast } from "sonner"; import { z } from "zod"; const GitProviderSchema = z.object({ composePath: z.string().min(1), repositoryURL: z.string().min(1, { message: "Repository URL is required", }), branch: z.string().min(1, "Branch required"), }); type GitProvider = z.infer; interface Props { composeId: string; } export const SaveGitProviderCompose = ({ composeId }: Props) => { const { data, refetch } = api.compose.one.useQuery({ composeId }); const { mutateAsync, isLoading } = api.compose.update.useMutation(); const { mutateAsync: generateSSHKey, isLoading: isGeneratingSSHKey } = api.compose.generateSSHKey.useMutation(); const { mutateAsync: removeSSHKey, isLoading: isRemovingSSHKey } = api.compose.removeSSHKey.useMutation(); const form = useForm({ defaultValues: { branch: "", repositoryURL: "", composePath: "./docker-compose.yml", }, resolver: zodResolver(GitProviderSchema), }); useEffect(() => { if (data) { form.reset({ branch: data.customGitBranch || "", repositoryURL: data.customGitUrl || "", composePath: data.composePath, }); } }, [form.reset, data, form]); const onSubmit = async (values: GitProvider) => { await mutateAsync({ customGitBranch: values.branch, customGitUrl: values.repositoryURL, composeId, sourceType: "git", composePath: values.composePath, }) .then(async () => { toast.success("Git Provider Saved"); await refetch(); }) .catch(() => { toast.error("Error to save the Git provider"); }); }; return (
( Repository URL
? Private Repository If your repository is private is necessary to generate SSH Keys to add to your git provider.