NeahFront7/components/email.tsx
2025-04-13 20:43:17 +02:00

168 lines
5.5 KiB
TypeScript

"use client";
import { useEffect, useState } from "react";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { RefreshCw, Mail } from "lucide-react";
import { useSession, signIn } from "next-auth/react";
import { formatDistance } from 'date-fns';
import { fr } from 'date-fns/locale';
interface Email {
id: string;
subject: string;
sender: {
name: string;
email: string;
};
date: string;
isUnread: boolean;
}
export function Email() {
const [emails, setEmails] = useState<Email[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [refreshing, setRefreshing] = useState(false);
const { status } = useSession();
const fetchEmails = async (isRefresh = false) => {
if (isRefresh) setRefreshing(true);
if (!isRefresh) setLoading(true);
try {
const response = await fetch('/api/emails');
const data = await response.json();
if (!response.ok) {
// Handle session expiration
if (response.status === 401) {
signIn(); // Redirect to login
return;
}
// Handle specific error messages
if (response.status === 404) {
setError("L'application Mail n'est pas disponible sur Nextcloud. Veuillez contacter votre administrateur.");
return;
}
throw new Error(data.error || 'Failed to fetch emails');
}
setEmails(data);
setError(null);
} catch (err) {
console.error('Error fetching emails:', err);
setError(err instanceof Error ? err.message : 'Erreur lors de la récupération des emails');
} finally {
setLoading(false);
setRefreshing(false);
}
};
// Initial fetch
useEffect(() => {
if (status === 'authenticated') {
fetchEmails();
}
}, [status]);
// Auto-refresh every 5 minutes
useEffect(() => {
if (status !== 'authenticated') return;
const interval = setInterval(() => {
fetchEmails(true);
}, 5 * 60 * 1000);
return () => clearInterval(interval);
}, [status]);
const formatDate = (dateString: string) => {
try {
const date = new Date(dateString);
return formatDistance(date, new Date(), {
addSuffix: true,
locale: fr
});
} catch (err) {
console.error('Error formatting date:', err);
return dateString;
}
};
if (status === 'loading' || loading) {
return (
<Card className="transition-transform duration-500 ease-in-out transform hover:scale-105 bg-white/95 backdrop-blur-sm border-0 shadow-lg h-full">
<CardHeader className="flex flex-row items-center justify-between pb-2 border-b border-gray-100">
<CardTitle className="text-lg font-semibold text-gray-800">
<div className="flex items-center gap-2">
<Mail className="h-5 w-5" />
<span>Emails non lus</span>
</div>
</CardTitle>
</CardHeader>
<CardContent className="p-6">
<div className="flex items-center justify-center">
<RefreshCw className="h-5 w-5 animate-spin text-gray-400" />
</div>
</CardContent>
</Card>
);
}
return (
<Card className="transition-transform duration-500 ease-in-out transform hover:scale-105 bg-white/95 backdrop-blur-sm border-0 shadow-lg h-full">
<CardHeader className="flex flex-row items-center justify-between pb-2 space-x-4 border-b border-gray-100">
<CardTitle className="text-lg font-semibold text-gray-800">
<div className="flex items-center gap-2">
<Mail className="h-5 w-5" />
<span>Emails non lus</span>
</div>
</CardTitle>
<Button
variant="ghost"
size="icon"
onClick={() => fetchEmails(true)}
disabled={refreshing}
className={`${refreshing ? 'animate-spin' : ''} text-gray-600 hover:text-gray-900`}
>
<RefreshCw className="h-4 w-4" />
</Button>
</CardHeader>
<CardContent className="p-3">
{error ? (
<p className="text-center text-red-500">{error}</p>
) : (
<div className="space-y-2 max-h-[220px] overflow-y-auto">
{emails.length === 0 ? (
<p className="text-center text-gray-500">Aucun email non lu</p>
) : (
emails.map((email) => (
<div
key={email.id}
className="p-2 hover:bg-gray-50/50 rounded-lg transition-colors cursor-pointer"
onClick={() => window.open(process.env.NEXT_PUBLIC_IFRAME_MAIL_URL, '_blank')}
>
<div className="flex items-center justify-between mb-1">
<span className="text-sm text-gray-600 truncate max-w-[60%]" title={email.sender.name}>
{email.sender.name}
</span>
<div className="flex items-center space-x-2">
<span className="w-1.5 h-1.5 bg-blue-600 rounded-full"></span>
<span className="text-xs text-gray-500">{formatDate(email.date)}</span>
</div>
</div>
<h3 className="text-sm font-semibold text-gray-800 line-clamp-2" title={email.subject}>
{email.subject}
</h3>
</div>
))
)}
</div>
)}
</CardContent>
</Card>
);
}