135 lines
4.2 KiB
TypeScript
135 lines
4.2 KiB
TypeScript
'use client';
|
|
|
|
import React, { useState } from 'react';
|
|
import { Loader2, Mail } 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<HTMLDivElement>) => {
|
|
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 (
|
|
<div className="flex justify-center items-center h-full p-8 bg-white/95 backdrop-blur-sm">
|
|
<div className="animate-spin rounded-full h-8 w-8 border-t-2 border-b-2 border-blue-500"></div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Render empty state
|
|
if (emails.length === 0) {
|
|
return (
|
|
<div className="flex flex-col justify-center items-center h-full p-8 text-center bg-white/95 backdrop-blur-sm">
|
|
<Mail className="h-8 w-8 text-gray-400 mb-2" />
|
|
<p className="text-gray-500 text-sm">
|
|
{currentFolder === 'INBOX'
|
|
? "Your inbox is empty. You're all caught up!"
|
|
: `No emails in this folder`}
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// 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 (
|
|
<div className="flex flex-col h-full bg-white/95 backdrop-blur-sm">
|
|
<EmailListHeader
|
|
allSelected={allSelected}
|
|
someSelected={someSelected}
|
|
onToggleSelectAll={onToggleSelectAll}
|
|
currentFolder={currentFolder}
|
|
totalEmails={totalEmails}
|
|
/>
|
|
|
|
{selectedEmailIds.length > 0 && (
|
|
<BulkActionsToolbar
|
|
selectedCount={selectedEmailIds.length}
|
|
onBulkAction={onBulkAction}
|
|
/>
|
|
)}
|
|
|
|
<div
|
|
className="flex-1 overflow-y-auto"
|
|
onScroll={handleScroll}
|
|
>
|
|
<div className="divide-y divide-gray-100">
|
|
{emails.map((email) => (
|
|
<EmailListItem
|
|
key={email.id}
|
|
email={email}
|
|
isSelected={selectedEmailIds.includes(email.id)}
|
|
isActive={selectedEmail?.id === email.id}
|
|
onSelect={() => onSelectEmail(email.id)}
|
|
onToggleSelect={(e: React.MouseEvent) => {
|
|
e.stopPropagation();
|
|
onToggleSelect(email.id);
|
|
}}
|
|
onToggleStarred={(e: React.MouseEvent) => {
|
|
e.stopPropagation();
|
|
onToggleStarred(email.id);
|
|
}}
|
|
/>
|
|
))}
|
|
|
|
{isLoading && emails.length > 0 && (
|
|
<div className="flex items-center justify-center p-4">
|
|
<div className="animate-spin rounded-full h-4 w-4 border-t-2 border-b-2 border-blue-500"></div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|