'use client'; import { useState, useEffect } from 'react'; import DOMPurify from 'isomorphic-dompurify'; import { Loader2, Paperclip, Download } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Badge } from '@/components/ui/badge'; import { sanitizeHtml } from '@/lib/utils/email-formatter'; interface EmailAddress { name: string; address: string; } interface EmailMessage { id: string; messageId?: string; subject: string; from: EmailAddress[]; to: EmailAddress[]; cc?: EmailAddress[]; bcc?: EmailAddress[]; date: Date | string; flags?: { seen: boolean; flagged: boolean; answered: boolean; deleted: boolean; draft: boolean; }; preview?: string; content?: string; html?: string; text?: string; hasAttachments?: boolean; attachments?: Array<{ filename: string; contentType: string; size: number; path?: string; content?: string; }>; folder?: string; size?: number; contentFetched?: boolean; } interface EmailPreviewProps { email: EmailMessage | null; loading?: boolean; onReply?: (type: 'reply' | 'reply-all' | 'forward') => void; } export default function EmailPreview({ email, loading = false, onReply }: EmailPreviewProps) { const [contentLoading, setContentLoading] = useState(false); // Handle sanitizing and rendering HTML content const renderContent = () => { if (!email?.content) return

No content available

; try { // Use the centralized sanitizeHtml function which preserves direction const sanitizedContent = sanitizeHtml(email.content); return (
); } catch (error) { console.error('Error rendering email content:', error); return

Error displaying email content

; } }; // Format the date const formatDate = (date: Date | string) => { if (!date) return ''; const dateObj = date instanceof Date ? date : new Date(date); return dateObj.toLocaleString('en-US', { weekday: 'short', year: 'numeric', month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' }); }; // Format email addresses const formatEmailAddresses = (addresses: Array<{name: string, address: string}> | undefined) => { if (!addresses || addresses.length === 0) return ''; return addresses.map(addr => addr.name && addr.name !== addr.address ? `${addr.name} <${addr.address}>` : addr.address ).join(', '); }; if (loading || contentLoading) { return (

Loading email content...

); } if (!email) { return (

Select an email to view

); } return (
{/* Email header */}

{email.subject}

From: {formatEmailAddresses(email.from)}
{formatDate(email.date)}
{email.to && email.to.length > 0 && (
To: {formatEmailAddresses(email.to)}
)} {email.cc && email.cc.length > 0 && (
Cc: {formatEmailAddresses(email.cc)}
)}
{/* Action buttons */} {onReply && (
)} {/* Attachments */} {email.attachments && email.attachments.length > 0 && (
Attachments:
{email.attachments.map((attachment, index) => ( {attachment.filename} ({Math.round(attachment.size / 1024)}KB) ))}
)}
{/* Email content */}
{renderContent()}
); }