import { FC } from "react"; import { Controller, useForm } from "react-hook-form"; import { Copy } from "lucide-react"; // ui import { Button, Input } from "@plane/ui"; // types import { IFormattedInstanceConfiguration } from "@plane/types"; // hooks import { useApplication } from "hooks/store"; import useToast from "hooks/use-toast"; export interface IInstanceGoogleConfigForm { config: IFormattedInstanceConfiguration; } export interface GoogleConfigFormValues { GOOGLE_CLIENT_ID: string; GOOGLE_CLIENT_SECRET: string; } export const InstanceGoogleConfigForm: FC = (props) => { const { config } = props; // store hooks const { instance: instanceStore } = useApplication(); // toast const { setToastAlert } = useToast(); // form data const { handleSubmit, control, formState: { errors, isSubmitting }, } = useForm({ defaultValues: { GOOGLE_CLIENT_ID: config["GOOGLE_CLIENT_ID"], GOOGLE_CLIENT_SECRET: config["GOOGLE_CLIENT_SECRET"], }, }); const onSubmit = async (formData: GoogleConfigFormValues) => { const payload: Partial = { ...formData }; await instanceStore .updateInstanceConfigurations(payload) .then(() => setToastAlert({ title: "Success", type: "success", message: "Google Configuration Settings updated successfully", }) ) .catch((err) => console.error(err)); }; const originURL = typeof window !== "undefined" ? window.location.origin : ""; return (

Client ID

( )} />

Your client ID lives in your Google API Console.{" "} Learn more

JavaScript origin URL

We will auto-generate this. Paste this into your Authorized JavaScript origins field. For this OAuth client{" "} here.

); };