'use client'; import { useEffect, useState, useMemo, useCallback, useRef } from 'react'; import { useRouter } from 'next/navigation'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Input } from '@/components/ui/input'; import { Button } from '@/components/ui/button'; import { Label } from '@/components/ui/label'; import { Textarea } from '@/components/ui/textarea'; import { Checkbox } from '@/components/ui/checkbox'; import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, } from "@/components/ui/alert-dialog"; import { Avatar, AvatarFallback } from '@/components/ui/avatar'; import { MoreVertical, Settings, Plus as PlusIcon, Trash2, Edit, Mail, Inbox, Send, Star, Trash, Plus, ChevronLeft, ChevronRight, Search, ChevronDown, Folder, ChevronUp, Reply, Forward, ReplyAll, MoreHorizontal, FolderOpen, X, Paperclip, MessageSquare, Copy, EyeOff, AlertOctagon, Archive, RefreshCw } from 'lucide-react'; import { ScrollArea } from '@/components/ui/scroll-area'; import { useSession } from 'next-auth/react'; import DOMPurify from 'isomorphic-dompurify'; import ComposeEmail from '@/components/ComposeEmail'; import { decodeEmail, cleanHtml } from '@/lib/mail-parser-wrapper'; import { Attachment as MailParserAttachment } from 'mailparser'; export interface Account { id: number; name: string; email: string; color: string; folders?: string[]; } export interface Email { id: string; from: string; fromName?: string; to: string; subject: string; content: string; body?: string; // For backward compatibility textContent?: string; rawContent?: string; // Raw email content for fallback display date: string; read: boolean; starred: boolean; attachments?: { name: string; url: string }[]; folder: string; cc?: string; } interface Attachment { name: string; type: string; content: string; encoding: string; } interface ParsedEmailContent { headers: string; body: string; html?: string; text?: string; attachments?: Array<{ filename: string; content: string; contentType: string; }>; } interface ParsedEmailMetadata { subject: string; from: string; to: string; date: string; contentType: string; text: string | null; html: string | null; raw: { headers: string; body: string; }; } function splitEmailHeadersAndBody(emailBody: string): { headers: string; body: string } { const [headers, ...bodyParts] = emailBody.split('\r\n\r\n'); return { headers: headers || '', body: bodyParts.join('\r\n\r\n') }; } function EmailContent({ email }: { email: Email }) { const [content, setContent] = useState(null); const [error, setError] = useState(null); const [isLoading, setIsLoading] = useState(false); useEffect(() => { let mounted = true; async function loadContent() { if (!email) return; setIsLoading(true); try { // First try to directly render any available content if (email.content && mounted) { setContent(
); setIsLoading(false); return; } if (email.textContent && mounted) { setContent(
{email.textContent}
); setIsLoading(false); return; } // If we have nothing to display, try the client-side decoding if (!email.content && !email.textContent && !email.body && !email.rawContent) { if (mounted) { setContent(
No content available
); setIsLoading(false); } return; } const formattedEmail = (email.content || email.body || email.rawContent || '').trim(); if (!formattedEmail) { if (mounted) { setContent(
No content available
); setIsLoading(false); } return; } try { const parsedEmail = await decodeEmail(formattedEmail); if (mounted) { if (parsedEmail.html) { setContent(
); } else if (parsedEmail.text) { setContent(
{parsedEmail.text}
); } else if (email.rawContent) { // Use raw content directly if available and nothing else worked setContent(
{email.rawContent}
); } else { // Fall back to displaying the raw content setContent(
{formattedEmail}
); } setError(null); } } catch (parseError) { console.error('Error parsing email:', parseError); // Fallback to displaying raw content on parse error if (mounted) { setContent(
{email.rawContent || formattedEmail}
); } } if (mounted) { setIsLoading(false); } } catch (err) { console.error('Error rendering email content:', err); if (mounted) { setError('Error rendering email content. Please try again.'); setContent(null); setIsLoading(false); } } } loadContent(); return () => { mounted = false; }; }, [email?.content, email?.body, email?.textContent, email?.rawContent]); if (isLoading) { return (
); } if (error) { return
{error}
; } return content ||
No content available
; } function renderEmailContent(email: Email) { if (!email) return
No email selected
; return ; } function renderAttachments(attachments: MailParserAttachment[]) { if (!attachments.length) return null; return (

Attachments

{attachments.map((attachment, index) => (
{attachment.filename || 'unnamed_attachment'} {attachment.size ? `(${Math.round(attachment.size / 1024)} KB)` : ''}
))}
); } // Define the exact folder names from IMAP type MailFolder = string; // Map IMAP folders to sidebar items with icons const getFolderIcon = (folder: string) => { switch (folder.toLowerCase()) { case 'inbox': return Inbox; case 'sent': return Send; case 'drafts': return Edit; case 'trash': return Trash; case 'spam': return AlertOctagon; case 'archive': case 'archives': return Archive; default: return Folder; } }; // Initial sidebar items - only INBOX const initialSidebarItems = [ { view: 'INBOX' as MailFolder, label: 'Inbox', icon: Inbox, folder: 'INBOX' } ]; function formatDate(date: Date | null): string { if (!date) return ''; return new Intl.DateTimeFormat('fr-FR', { day: '2-digit', month: '2-digit', year: 'numeric', hour: '2-digit', minute: '2-digit' }).format(date); } function ReplyContent({ email, type }: { email: Email; type: 'reply' | 'reply-all' | 'forward' }) { const [content, setContent] = useState(''); const [error, setError] = useState(null); useEffect(() => { let mounted = true; async function loadReplyContent() { try { if (!email.content) { if (mounted) setContent(''); return; } const decoded = await decodeEmail(email.content); if (mounted) { let formattedContent = ''; if (type === 'forward') { formattedContent = `

---------- Forwarded message ---------

From: ${decoded.from || ''}

Date: ${formatDate(decoded.date ? new Date(decoded.date) : null)}

Subject: ${decoded.subject || ''}

To: ${decoded.to || ''}


${decoded.html || `
${decoded.text || ''}
`}
`; } else { formattedContent = `

On ${formatDate(decoded.date ? new Date(decoded.date) : null)}, ${decoded.from || ''} wrote:

${decoded.html || `
${decoded.text || ''}
`}
`; } setContent(formattedContent); setError(null); } } catch (err) { console.error('Error generating reply body:', err); if (mounted) { setError('Error generating reply content. Please try again.'); setContent(''); } } } loadReplyContent(); return () => { mounted = false; }; }, [email.content, type]); if (error) { return
{error}
; } return
; } // Update the getReplyBody function to use the new component function getReplyBody(email: Email, type: 'reply' | 'reply-all' | 'forward' = 'reply') { return ; } function EmailPreview({ email }: { email: Email }) { const [preview, setPreview] = useState(''); const [error, setError] = useState(null); const [isLoading, setIsLoading] = useState(false); useEffect(() => { let mounted = true; async function loadPreview() { if (!email?.content) { if (mounted) setPreview('No content available'); return; } setIsLoading(true); try { const decoded = await decodeEmail(email.content); if (mounted) { if (decoded.text) { setPreview(decoded.text.substring(0, 150) + '...'); } else if (decoded.html) { const cleanText = decoded.html.replace(/<[^>]*>/g, ' ').trim(); setPreview(cleanText.substring(0, 150) + '...'); } else { setPreview('No preview available'); } setError(null); } } catch (err) { console.error('Error generating email preview:', err); if (mounted) { setError('Error generating preview'); setPreview(''); } } finally { if (mounted) setIsLoading(false); } } loadPreview(); return () => { mounted = false; }; }, [email?.content]); if (isLoading) { return Loading preview...; } if (error) { return {error}; } return {preview}; } // Update the generateEmailPreview function to use the new component function generateEmailPreview(email: Email) { return ; } export default function CourrierPage() { const router = useRouter(); const { data: session } = useSession(); const [loading, setLoading] = useState(true); const [accounts, setAccounts] = useState([ { id: 0, name: 'All', email: '', color: 'bg-gray-500' }, { id: 1, name: 'Mail', email: 'alma@governance-labs.org', color: 'bg-blue-500' } ]); const [selectedAccount, setSelectedAccount] = useState(null); const [currentView, setCurrentView] = useState('INBOX'); const [showCompose, setShowCompose] = useState(false); const [showDeleteConfirm, setShowDeleteConfirm] = useState(false); const [selectedEmails, setSelectedEmails] = useState([]); const [showBulkActions, setShowBulkActions] = useState(false); const [showBcc, setShowBcc] = useState(false); const [emails, setEmails] = useState([]); const [error, setError] = useState(null); const [composeSubject, setComposeSubject] = useState(''); const [composeTo, setComposeTo] = useState(''); const [composeCc, setComposeCc] = useState(''); const [composeBcc, setComposeBcc] = useState(''); const [composeBody, setComposeBody] = useState(''); const [selectedEmail, setSelectedEmail] = useState(null); const [sidebarOpen, setSidebarOpen] = useState(true); const [foldersOpen, setFoldersOpen] = useState(true); const [showSettings, setShowSettings] = useState(false); const [searchQuery, setSearchQuery] = useState(''); const [mobileSidebarOpen, setMobileSidebarOpen] = useState(false); const [composeOpen, setComposeOpen] = useState(false); const [accountsDropdownOpen, setAccountsDropdownOpen] = useState(false); const [foldersDropdownOpen, setFoldersDropdownOpen] = useState(false); const [showAccountActions, setShowAccountActions] = useState(null); const [showEmailActions, setShowEmailActions] = useState(false); const [deleteType, setDeleteType] = useState<'email' | 'emails' | 'account'>('email'); const [itemToDelete, setItemToDelete] = useState(null); const [showCc, setShowCc] = useState(false); const [contentLoading, setContentLoading] = useState(false); const [attachments, setAttachments] = useState([]); const [folders, setFolders] = useState([]); const [unreadCount, setUnreadCount] = useState(0); const [availableFolders, setAvailableFolders] = useState([]); const [sidebarItems, setSidebarItems] = useState(initialSidebarItems); const [page, setPage] = useState(1); const [hasMore, setHasMore] = useState(true); const [isLoadingMore, setIsLoadingMore] = useState(false); const [isLoadingInitial, setIsLoadingInitial] = useState(true); const [isLoadingSearch, setIsLoadingSearch] = useState(false); const [isLoadingCompose, setIsLoadingCompose] = useState(false); const [isLoadingReply, setIsLoadingReply] = useState(false); const [isLoadingForward, setIsLoadingForward] = useState(false); const [isLoadingDelete, setIsLoadingDelete] = useState(false); const [isLoadingMove, setIsLoadingMove] = useState(false); const [isLoadingStar, setIsLoadingStar] = useState(false); const [isLoadingUnstar, setIsLoadingUnstar] = useState(false); const [isLoadingMarkRead, setIsLoadingMarkRead] = useState(false); const [isLoadingMarkUnread, setIsLoadingMarkUnread] = useState(false); const [isLoadingRefresh, setIsLoadingRefresh] = useState(false); const emailsPerPage = 20; const [isSearching, setIsSearching] = useState(false); const [searchResults, setSearchResults] = useState([]); const [showSearchResults, setShowSearchResults] = useState(false); const [isComposing, setIsComposing] = useState(false); const [composeEmail, setComposeEmail] = useState({ to: '', subject: '', body: '', }); const [isSending, setIsSending] = useState(false); const [isReplying, setIsReplying] = useState(false); const [isForwarding, setIsForwarding] = useState(false); const [replyToEmail, setReplyToEmail] = useState(null); const [forwardEmail, setForwardEmail] = useState(null); const [replyBody, setReplyBody] = useState(''); const [forwardBody, setForwardBody] = useState(''); const [replyAttachments, setReplyAttachments] = useState([]); const [forwardAttachments, setForwardAttachments] = useState([]); const [isSendingReply, setIsSendingReply] = useState(false); const [isSendingForward, setIsSendingForward] = useState(false); const [isDeleting, setIsDeleting] = useState(false); const [isMoving, setIsMoving] = useState(false); const [isStarring, setIsStarring] = useState(false); const [isUnstarring, setIsUnstarring] = useState(false); const [isMarkingRead, setIsMarkingRead] = useState(false); const [isMarkingUnread, setIsMarkingUnread] = useState(false); const [isRefreshing, setIsRefreshing] = useState(false); const composeBodyRef = useRef(null); const [originalEmail, setOriginalEmail] = useState<{ content: string; type: 'reply' | 'reply-all' | 'forward'; } | null>(null); // Debug logging for email distribution useEffect(() => { const emailsByFolder = emails.reduce((acc, email) => { acc[email.folder] = (acc[email.folder] || 0) + 1; return acc; }, {} as Record); console.log('Emails by folder:', emailsByFolder); console.log('Current view:', currentView); }, [emails, currentView]); // Move getSelectedEmail inside the component const getSelectedEmail = () => { return emails.find(email => email.id === selectedEmail?.id); }; // Check for stored credentials useEffect(() => { const checkCredentials = async () => { try { console.log('Checking for stored credentials...'); const response = await fetch('/api/courrier'); if (!response.ok) { const errorData = await response.json(); console.log('API response error:', errorData); if (errorData.error === 'No stored credentials found') { console.log('No credentials found, redirecting to login...'); router.push('/courrier/login'); return; } throw new Error(errorData.error || 'Failed to check credentials'); } console.log('Credentials verified, loading emails...'); setLoading(false); loadEmails(); } catch (err) { console.error('Error checking credentials:', err); setError(err instanceof Error ? err.message : 'Failed to check credentials'); setLoading(false); } }; checkCredentials(); }, [router]); // Update the loadEmails function const loadEmails = async (isLoadMore = false) => { try { if (isLoadMore) { setIsLoadingMore(true); } else { setLoading(true); } setError(null); const response = await fetch(`/api/courrier?folder=${encodeURIComponent(currentView)}&page=${page}&limit=${emailsPerPage}`); if (!response.ok) { throw new Error('Failed to load emails'); } const data = await response.json(); // Get available folders from the API response if (data.folders) { setAvailableFolders(data.folders); } // Process emails keeping exact folder names and sort by date const processedEmails = (data.emails || []) .map((email: any) => ({ id: Number(email.id), accountId: 1, from: email.from || '', fromName: email.fromName || email.from?.split('@')[0] || '', to: email.to || '', subject: email.subject || '(No subject)', body: email.body || '', date: email.date || new Date().toISOString(), read: email.read || false, starred: email.starred || false, folder: email.folder || currentView, cc: email.cc, bcc: email.bcc, flags: email.flags || [], raw: email.body || '' })); // Sort emails by date, ensuring most recent first const sortedEmails = processedEmails.sort((a: Email, b: Email) => { const dateA = new Date(a.date).getTime(); const dateB = new Date(b.date).getTime(); return dateB - dateA; // Most recent first }); // Only update unread count if we're in the Inbox folder if (currentView === 'INBOX') { const unreadInboxEmails = sortedEmails.filter( (email: Email) => !email.read && email.folder === 'INBOX' ).length; setUnreadCount(unreadInboxEmails); } if (isLoadMore) { // When loading more, merge with existing emails and re-sort setEmails(prev => { const combined = [...prev, ...sortedEmails]; return combined.sort((a: Email, b: Email) => { const dateA = new Date(a.date).getTime(); const dateB = new Date(b.date).getTime(); return dateB - dateA; // Most recent first }); }); setPage(prev => prev + 1); } else { // For initial load or refresh, just use the sorted emails setEmails(sortedEmails); setPage(1); } // Update hasMore based on API response setHasMore(data.hasMore || false); } catch (err) { setError(err instanceof Error ? err.message : 'Failed to load emails'); } finally { setLoading(false); setIsLoadingMore(false); } }; // Add an effect to reload emails when the view changes useEffect(() => { setPage(1); // Reset page when view changes setHasMore(true); loadEmails(); }, [currentView]); // Get account color const getAccountColor = (accountId: number) => { const account = accounts.find(acc => acc.id === accountId); return account ? account.color : 'bg-gray-500'; }; // Update handleEmailSelect to set selectedEmail correctly and improve error handling const handleEmailSelect = async (emailId: string) => { try { // First, set partial selectedEmail to show something immediately const emailToSelect = emails.find(email => email.id === emailId); if (emailToSelect) { console.log('Setting preliminary selected email:', { id: emailToSelect.id, subject: emailToSelect.subject, hasContent: !!emailToSelect.content, }); setSelectedEmail(emailToSelect); } // Then fetch the full content console.log(`Fetching email content for ID: ${emailId}`); const response = await fetch(`/api/courrier/${emailId}?folder=${currentView}`); if (!response.ok) { const errorText = await response.text(); console.error(`Error response (${response.status}): ${errorText}`); throw new Error(`Failed to fetch email content: ${response.status} ${response.statusText}`); } const fullEmail = await response.json(); console.log('Received full email data:', { id: fullEmail.id, subject: fullEmail.subject, hasContent: !!fullEmail.content, fields: Object.keys(fullEmail), }); // Set the complete selectedEmail with all content setSelectedEmail(fullEmail); // Also update the email in the list setEmails(prevEmails => prevEmails.map(email => email.id === emailId ? { ...email, read: true } : email )); // Try to mark as read in the background try { const markReadResponse = await fetch(`/api/mail/mark-read?folder=${currentView}`, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ emailId, isRead: true, }), }); if (!markReadResponse.ok) { console.error('Failed to mark email as read:', await markReadResponse.text()); } } catch (error) { console.error('Error marking email as read:', error); } } catch (error) { console.error('Error fetching email:', error); // Keep the selected email if it was set initially if (!selectedEmail) { setError('Failed to load email content. Please try again.'); } } }; // Add these improved handlers const handleEmailCheckbox = (e: React.ChangeEvent, emailId: number) => { e.stopPropagation(); if (e.target.checked) { setSelectedEmails([...selectedEmails, emailId.toString()]); } else { setSelectedEmails(selectedEmails.filter(id => id !== emailId.toString())); } }; // Handles marking an individual email as read/unread const handleMarkAsRead = (emailId: string, isRead: boolean) => { setEmails(emails.map(email => email.id.toString() === emailId ? { ...email, read: isRead } : email )); }; // Handles bulk actions for selected emails const handleBulkAction = async (action: 'delete' | 'mark-read' | 'mark-unread' | 'archive') => { if (action === 'delete') { setDeleteType('emails'); setShowDeleteConfirm(true); return; } try { const response = await fetch('/api/courrier/bulk-actions', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ emailIds: selectedEmails, action: action }), }); if (!response.ok) { throw new Error('Failed to perform bulk action'); } // Update local state based on the action setEmails(emails.map(email => { if (selectedEmails.includes(email.id.toString())) { switch (action) { case 'mark-read': return { ...email, read: true }; case 'mark-unread': return { ...email, read: false }; case 'archive': return { ...email, folder: 'Archive' }; default: return email; } } return email; })); // Clear selection after successful action setSelectedEmails([]); } catch (error) { console.error('Error performing bulk action:', error); alert('Failed to perform bulk action. Please try again.'); } }; // Add handleDeleteConfirm function const handleDeleteConfirm = async () => { try { const response = await fetch('/api/courrier/bulk-actions', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ emailIds: selectedEmails, action: 'delete' }), }); if (!response.ok) { throw new Error('Failed to delete emails'); } // Remove deleted emails from state setEmails(emails.filter(email => !selectedEmails.includes(email.id.toString()))); setSelectedEmails([]); } catch (error) { console.error('Error deleting emails:', error); alert('Failed to delete emails. Please try again.'); } finally { setShowDeleteConfirm(false); } }; // Add infinite scroll handler const handleScroll = useCallback((e: React.UIEvent) => { const target = e.currentTarget; if ( target.scrollHeight - target.scrollTop === target.clientHeight && !isLoadingMore && hasMore ) { setPage(prev => prev + 1); loadEmails(true); } }, [isLoadingMore, hasMore]); // Sort emails by date (most recent first) const sortedEmails = useMemo(() => { return [...emails].sort((a, b) => { return new Date(b.date).getTime() - new Date(a.date).getTime(); }); }, [emails]); const toggleSelectAll = () => { if (selectedEmails.length === emails.length) { setSelectedEmails([]); } else { setSelectedEmails(emails.map(email => email.id.toString())); } }; // Update filtered emails to use sortedEmails const filteredEmails = useMemo(() => { if (!searchQuery) return sortedEmails; const query = searchQuery.toLowerCase(); return sortedEmails.filter(email => email.subject.toLowerCase().includes(query) || email.from.toLowerCase().includes(query) || email.to.toLowerCase().includes(query) || email.content.toLowerCase().includes(query) ); }, [sortedEmails, searchQuery]); // Update the email list to use filtered emails const renderEmailList = () => (
{renderEmailListHeader()} {renderBulkActionsToolbar()}
{loading ? (
) : filteredEmails.length === 0 ? (

{searchQuery ? 'No emails match your search' : 'No emails in this folder'}

) : (
{filteredEmails.map((email) => renderEmailListItem(email))} {isLoadingMore && (
)}
)}
); // Update the email count in the header to show filtered count const renderEmailListHeader = () => (
setSearchQuery(e.target.value)} />
0 && selectedEmails.length === filteredEmails.length} onCheckedChange={toggleSelectAll} className="mt-0.5" />

{currentView.charAt(0).toUpperCase() + currentView.slice(1).toLowerCase()}

{searchQuery ? `${filteredEmails.length} of ${emails.length} emails` : `${emails.length} emails`}
); // Update the bulk actions toolbar to include confirmation dialog const renderBulkActionsToolbar = () => { if (selectedEmails.length === 0) return null; return (
{selectedEmails.length} selected
); }; // Keep only one renderEmailListWrapper function that includes both panels const renderEmailListWrapper = () => (
{/* Email list panel */} {renderEmailList()} {/* Preview panel - will automatically take remaining space */}
{selectedEmail ? ( <> {/* Email actions header */}

{selectedEmail.subject}

{/* Scrollable content area */}
{selectedEmail.fromName?.charAt(0) || selectedEmail.from.charAt(0)}

{selectedEmail.fromName} <{selectedEmail.from}>

to {selectedEmail.to}

{selectedEmail.cc && (

cc {selectedEmail.cc}

)}
{formatDate(new Date(selectedEmail.date))}
{/* Email status message */}

Viewing message from: {selectedEmail.from} • {new Date(selectedEmail.date).toLocaleString()}

{/* Go back to using the original renderEmailContent function */} {renderEmailContent(selectedEmail)}
) : (

Select an email to view its contents

)}
); // Update sidebar items when available folders change useEffect(() => { if (availableFolders.length > 0) { const newItems = [ ...initialSidebarItems, ...availableFolders .filter(folder => !['INBOX'].includes(folder)) // Exclude folders already in initial items .map(folder => ({ view: folder as MailFolder, label: folder.charAt(0).toUpperCase() + folder.slice(1).toLowerCase(), icon: getFolderIcon(folder), folder: folder })) ]; setSidebarItems(newItems); } }, [availableFolders]); // Update the email list item to match header checkbox alignment const renderEmailListItem = (email: Email) => (
handleEmailSelect(email.id)} >
toggleEmailSelection(email.id)} onClick={(e) => e.stopPropagation()} className="mt-0.5" />
{email.fromName || email.from} {!email.read && ( )}
{formatDate(new Date(email.date))}

{email.subject || '(No subject)'}

{email.starred && ( )} {email.attachments && email.attachments.length > 0 && ( )}
); const handleMailboxChange = async (newMailbox: string) => { setCurrentView(newMailbox); setSelectedEmails([]); setSearchQuery(''); setEmails([]); setLoading(true); setError(null); setHasMore(true); setPage(1); try { // Optimize the request by adding a timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 10000); // 10 second timeout const response = await fetch(`/api/courrier?folder=${encodeURIComponent(newMailbox)}&page=1&limit=${emailsPerPage}`, { signal: controller.signal }); clearTimeout(timeoutId); if (!response.ok) { throw new Error('Failed to fetch emails'); } const data = await response.json(); // Process emails more efficiently const processedEmails = data.emails.map((email: any) => ({ id: Number(email.id), accountId: 1, from: email.from || '', fromName: email.from?.split('@')[0] || '', to: email.to || '', subject: email.subject || '(No subject)', body: email.body || '', date: email.date || new Date().toISOString(), read: email.read || false, starred: email.starred || false, folder: email.folder || newMailbox, cc: email.cc, bcc: email.bcc, flags: email.flags || [], raw: email.body || '' })); setEmails(processedEmails); setHasMore(processedEmails.length === emailsPerPage); // Only update unread count if we're in the Inbox folder if (newMailbox === 'INBOX') { const unreadInboxEmails = processedEmails.filter( (email: Email) => !email.read && email.folder === 'INBOX' ).length; setUnreadCount(unreadInboxEmails); } } catch (error) { console.error('Error fetching emails:', error); setError(error instanceof Error ? error.message : 'Failed to fetch emails'); } finally { setLoading(false); } }; // Add back the renderSidebarNav function const renderSidebarNav = () => ( ); // Update handleReply to include body property for backward compatibility const handleReply = async (type: 'reply' | 'reply-all' | 'forward') => { if (!selectedEmail) return; try { const getReplyTo = () => { if (type === 'forward') return ''; return selectedEmail.from; }; const getReplyCc = () => { if (type !== 'reply-all') return ''; return selectedEmail.cc || ''; }; const getReplySubject = () => { const subject = selectedEmail.subject || ''; if (type === 'forward') { return subject.startsWith('Fwd:') ? subject : `Fwd: ${subject}`; } return subject.startsWith('Re:') ? subject : `Re: ${subject}`; }; // Add body property for backward compatibility const emailWithBody = { ...selectedEmail, body: selectedEmail.content // Add body property that maps to content }; // Set the appropriate flags setIsReplying(type === 'reply' || type === 'reply-all'); setIsForwarding(type === 'forward'); // Update the compose form setComposeTo(getReplyTo()); setComposeCc(getReplyCc()); setComposeSubject(getReplySubject()); setComposeBcc(''); setShowCompose(true); setShowCc(type === 'reply-all'); setShowBcc(false); setAttachments([]); // Pass the email with both content and body properties setReplyToEmail(emailWithBody); setForwardEmail(type === 'forward' ? emailWithBody : null); } catch (error) { console.error('Error preparing reply:', error); } }; // Update toggleStarred to use string IDs const toggleStarred = async (emailId: string, e?: React.MouseEvent) => { if (e) { e.stopPropagation(); } const email = emails.find(e => e.id === emailId); if (!email) return; try { const response = await fetch('/api/courrier/toggle-star', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ emailId, starred: !email.starred }), }); if (!response.ok) { throw new Error('Failed to toggle star'); } // Update email in state setEmails(emails.map(e => e.id === emailId ? { ...e, starred: !e.starred } : e )); } catch (error) { console.error('Error toggling star:', error); } }; // Add back the handleSend function const handleSend = async () => { if (!composeTo) { alert('Please specify at least one recipient'); return; } try { const response = await fetch('/api/courrier/send', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ to: composeTo, cc: composeCc, bcc: composeBcc, subject: composeSubject, body: composeBody, attachments: attachments, }), }); const data = await response.json(); if (!response.ok) { if (data.error === 'Attachment size limit exceeded') { alert(`Error: ${data.error}\nThe following files are too large:\n${data.details.oversizedFiles.join('\n')}`); } else { alert(`Error sending email: ${data.error}`); } return; } // Clear compose form and close modal setComposeTo(''); setComposeCc(''); setComposeBcc(''); setComposeSubject(''); setComposeBody(''); setAttachments([]); setShowCompose(false); } catch (error) { console.error('Error sending email:', error); alert('Failed to send email. Please try again.'); } }; // Add back the renderDeleteConfirmDialog function const renderDeleteConfirmDialog = () => ( Delete Emails Are you sure you want to delete {selectedEmails.length} selected email{selectedEmails.length > 1 ? 's' : ''}? This action cannot be undone. Cancel Delete ); const toggleEmailSelection = (emailId: string) => { setSelectedEmails((prev) => prev.includes(emailId) ? prev.filter((id) => id !== emailId) : [...prev, emailId] ); }; const searchEmails = (query: string) => { setSearchQuery(query.trim()); }; const handleSearchChange = (e: React.ChangeEvent) => { const query = e.target.value; setSearchQuery(query); }; const renderEmailPreview = (email: Email) => { if (!email) return null; return (

{email.subject}

{renderEmailContent(email)}
); }; if (error) { return (

{error}

); } return ( <> {/* Main layout */}
{/* Sidebar */}
{/* Courrier Title */}
COURRIER
{/* Compose button and refresh button */}
{/* Accounts Section */}
{accountsDropdownOpen && (
{accounts.map(account => (
))}
)}
{/* Navigation */} {renderSidebarNav()}
{/* Main content area */}
{/* Email list panel */} {renderEmailListWrapper()}
{/* Compose Email Modal */} { console.log('Email sent:', email); setShowCompose(false); setIsReplying(false); setIsForwarding(false); }} onCancel={() => { setShowCompose(false); setComposeTo(''); setComposeCc(''); setComposeBcc(''); setComposeSubject(''); setComposeBody(''); setShowCc(false); setShowBcc(false); setAttachments([]); setIsReplying(false); setIsForwarding(false); }} /> {renderDeleteConfirmDialog()} ); }