- Fix window.location usage in tirages page by adding SSR check - Fix router.push call during SSR in profil page using useEffect - Extract GoogleLoginButton to separate component to fix OAuth provider context - Add null safety check for user object in profil page - All pages now prerender successfully without errors This fixes the 404 page not found error by ensuring proper SSR/CSR separation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
179 lines
5.8 KiB
TypeScript
179 lines
5.8 KiB
TypeScript
"use client";
|
|
import { useState, useEffect } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useAuth } from "@/contexts/AuthContext";
|
|
import { loginSchema, LoginFormData } from "@/lib/validations";
|
|
import { Input } from "@/components/ui/Input";
|
|
import Button from "@/components/Button";
|
|
import { Card } from "@/components/ui/Card";
|
|
import Link from "next/link";
|
|
import { ROUTES } from "@/utils/constants";
|
|
import { GoogleLoginButton } from "@/components/GoogleLoginButton";
|
|
import { initFacebookSDK, loginWithFacebook } from "@/lib/facebook-sdk";
|
|
import toast from "react-hot-toast";
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export default function LoginPage() {
|
|
const { login, facebookLogin } = useAuth();
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
const [isFacebookLoading, setIsFacebookLoading] = useState(false);
|
|
const [isFacebookSDKLoaded, setIsFacebookSDKLoaded] = useState(false);
|
|
|
|
const hasGoogleAuth = !!process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID;
|
|
const hasFacebookAuth = !!process.env.NEXT_PUBLIC_FACEBOOK_APP_ID;
|
|
|
|
useEffect(() => {
|
|
// Initialiser le SDK Facebook au chargement de la page
|
|
initFacebookSDK()
|
|
.then(() => {
|
|
setIsFacebookSDKLoaded(true);
|
|
console.log('Facebook SDK loaded successfully');
|
|
})
|
|
.catch((error) => {
|
|
console.error('Failed to load Facebook SDK:', error);
|
|
});
|
|
}, []);
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors },
|
|
} = useForm<LoginFormData>({
|
|
resolver: zodResolver(loginSchema),
|
|
});
|
|
|
|
const onSubmit = async (data: LoginFormData) => {
|
|
setIsSubmitting(true);
|
|
try {
|
|
await login(data);
|
|
} catch (error) {
|
|
console.error("Login error:", error);
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
const handleFacebookLogin = async () => {
|
|
if (!isFacebookSDKLoaded) {
|
|
toast.error("Le SDK Facebook n'est pas encore chargé. Veuillez réessayer dans quelques secondes.");
|
|
return;
|
|
}
|
|
|
|
setIsFacebookLoading(true);
|
|
try {
|
|
const accessToken = await loginWithFacebook();
|
|
await facebookLogin(accessToken);
|
|
} catch (error: any) {
|
|
console.error("Facebook login error:", error);
|
|
if (error.message !== 'Facebook login cancelled') {
|
|
toast.error("Erreur lors de la connexion avec Facebook");
|
|
}
|
|
} finally {
|
|
setIsFacebookLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-[calc(100vh-4rem)] flex items-center justify-center py-12 px-4">
|
|
<Card className="w-full max-w-md p-8">
|
|
<div className="text-center mb-8">
|
|
<h1 className="text-3xl font-bold text-gray-900 mb-2">Connexion</h1>
|
|
<p className="text-gray-600">
|
|
Connectez-vous pour participer au jeu-concours
|
|
</p>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)} className="space-y-4">
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
label="Email"
|
|
placeholder="votre.email@example.com"
|
|
error={errors.email?.message}
|
|
{...register("email")}
|
|
required
|
|
/>
|
|
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
label="Mot de passe"
|
|
placeholder="••••••••"
|
|
error={errors.password?.message}
|
|
{...register("password")}
|
|
required
|
|
/>
|
|
|
|
<div className="flex items-center justify-between text-sm">
|
|
<Link
|
|
href="/forgot-password"
|
|
className="text-blue-600 hover:text-blue-700 hover:underline"
|
|
>
|
|
Mot de passe oublié ?
|
|
</Link>
|
|
</div>
|
|
|
|
<Button
|
|
type="submit"
|
|
isLoading={isSubmitting}
|
|
disabled={isSubmitting}
|
|
fullWidth
|
|
size="lg"
|
|
>
|
|
Se connecter
|
|
</Button>
|
|
</form>
|
|
|
|
{(hasGoogleAuth || hasFacebookAuth) && (
|
|
<div className="mt-6">
|
|
<div className="relative">
|
|
<div className="absolute inset-0 flex items-center">
|
|
<div className="w-full border-t border-gray-300" />
|
|
</div>
|
|
<div className="relative flex justify-center text-sm">
|
|
<span className="px-2 bg-white text-gray-500">
|
|
Ou continuer avec
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div className={`mt-6 grid ${hasGoogleAuth && hasFacebookAuth ? 'grid-cols-2' : 'grid-cols-1'} gap-3`}>
|
|
{hasGoogleAuth && (
|
|
<GoogleLoginButton fullWidth />
|
|
)}
|
|
|
|
{hasFacebookAuth && (
|
|
<Button
|
|
type="button"
|
|
variant="outline"
|
|
onClick={handleFacebookLogin}
|
|
disabled={isFacebookLoading || !isFacebookSDKLoaded}
|
|
isLoading={isFacebookLoading}
|
|
fullWidth
|
|
>
|
|
<svg className="w-5 h-5 mr-2" fill="#1877F2" viewBox="0 0 24 24">
|
|
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z" />
|
|
</svg>
|
|
Facebook
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
<p className="mt-8 text-center text-sm text-gray-600">
|
|
Vous n'avez pas de compte ?{" "}
|
|
<Link
|
|
href={ROUTES.REGISTER}
|
|
className="font-medium text-blue-600 hover:text-blue-700 hover:underline"
|
|
>
|
|
Créer un compte
|
|
</Link>
|
|
</p>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|