- Updated EmailContextMenu to replace color tag functionality with label tags. - Modified EmailListItem to display label badges for emails based on keywords. - Enhanced EmailViewer to include a tag picker for emails. - Adjusted ThreadListItem to show label badges for email subjects. - Added tests for email list item and keyword settings to ensure proper functionality of the new tagging system. - Updated localization files to reflect changes from color tags to labels in multiple languages.
196 lines
7.2 KiB
TypeScript
196 lines
7.2 KiB
TypeScript
"use client";
|
|
|
|
import { useTranslations } from "next-intl";
|
|
import { formatDate } from "@/lib/utils";
|
|
import { Email } from "@/lib/jmap/types";
|
|
import { cn } from "@/lib/utils";
|
|
import { Avatar } from "@/components/ui/avatar";
|
|
import { Paperclip, Star, Circle, CheckSquare, Square, Tag } from "lucide-react";
|
|
import { useEmailStore } from "@/stores/email-store";
|
|
import { useSettingsStore, KEYWORD_PALETTE } from "@/stores/settings-store";
|
|
import { useAuthStore } from "@/stores/auth-store";
|
|
import { useEmailDrag } from "@/hooks/use-email-drag";
|
|
import { EmailIdentityBadge } from "./email-identity-badge";
|
|
import { getEmailColorTag } from "@/lib/thread-utils";
|
|
|
|
interface EmailListItemProps {
|
|
email: Email;
|
|
selected?: boolean;
|
|
onClick?: () => void;
|
|
onContextMenu?: (e: React.MouseEvent, email: Email) => void;
|
|
}
|
|
|
|
export function EmailListItem({ email, selected, onClick, onContextMenu }: EmailListItemProps) {
|
|
const t = useTranslations('email_viewer');
|
|
const { selectedEmailIds, toggleEmailSelection, selectRangeEmails, selectedMailbox } = useEmailStore();
|
|
const showPreview = useSettingsStore((state) => state.showPreview);
|
|
const emailKeywords = useSettingsStore((state) => state.emailKeywords);
|
|
const { identities } = useAuthStore();
|
|
const isChecked = selectedEmailIds.has(email.id);
|
|
const isUnread = !email.keywords?.$seen;
|
|
const isStarred = email.keywords?.$flagged;
|
|
const isImportant = email.keywords?.["$important"];
|
|
const sender = email.from?.[0];
|
|
|
|
// Resolve color tag using keyword definitions from settings
|
|
const colorTagId = getEmailColorTag(email.keywords);
|
|
const keywordDef = colorTagId ? emailKeywords.find(k => k.id === colorTagId) : null;
|
|
const colorTag = keywordDef ? KEYWORD_PALETTE[keywordDef.color]?.bg ?? null : null;
|
|
|
|
// Drag and drop functionality
|
|
const { dragHandlers, isDragging } = useEmailDrag({
|
|
email,
|
|
sourceMailboxId: selectedMailbox,
|
|
});
|
|
|
|
const handleCheckboxClick = (e: React.MouseEvent) => {
|
|
e.stopPropagation();
|
|
toggleEmailSelection(email.id);
|
|
};
|
|
|
|
const handleContextMenu = (e: React.MouseEvent) => {
|
|
onContextMenu?.(e, email);
|
|
};
|
|
|
|
return (
|
|
<div
|
|
{...dragHandlers}
|
|
className={cn(
|
|
"relative group cursor-pointer transition-all duration-200 border-b border-border",
|
|
// Apply color tag as background, with selected and unread states
|
|
colorTag ? colorTag : (
|
|
selected
|
|
? "bg-accent"
|
|
: "bg-background"
|
|
),
|
|
selected && !colorTag && "shadow-sm",
|
|
!colorTag && !selected && "hover:bg-muted hover:shadow-sm",
|
|
colorTag && "hover:brightness-95 dark:hover:brightness-110",
|
|
isUnread && !colorTag && "bg-accent/30",
|
|
// Add visual feedback for checked state
|
|
isChecked && "ring-2 ring-primary/20 bg-accent/40",
|
|
// Drag state visual feedback
|
|
isDragging && "opacity-50 scale-[0.98] ring-2 ring-primary/30"
|
|
)}
|
|
onClick={(e) => {
|
|
if (e.ctrlKey || e.metaKey) {
|
|
e.preventDefault();
|
|
toggleEmailSelection(email.id);
|
|
} else if (e.shiftKey) {
|
|
e.preventDefault();
|
|
selectRangeEmails(email.id);
|
|
} else {
|
|
onClick?.();
|
|
}
|
|
}}
|
|
onContextMenu={handleContextMenu}
|
|
style={{ minHeight: 'var(--list-item-height)' }}
|
|
>
|
|
<div className="flex items-start gap-3 px-4 py-3">
|
|
{/* Checkbox with smooth animation */}
|
|
<button
|
|
onClick={handleCheckboxClick}
|
|
className={cn(
|
|
"p-3 lg:p-1 rounded mt-2 flex-shrink-0 transition-all duration-200",
|
|
"hover:bg-muted/50 hover:scale-110",
|
|
"active:scale-95",
|
|
isChecked && "text-primary"
|
|
)}
|
|
>
|
|
{isChecked ? (
|
|
<CheckSquare className="w-4 h-4 animate-in zoom-in-50 duration-200" />
|
|
) : (
|
|
<Square className="w-4 h-4 text-muted-foreground opacity-60 hover:opacity-100 transition-opacity" />
|
|
)}
|
|
</button>
|
|
|
|
{/* Unread indicator */}
|
|
{isUnread && (
|
|
<div className="absolute left-1 top-1/2 -translate-y-1/2">
|
|
<Circle className="w-2 h-2 fill-blue-600 text-blue-600 dark:fill-blue-400 dark:text-blue-400" />
|
|
</div>
|
|
)}
|
|
|
|
{/* Avatar */}
|
|
<Avatar
|
|
name={sender?.name}
|
|
email={sender?.email}
|
|
size="md"
|
|
className="flex-shrink-0 shadow-sm"
|
|
/>
|
|
|
|
{/* Content */}
|
|
<div className="flex-1 min-w-0">
|
|
{/* First Line: Sender and Date */}
|
|
<div className="flex items-center justify-between gap-2 mb-1">
|
|
<div className="flex items-center gap-2 min-w-0 flex-1">
|
|
<span className={cn(
|
|
"truncate text-sm",
|
|
isUnread
|
|
? "font-bold text-foreground"
|
|
: "font-medium text-muted-foreground"
|
|
)}>
|
|
{sender?.name || sender?.email || "Unknown"}
|
|
</span>
|
|
<div className="flex items-center gap-1.5">
|
|
{isStarred && (
|
|
<Star className="w-3.5 h-3.5 fill-amber-400 text-amber-400" />
|
|
)}
|
|
{isImportant && (
|
|
<span className="px-1.5 py-0.5 text-xs bg-amber-100 dark:bg-amber-900/30 text-amber-700 dark:text-amber-400 rounded font-medium">
|
|
Important
|
|
</span>
|
|
)}
|
|
<EmailIdentityBadge email={email} identities={identities} compact={true} />
|
|
{email.hasAttachment && (
|
|
<Paperclip className="w-3.5 h-3.5 text-muted-foreground" />
|
|
)}
|
|
</div>
|
|
</div>
|
|
<span className={cn(
|
|
"text-xs flex-shrink-0 tabular-nums",
|
|
isUnread
|
|
? "text-foreground font-semibold"
|
|
: "text-muted-foreground"
|
|
)}>
|
|
{formatDate(email.receivedAt)}
|
|
</span>
|
|
</div>
|
|
|
|
{/* Second Line: Subject + Tag */}
|
|
<div className="flex items-center gap-1.5 mb-1">
|
|
<span className={cn(
|
|
"line-clamp-1 text-sm min-w-0",
|
|
isUnread
|
|
? "font-semibold text-foreground"
|
|
: "font-normal text-foreground/90"
|
|
)}>
|
|
{email.subject || t('no_subject')}
|
|
</span>
|
|
{keywordDef && (
|
|
<span className={cn(
|
|
"flex-shrink-0 inline-flex items-center gap-1 px-1.5 py-0.5 text-[10px] font-medium rounded-full",
|
|
KEYWORD_PALETTE[keywordDef.color]?.bg || "bg-muted"
|
|
)}>
|
|
<span className={cn("w-1.5 h-1.5 rounded-full", KEYWORD_PALETTE[keywordDef.color]?.dot || "bg-gray-400")} />
|
|
{keywordDef.label}
|
|
</span>
|
|
)}
|
|
</div>
|
|
|
|
{/* Third Line: Preview (controlled by showPreview setting) */}
|
|
{showPreview && (
|
|
<p className={cn(
|
|
"text-sm leading-relaxed line-clamp-2",
|
|
isUnread
|
|
? "text-muted-foreground"
|
|
: "text-muted-foreground/80"
|
|
)}>
|
|
{email.preview || "No preview available"}
|
|
</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |