'use client'; import { useState, useEffect } from 'react'; import DOMPurify from 'isomorphic-dompurify'; import { EmailMessage } from '@/lib/services/email-service'; import { Loader2, Paperclip, Download } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Badge } from '@/components/ui/badge'; 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

; // Sanitize HTML content const sanitizedContent = DOMPurify.sanitize(email.content, { ADD_TAGS: ['style', 'table', 'thead', 'tbody', 'tr', 'td', 'th'], ADD_ATTR: ['colspan', 'rowspan', 'style', 'width', 'height'] }); return (
); }; // 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()}
); }