'use client'; import React, { useState } from 'react'; import { Loader2 } from 'lucide-react'; import { ScrollArea } from '@/components/ui/scroll-area'; import { Email } from '@/hooks/use-courrier'; import EmailListItem from './EmailListItem'; import EmailListHeader from './EmailListHeader'; import BulkActionsToolbar from './BulkActionsToolbar'; interface EmailListProps { emails: Email[]; selectedEmailIds: string[]; selectedEmail: Email | null; currentFolder: string; isLoading: boolean; totalEmails: number; hasMoreEmails: boolean; onSelectEmail: (emailId: string) => void; onToggleSelect: (emailId: string) => void; onToggleSelectAll: () => void; onBulkAction: (action: 'delete' | 'mark-read' | 'mark-unread' | 'archive') => void; onToggleStarred: (emailId: string) => void; onLoadMore: () => void; } export default function EmailList({ emails, selectedEmailIds, selectedEmail, currentFolder, isLoading, totalEmails, hasMoreEmails, onSelectEmail, onToggleSelect, onToggleSelectAll, onBulkAction, onToggleStarred, onLoadMore }: EmailListProps) { const [scrollPosition, setScrollPosition] = useState(0); // Handle scroll to detect when user reaches the bottom const handleScroll = (event: React.UIEvent) => { const target = event.target as HTMLDivElement; const { scrollTop, scrollHeight, clientHeight } = target; setScrollPosition(scrollTop); // If user scrolls near the bottom and we have more emails, load more if (scrollHeight - scrollTop - clientHeight < 200 && hasMoreEmails && !isLoading) { onLoadMore(); } }; // Render loading state if (isLoading && emails.length === 0) { return (
); } // Render empty state if (emails.length === 0) { return (

No emails found

{currentFolder === 'INBOX' ? "Your inbox is empty. You're all caught up!" : `The ${currentFolder} folder is empty.`}

); } // Are all emails selected const allSelected = selectedEmailIds.length === emails.length && emails.length > 0; // Are some (but not all) emails selected const someSelected = selectedEmailIds.length > 0 && selectedEmailIds.length < emails.length; return (
{selectedEmailIds.length > 0 && ( )}
{emails.map((email) => ( onSelectEmail(email.id)} onToggleSelect={(e) => { e.stopPropagation(); onToggleSelect(email.id); }} onToggleStarred={(e) => { e.stopPropagation(); onToggleStarred(email.id); }} /> ))} {isLoading && emails.length > 0 && (
)}
); }