'use client'; import { getAuthMethodConfig, updateAuthMethodConfig } from '@/services/admin/authMethod'; import { zodResolver } from '@hookform/resolvers/zod'; import { useQuery } from '@tanstack/react-query'; import { Button } from '@workspace/ui/components/button'; import { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, } from '@workspace/ui/components/form'; import { ScrollArea } from '@workspace/ui/components/scroll-area'; import { Sheet, SheetContent, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, } from '@workspace/ui/components/sheet'; import { Switch } from '@workspace/ui/components/switch'; import { EnhancedInput } from '@workspace/ui/custom-components/enhanced-input'; import { Icon } from '@workspace/ui/custom-components/icon'; import { useTranslations } from 'next-intl'; import { useEffect, useState } from 'react'; import { useForm } from 'react-hook-form'; import { toast } from 'sonner'; import { z } from 'zod'; const googleSchema = z.object({ id: z.number(), method: z.string().default('google').optional(), enabled: z.boolean().default(false).optional(), config: z .object({ client_id: z.string().optional(), client_secret: z.string().optional(), }) .optional(), }); type GoogleFormData = z.infer; export default function GoogleForm() { const t = useTranslations('auth-control'); const [open, setOpen] = useState(false); const [loading, setLoading] = useState(false); const { data, refetch, isFetching } = useQuery({ queryKey: ['getAuthMethodConfig', 'google'], queryFn: async () => { const { data } = await getAuthMethodConfig({ method: 'google', }); return data.data; }, enabled: open, }); const form = useForm({ resolver: zodResolver(googleSchema), defaultValues: { id: 0, method: 'google', enabled: false, config: { client_id: '', client_secret: '', }, }, }); useEffect(() => { if (data) { form.reset(data); } }, [data, form]); async function onSubmit(values: GoogleFormData) { setLoading(true); try { await updateAuthMethodConfig(values as API.UpdateAuthMethodConfigRequest); toast.success(t('common.saveSuccess')); refetch(); setOpen(false); } catch (error) { toast.error(t('common.saveFailed')); } finally { setLoading(false); } } return (

{t('google.title')}

{t('google.description')}

{t('google.title')}
( {t('google.enable')} {t('google.enableDescription')} )} /> ( {t('google.clientId')} {t('google.clientIdDescription')} )} /> ( {t('google.clientSecret')} {t('google.clientSecretDescription')} )} />
); }