import { useState } from 'react' import { toast } from 'sonner' import { Button } from 'ui' import { BASE_PATH } from '@/lib/constants' import { captureCriticalError } from '@/lib/error-reporting' import { auth, buildPathWithParams } from '@/lib/gotrue' interface SignInWithCustomProps { providerName: string } export const SignInWithCustom = ({ providerName }: SignInWithCustomProps) => { const [loading, setLoading] = useState(false) async function handleCustomSignIn() { setLoading(true) try { // redirects to /sign-in to check if the user has MFA setup (handled in SignInLayout.tsx) const redirectTo = buildPathWithParams( `${ process.env.NEXT_PUBLIC_VERCEL_ENV === 'preview' ? location.origin : process.env.NEXT_PUBLIC_SITE_URL }${BASE_PATH}/sign-in-mfa?method=${providerName.toLowerCase()}` ) const { error } = await auth.signInWithOAuth({ // @ts-expect-error - providerName is a string provider: providerName.toLowerCase(), options: { redirectTo, scopes: 'email' }, }) if (error) throw error } catch (error: any) { toast.error(`Failed to sign in via ${providerName}: ${error.message}`) captureCriticalError(error, `sign in via ${providerName}`) setLoading(false) } } return ( ) }