Checkpoint: Application complète : deux tableaux de bord (Veille Stratégique + AAP), import Excel quotidien avec déduplication, sources multiples (local/OneDrive/FTP/SharePoint), affichage liste/vignettes, filtres multi-critères, gestion utilisateurs, logs d'import, page paramètres, authentification locale, tâche cron 06h00, 13 tests Vitest passants.

This commit is contained in:
Manus
2026-03-16 10:45:35 -04:00
parent 5000fc555d
commit 8fb71e8bda
27 changed files with 4525 additions and 184 deletions

133
client/src/pages/Login.tsx Normal file
View File

@@ -0,0 +1,133 @@
import { useState } from "react";
import { useLocation } from "wouter";
import { useLocalAuth } from "@/contexts/LocalAuthContext";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { FileText, Eye, EyeOff, Loader2, Shield } from "lucide-react";
import { toast } from "sonner";
export default function Login() {
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [showPassword, setShowPassword] = useState(false);
const [loading, setLoading] = useState(false);
const { login } = useLocalAuth();
const [, navigate] = useLocation();
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (!email || !password) return;
setLoading(true);
try {
await login(email, password);
navigate("/veille");
} catch (err: unknown) {
const msg = err instanceof Error ? err.message : "Erreur de connexion";
toast.error("Connexion échouée", { description: msg });
} finally {
setLoading(false);
}
};
return (
<div className="min-h-screen bg-gradient-to-br from-primary/5 via-background to-accent/5 flex items-center justify-center p-4">
{/* Décoration de fond */}
<div className="absolute inset-0 overflow-hidden pointer-events-none">
<div className="absolute -top-40 -right-40 w-96 h-96 rounded-full bg-primary/5 blur-3xl" />
<div className="absolute -bottom-40 -left-40 w-96 h-96 rounded-full bg-accent/5 blur-3xl" />
</div>
<div className="relative w-full max-w-md">
{/* Logo et titre */}
<div className="text-center mb-8">
<div className="inline-flex items-center justify-center w-16 h-16 rounded-2xl bg-primary shadow-lg mb-4">
<FileText size={28} className="text-primary-foreground" />
</div>
<h1 className="text-2xl font-bold text-foreground">Veille Réglementaire</h1>
<p className="text-muted-foreground mt-1 text-sm">Direction des Opérations Itinova</p>
</div>
<Card className="border-border/50 shadow-xl">
<CardHeader className="space-y-1 pb-4">
<div className="flex items-center gap-2">
<Shield size={16} className="text-accent" />
<CardTitle className="text-lg">Connexion sécurisée</CardTitle>
</div>
<CardDescription>
Entrez vos identifiants pour accéder à l'application
</CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Adresse e-mail</Label>
<Input
id="email"
type="email"
placeholder="votre@email.fr"
value={email}
onChange={(e) => setEmail(e.target.value)}
autoComplete="email"
required
className="h-11"
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Mot de passe</Label>
<div className="relative">
<Input
id="password"
type={showPassword ? "text" : "password"}
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
autoComplete="current-password"
required
className="h-11 pr-10"
/>
<button
type="button"
onClick={() => setShowPassword(!showPassword)}
className="absolute right-3 top-1/2 -translate-y-1/2 text-muted-foreground hover:text-foreground transition-colors"
>
{showPassword ? <EyeOff size={16} /> : <Eye size={16} />}
</button>
</div>
</div>
<Button
type="submit"
className="w-full h-11 bg-primary hover:bg-primary/90 text-primary-foreground font-semibold"
disabled={loading}
>
{loading ? (
<>
<Loader2 size={16} className="animate-spin mr-2" />
Connexion en cours
</>
) : (
"Se connecter"
)}
</Button>
</form>
<div className="mt-6 p-3 rounded-lg bg-muted/50 border border-border/50">
<p className="text-xs text-muted-foreground text-center">
Compte par défaut : <span className="font-mono font-semibold">admin@itinova.fr</span>
<br />
Mot de passe : <span className="font-mono font-semibold">Admin@Itinova2024!</span>
</p>
</div>
</CardContent>
</Card>
<p className="text-center text-xs text-muted-foreground mt-6">
© {new Date().getFullYear()} Itinova Application interne
</p>
</div>
</div>
);
}