mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
197 lines
6.3 KiB
TypeScript
197 lines
6.3 KiB
TypeScript
'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'),
|
|
enabled: z.boolean().default(false),
|
|
config: z
|
|
.object({
|
|
client_id: z.string().optional(),
|
|
client_secret: z.string().optional(),
|
|
})
|
|
.optional(),
|
|
});
|
|
|
|
type GoogleFormData = z.infer<typeof googleSchema>;
|
|
|
|
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<GoogleFormData>({
|
|
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 (
|
|
<Sheet open={open} onOpenChange={setOpen}>
|
|
<SheetTrigger asChild>
|
|
<div className='flex cursor-pointer items-center justify-between transition-colors'>
|
|
<div className='flex items-center gap-3'>
|
|
<div className='bg-primary/10 flex h-10 w-10 items-center justify-center rounded-lg'>
|
|
<Icon icon='mdi:google' className='text-primary h-5 w-5' />
|
|
</div>
|
|
<div className='flex-1'>
|
|
<p className='font-medium'>{t('google.title')}</p>
|
|
<p className='text-muted-foreground text-sm'>{t('google.description')}</p>
|
|
</div>
|
|
</div>
|
|
<Icon icon='mdi:chevron-right' className='size-6' />
|
|
</div>
|
|
</SheetTrigger>
|
|
<SheetContent className='w-[600px] max-w-full md:max-w-screen-md'>
|
|
<SheetHeader>
|
|
<SheetTitle>{t('google.title')}</SheetTitle>
|
|
</SheetHeader>
|
|
<ScrollArea className='-mx-6 h-[calc(100dvh-48px-36px-36px-env(safe-area-inset-top))] px-6'>
|
|
<Form {...form}>
|
|
<form
|
|
id='google-form'
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className='space-y-2 pt-4'
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name='enabled'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('google.enable')}</FormLabel>
|
|
<FormControl>
|
|
<Switch
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
className='float-end !mt-0'
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>{t('google.enableDescription')}</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name='config.client_id'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('google.clientId')}</FormLabel>
|
|
<FormControl>
|
|
<EnhancedInput
|
|
placeholder='123456789-abc123def456.apps.googleusercontent.com'
|
|
value={field.value}
|
|
onValueChange={field.onChange}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>{t('google.clientIdDescription')}</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name='config.client_secret'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('google.clientSecret')}</FormLabel>
|
|
<FormControl>
|
|
<EnhancedInput
|
|
placeholder='GOCSPX-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
|
|
value={field.value}
|
|
onValueChange={field.onChange}
|
|
type='password'
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>{t('google.clientSecretDescription')}</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</form>
|
|
</Form>
|
|
</ScrollArea>
|
|
<SheetFooter className='flex-row justify-end gap-2 pt-3'>
|
|
<Button variant='outline' disabled={loading} onClick={() => setOpen(false)}>
|
|
{t('common.cancel')}
|
|
</Button>
|
|
<Button disabled={loading} type='submit' form='google-form'>
|
|
{loading && <Icon icon='mdi:loading' className='mr-2 animate-spin' />}
|
|
{t('common.save')}
|
|
</Button>
|
|
</SheetFooter>
|
|
</SheetContent>
|
|
</Sheet>
|
|
);
|
|
}
|