import { Github } from 'lucide-react' import { useState } from 'react' import { toast } from 'sonner' import { Button } from 'ui' import { LastSignInWrapper } from './LastSignInWrapper' import { useLastSignIn } from '@/hooks/misc/useLastSignIn' import { BASE_PATH } from '@/lib/constants' import { captureCriticalError } from '@/lib/error-reporting' import { auth, buildPathWithParams } from '@/lib/gotrue' export const SignInWithGitHub = () => { const [loading, setLoading] = useState(false) const [_, setLastSignInUsed] = useLastSignIn() async function handleGithubSignIn() { 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=github` ) const { error } = await auth.signInWithOAuth({ provider: 'github', options: { redirectTo }, }) if (error) throw error else setLastSignInUsed('github') } catch (error: any) { toast.error(`Failed to sign in via GitHub: ${error.message}`) captureCriticalError(error, 'sign in via GitHub') setLoading(false) } } return ( ) }