import { FC, useEffect, useRef, useCallback, useState } from "react"; import Script from "next/script"; export interface IGoogleLoginButton { clientId: string; handleSignIn: React.Dispatch; } export const GoogleLoginButton: FC = (props) => { const { handleSignIn, clientId } = props; // refs const googleSignInButton = useRef(null); // states const [gsiScriptLoaded, setGsiScriptLoaded] = useState(false); const loadScript = useCallback(() => { if (!googleSignInButton.current || gsiScriptLoaded) return; (window as any)?.google?.accounts.id.initialize({ client_id: clientId, callback: handleSignIn, }); try { (window as any)?.google?.accounts.id.renderButton( googleSignInButton.current, { type: "standard", theme: "outline", size: "large", logo_alignment: "center", width: 360, text: "signin_with", } as any // customization attributes ); } catch (err) { console.log(err); } (window as any)?.google?.accounts.id.prompt(); // also display the One Tap dialog setGsiScriptLoaded(true); }, [handleSignIn, gsiScriptLoaded]); useEffect(() => { if ((window as any)?.google?.accounts?.id) { loadScript(); } return () => { (window as any)?.google?.accounts.id.cancel(); }; }, [loadScript]); return ( <>