2026-06-14 01:07:48 +08:00
|
|
|
|
import * as React from "react"
|
|
|
|
|
|
import DOMPurify from "dompurify"
|
2026-06-15 17:37:40 +08:00
|
|
|
|
import { marked } from "marked"
|
2026-06-14 01:07:48 +08:00
|
|
|
|
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query"
|
2026-06-15 17:37:40 +08:00
|
|
|
|
import { useNavigate } from "react-router-dom"
|
2026-06-14 01:07:48 +08:00
|
|
|
|
import type { ImperativePanelHandle } from "react-resizable-panels"
|
2026-06-15 21:50:44 +08:00
|
|
|
|
import { Archive, ArrowLeft, Bold, Check, ChevronsUpDown, Code2, Copy, Forward, Image, Inbox, Italic, Link, List, ListOrdered, Mail, MailCheck, Minus, Moon, PanelLeftClose, PanelLeftOpen, Paperclip, PencilLine, Plus, Quote, RefreshCcw, Reply, Search, Send, Settings, SlidersHorizontal, Star, Strikethrough, Sun, Tag, Trash2, WrapText, X } from "lucide-react"
|
2026-06-15 17:37:40 +08:00
|
|
|
|
import { api, Mailbox, MailFolder, MailLabel, MailMessage } from "@/lib/api"
|
2026-06-15 21:50:44 +08:00
|
|
|
|
import { cn, formatBytes, formatDate, formatDateTime } from "@/lib/utils"
|
2026-06-14 01:07:48 +08:00
|
|
|
|
import { applyTheme, getInitialTheme } from "@/lib/theme"
|
2026-06-15 21:50:44 +08:00
|
|
|
|
import { useDisplayMode } from "@/lib/display-mode"
|
2026-06-14 01:07:48 +08:00
|
|
|
|
import { Button } from "@/components/ui/button"
|
|
|
|
|
|
import { Input } from "@/components/ui/input"
|
|
|
|
|
|
import { Badge } from "@/components/ui/badge"
|
2026-06-15 21:50:44 +08:00
|
|
|
|
import { Checkbox } from "@/components/ui/checkbox"
|
2026-06-15 17:37:40 +08:00
|
|
|
|
import { Dialog, DialogContent, DialogFooter, DialogHeader, DialogTitle } from "@/components/ui/dialog"
|
2026-06-14 01:07:48 +08:00
|
|
|
|
import { Label } from "@/components/ui/label"
|
|
|
|
|
|
import { Textarea } from "@/components/ui/textarea"
|
2026-06-15 17:37:40 +08:00
|
|
|
|
import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "@/components/ui/dropdown-menu"
|
|
|
|
|
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
|
2026-06-14 01:07:48 +08:00
|
|
|
|
import { ScrollArea } from "@/components/ui/scroll-area"
|
|
|
|
|
|
import { Separator } from "@/components/ui/separator"
|
|
|
|
|
|
import { Skeleton } from "@/components/ui/skeleton"
|
|
|
|
|
|
import { Avatar, AvatarFallback } from "@/components/ui/avatar"
|
|
|
|
|
|
import { ResizableHandle, ResizablePanel, ResizablePanelGroup } from "@/components/ui/resizable"
|
|
|
|
|
|
import {
|
|
|
|
|
|
Sidebar,
|
|
|
|
|
|
SidebarContent,
|
|
|
|
|
|
SidebarGroup,
|
|
|
|
|
|
SidebarGroupContent,
|
|
|
|
|
|
SidebarGroupLabel,
|
|
|
|
|
|
SidebarHeader,
|
|
|
|
|
|
SidebarMenu,
|
|
|
|
|
|
SidebarMenuButton,
|
|
|
|
|
|
SidebarMenuItem,
|
|
|
|
|
|
SidebarProvider,
|
|
|
|
|
|
} from "@/components/ui/sidebar"
|
|
|
|
|
|
import { useMe } from "@/hooks/use-me"
|
|
|
|
|
|
import { useToast } from "@/hooks/use-toast"
|
|
|
|
|
|
|
|
|
|
|
|
const folderIcons: Record<string, React.ReactNode> = { inbox: <Inbox className="h-4 w-4" />, sent: <Send className="h-4 w-4" />, archive: <Archive className="h-4 w-4" />, trash: <Trash2 className="h-4 w-4" /> }
|
|
|
|
|
|
const folderLabels: Record<string, string> = {
|
|
|
|
|
|
Inbox: "收件箱",
|
|
|
|
|
|
Sent: "已发送",
|
|
|
|
|
|
Drafts: "草稿箱",
|
|
|
|
|
|
Archive: "归档",
|
|
|
|
|
|
Spam: "垃圾邮件",
|
|
|
|
|
|
Trash: "回收站",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ComposeDraft = { key: string; to?: string; cc?: string; bcc?: string; subject?: string; text?: string }
|
|
|
|
|
|
type MailFilter = "all" | "unread" | "starred" | "attachments"
|
2026-06-15 17:37:40 +08:00
|
|
|
|
type MailView = "folder" | "starred" | "label"
|
|
|
|
|
|
type MailMenuItem =
|
|
|
|
|
|
| { type: "starred"; key: string; label: string; icon: React.ReactNode; count: number }
|
|
|
|
|
|
| { type: "folder"; key: string; folderName: string; label: string; icon: React.ReactNode; count: number }
|
2026-06-14 01:07:48 +08:00
|
|
|
|
|
|
|
|
|
|
const filterLabels: Record<MailFilter, string> = {
|
|
|
|
|
|
all: "全部邮件",
|
|
|
|
|
|
unread: "未读邮件",
|
|
|
|
|
|
starred: "星标邮件",
|
|
|
|
|
|
attachments: "有附件",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function MailPage() {
|
|
|
|
|
|
const qc = useQueryClient()
|
|
|
|
|
|
const { toast } = useToast()
|
|
|
|
|
|
const navigate = useNavigate()
|
|
|
|
|
|
const me = useMe()
|
2026-06-15 17:37:40 +08:00
|
|
|
|
const [folder, setFolder] = React.useState("Inbox")
|
|
|
|
|
|
const [mailView, setMailView] = React.useState<MailView>("folder")
|
|
|
|
|
|
const [selectedLabelId, setSelectedLabelId] = React.useState("")
|
2026-06-14 01:07:48 +08:00
|
|
|
|
const [query, setQuery] = React.useState("")
|
|
|
|
|
|
const [selectedId, setSelectedId] = React.useState<string | null>(null)
|
2026-06-15 21:50:44 +08:00
|
|
|
|
const [compactSelectedIds, setCompactSelectedIds] = React.useState<string[]>([])
|
2026-06-14 01:07:48 +08:00
|
|
|
|
const [composeOpen, setComposeOpen] = React.useState(false)
|
|
|
|
|
|
const [composeDraft, setComposeDraft] = React.useState<ComposeDraft | undefined>()
|
|
|
|
|
|
const [sidebarCollapsed, setSidebarCollapsed] = React.useState(false)
|
|
|
|
|
|
const [mailFilter, setMailFilter] = React.useState<MailFilter>("all")
|
|
|
|
|
|
const [selectedMailboxId, setSelectedMailboxId] = React.useState(() => localStorage.getItem("lanqin:selected-mailbox") || "")
|
|
|
|
|
|
const [darkMode, setDarkMode] = React.useState(getInitialTheme)
|
2026-06-15 21:50:44 +08:00
|
|
|
|
const [displayMode] = useDisplayMode()
|
|
|
|
|
|
const [refreshing, setRefreshing] = React.useState(false)
|
|
|
|
|
|
const [bulkPending, setBulkPending] = React.useState(false)
|
2026-06-14 01:07:48 +08:00
|
|
|
|
const sidebarPanelRef = React.useRef<ImperativePanelHandle>(null)
|
|
|
|
|
|
const themeMountedRef = React.useRef(false)
|
|
|
|
|
|
|
|
|
|
|
|
const mailboxList = useQuery({ queryKey: ["mailboxes", "mine"], queryFn: api.myMailboxes })
|
2026-06-15 00:37:43 +08:00
|
|
|
|
const publicSettings = useQuery({ queryKey: ["public-settings"], queryFn: api.publicSettings })
|
2026-06-14 01:07:48 +08:00
|
|
|
|
const selectedMailbox = React.useMemo(() => mailboxList.data?.items.find((item) => item.id === selectedMailboxId), [mailboxList.data?.items, selectedMailboxId])
|
2026-06-16 00:51:41 +08:00
|
|
|
|
const activeMailboxId = selectedMailbox?.id || ""
|
|
|
|
|
|
const folders = useQuery({ queryKey: ["folders", activeMailboxId], queryFn: () => api.folders(activeMailboxId), enabled: !!activeMailboxId })
|
|
|
|
|
|
const labels = useQuery({ queryKey: ["labels", activeMailboxId], queryFn: () => api.labels(activeMailboxId), enabled: !!activeMailboxId })
|
|
|
|
|
|
const mailStats = useQuery({ queryKey: ["mail-stats", activeMailboxId], queryFn: () => api.mailStats(activeMailboxId), enabled: !!activeMailboxId })
|
2026-06-15 17:37:40 +08:00
|
|
|
|
const messages = useQuery({
|
2026-06-16 00:51:41 +08:00
|
|
|
|
queryKey: ["messages", activeMailboxId, mailView, folder, selectedLabelId, query],
|
2026-06-15 17:37:40 +08:00
|
|
|
|
queryFn: () => {
|
2026-06-16 00:51:41 +08:00
|
|
|
|
if (mailView === "starred") return api.starredMessages(query, "", activeMailboxId)
|
|
|
|
|
|
if (mailView === "label") return api.labelMessages(selectedLabelId, query, "", activeMailboxId)
|
|
|
|
|
|
return api.messages(folder, query, "", activeMailboxId)
|
2026-06-15 17:37:40 +08:00
|
|
|
|
},
|
2026-06-16 00:51:41 +08:00
|
|
|
|
enabled: !!activeMailboxId && (mailView !== "label" || !!selectedLabelId),
|
2026-06-15 17:37:40 +08:00
|
|
|
|
})
|
2026-06-15 21:50:44 +08:00
|
|
|
|
const detail = useQuery({ queryKey: ["message", selectedId], queryFn: () => api.message(selectedId!, { markRead: false }), enabled: !!selectedId })
|
|
|
|
|
|
function updateCachedMessage(id: string, patch: Partial<MailMessage>) {
|
|
|
|
|
|
qc.setQueryData(["message", id], (current: MailMessage | undefined) => current ? { ...current, ...patch } : current)
|
|
|
|
|
|
qc.setQueriesData({ queryKey: ["messages"] }, (current: { items?: MailMessage[] } | undefined) => {
|
|
|
|
|
|
if (!current?.items) return current
|
|
|
|
|
|
return { ...current, items: current.items.map((message) => message.id === id ? { ...message, ...patch } : message) }
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
const star = useMutation({
|
|
|
|
|
|
mutationFn: ({ id, starred }: { id: string; starred: boolean }) => api.star(id, starred),
|
|
|
|
|
|
onMutate: ({ id, starred }) => updateCachedMessage(id, { isStarred: starred }),
|
|
|
|
|
|
onSuccess: async (_, variables) => {
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["messages"] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["message", variables.id] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["mail-stats"] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["labels"] })
|
|
|
|
|
|
},
|
|
|
|
|
|
onError: (error) => toast({ title: "操作失败", description: error.message }),
|
|
|
|
|
|
})
|
|
|
|
|
|
const markRead = useMutation({
|
|
|
|
|
|
mutationFn: ({ id, read }: { id: string; read: boolean }) => api.markRead(id, read),
|
|
|
|
|
|
onMutate: ({ id, read }) => updateCachedMessage(id, { isRead: read }),
|
|
|
|
|
|
onSuccess: async (_, variables) => {
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["messages"] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["message", variables.id] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["folders"] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["mail-stats"] })
|
|
|
|
|
|
},
|
|
|
|
|
|
onError: (error) => toast({ title: "操作失败", description: error.message }),
|
|
|
|
|
|
})
|
2026-06-15 17:37:40 +08:00
|
|
|
|
const addLabel = useMutation({
|
|
|
|
|
|
mutationFn: ({ id, label }: { id: string; label: MailLabel }) => api.addLabel(id, { name: label.name, color: label.color }),
|
|
|
|
|
|
onSuccess: async (data) => {
|
|
|
|
|
|
if (selectedId) qc.setQueryData(["message", selectedId], (current: MailMessage | undefined) => current ? { ...current, labels: data.labels } : current)
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["messages"] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["labels"] })
|
|
|
|
|
|
},
|
|
|
|
|
|
onError: (error) => toast({ title: "添加标签失败", description: error.message }),
|
|
|
|
|
|
})
|
|
|
|
|
|
const removeLabel = useMutation({
|
|
|
|
|
|
mutationFn: ({ id, labelId }: { id: string; labelId: string }) => api.removeLabel(id, labelId),
|
|
|
|
|
|
onSuccess: async (data) => {
|
|
|
|
|
|
if (selectedId) qc.setQueryData(["message", selectedId], (current: MailMessage | undefined) => current ? { ...current, labels: data.labels } : current)
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["messages"] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["labels"] })
|
|
|
|
|
|
},
|
|
|
|
|
|
onError: (error) => toast({ title: "移除标签失败", description: error.message }),
|
|
|
|
|
|
})
|
|
|
|
|
|
const createLabel = useMutation({
|
|
|
|
|
|
mutationFn: (name: string) => api.createLabel({ mailboxId: selectedMailboxId, name }),
|
|
|
|
|
|
onSuccess: async () => {
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["labels"] })
|
|
|
|
|
|
toast({ title: "标签已创建" })
|
|
|
|
|
|
},
|
|
|
|
|
|
onError: (error) => toast({ title: "创建标签失败", description: error.message }),
|
|
|
|
|
|
})
|
|
|
|
|
|
const del = useMutation({ mutationFn: (id: string) => api.delete(id), onSuccess: async () => { setSelectedId(null); await qc.invalidateQueries({ queryKey: ["messages"] }); await qc.invalidateQueries({ queryKey: ["folders"] }); await qc.invalidateQueries({ queryKey: ["mail-stats"] }); await qc.invalidateQueries({ queryKey: ["labels"] }); toast({ title: "已删除" }) } })
|
|
|
|
|
|
const move = useMutation({ mutationFn: ({ id, folder }: { id: string; folder: string }) => api.move(id, folder), onSuccess: async () => { setSelectedId(null); await qc.invalidateQueries({ queryKey: ["messages"] }); await qc.invalidateQueries({ queryKey: ["folders"] }); await qc.invalidateQueries({ queryKey: ["mail-stats"] }); await qc.invalidateQueries({ queryKey: ["labels"] }); toast({ title: "已移动" }) } })
|
2026-06-14 01:07:48 +08:00
|
|
|
|
const markAllRead = useMutation({
|
|
|
|
|
|
mutationFn: async (items: MailMessage[]) => {
|
|
|
|
|
|
const unread = items.filter((message) => !message.isRead)
|
|
|
|
|
|
await Promise.all(unread.map((message) => api.markRead(message.id, true)))
|
|
|
|
|
|
return unread.length
|
|
|
|
|
|
},
|
|
|
|
|
|
onSuccess: async (count) => {
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["messages"] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["folders"] })
|
2026-06-15 17:37:40 +08:00
|
|
|
|
await qc.invalidateQueries({ queryKey: ["mail-stats"] })
|
|
|
|
|
|
await qc.invalidateQueries({ queryKey: ["labels"] })
|
2026-06-14 01:07:48 +08:00
|
|
|
|
toast({ title: count > 0 ? `已标记 ${count} 封邮件为已读` : "当前没有未读邮件" })
|
|
|
|
|
|
},
|
|
|
|
|
|
onError: (error) => toast({ title: "操作失败", description: error.message }),
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
2026-06-16 00:51:41 +08:00
|
|
|
|
if (!mailboxList.isSuccess) return
|
2026-06-14 01:07:48 +08:00
|
|
|
|
const items = mailboxList.data?.items || []
|
2026-06-16 00:51:41 +08:00
|
|
|
|
if (items.length === 0) {
|
|
|
|
|
|
if (selectedMailboxId) {
|
|
|
|
|
|
setSelectedMailboxId("")
|
|
|
|
|
|
setSelectedId(null)
|
|
|
|
|
|
}
|
|
|
|
|
|
localStorage.removeItem("lanqin:selected-mailbox")
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-06-14 01:07:48 +08:00
|
|
|
|
if (!selectedMailboxId || !items.some((item) => item.id === selectedMailboxId)) {
|
|
|
|
|
|
setSelectedMailboxId(items[0].id)
|
|
|
|
|
|
}
|
2026-06-16 00:51:41 +08:00
|
|
|
|
}, [mailboxList.isSuccess, mailboxList.data?.items, selectedMailboxId])
|
2026-06-14 01:07:48 +08:00
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
if (selectedMailboxId) localStorage.setItem("lanqin:selected-mailbox", selectedMailboxId)
|
2026-06-16 00:51:41 +08:00
|
|
|
|
else localStorage.removeItem("lanqin:selected-mailbox")
|
2026-06-14 01:07:48 +08:00
|
|
|
|
}, [selectedMailboxId])
|
|
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
2026-06-15 17:37:40 +08:00
|
|
|
|
setSelectedId(null)
|
|
|
|
|
|
setMailFilter("all")
|
|
|
|
|
|
}, [mailView])
|
2026-06-14 01:07:48 +08:00
|
|
|
|
|
2026-06-15 21:50:44 +08:00
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
setCompactSelectedIds([])
|
|
|
|
|
|
}, [selectedMailboxId, mailView, folder, selectedLabelId, query, displayMode])
|
|
|
|
|
|
|
2026-06-14 01:07:48 +08:00
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
applyTheme(darkMode, themeMountedRef.current)
|
|
|
|
|
|
themeMountedRef.current = true
|
|
|
|
|
|
}, [darkMode])
|
|
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
const events = new EventSource("/api/events", { withCredentials: true })
|
2026-06-15 17:37:40 +08:00
|
|
|
|
events.addEventListener("sync", () => {
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["folders"] })
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["mail-stats"] })
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["labels"] })
|
|
|
|
|
|
})
|
2026-06-14 01:07:48 +08:00
|
|
|
|
return () => events.close()
|
|
|
|
|
|
}, [qc])
|
|
|
|
|
|
|
2026-06-15 00:37:43 +08:00
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
if (!publicSettings.data?.mailAutoRefresh) return
|
|
|
|
|
|
const interval = Math.max(publicSettings.data.mailRefreshMs || 30000, 5000)
|
|
|
|
|
|
const timer = window.setInterval(() => {
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["messages"] })
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["folders"] })
|
2026-06-15 17:37:40 +08:00
|
|
|
|
qc.invalidateQueries({ queryKey: ["mail-stats"] })
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["labels"] })
|
2026-06-15 00:37:43 +08:00
|
|
|
|
}, interval)
|
|
|
|
|
|
return () => window.clearInterval(timer)
|
|
|
|
|
|
}, [publicSettings.data?.mailAutoRefresh, publicSettings.data?.mailRefreshMs, qc])
|
|
|
|
|
|
|
2026-06-14 01:07:48 +08:00
|
|
|
|
const selected = detail.data
|
|
|
|
|
|
const allMessages = messages.data?.items || []
|
|
|
|
|
|
const visibleMessages = allMessages.filter((message) => {
|
|
|
|
|
|
if (mailFilter === "unread") return !message.isRead
|
|
|
|
|
|
if (mailFilter === "starred") return message.isStarred
|
|
|
|
|
|
if (mailFilter === "attachments") return message.hasAttachments
|
|
|
|
|
|
return true
|
|
|
|
|
|
})
|
|
|
|
|
|
const unreadCount = allMessages.filter((message) => !message.isRead).length
|
2026-06-15 17:37:40 +08:00
|
|
|
|
const starredCount = mailStats.data?.starredMessages ?? (mailView === "starred" ? allMessages.length : 0)
|
|
|
|
|
|
const mailMenuItems = buildMailMenuItems(folders.data?.items || [], starredCount)
|
|
|
|
|
|
const labelItems = labels.data?.items || []
|
|
|
|
|
|
const selectedLabel = labelItems.find((item) => item.id === selectedLabelId)
|
|
|
|
|
|
const viewTitle = mailView === "starred" ? "星标邮件" : mailView === "label" ? selectedLabel?.name || "标签" : folderLabels[folder] || folder
|
|
|
|
|
|
const emptyMessage = allMessages.length === 0 ? (mailView === "starred" ? "暂无星标邮件" : mailView === "label" ? "当前标签没有邮件" : "当前文件夹没有邮件") : "当前筛选条件下没有邮件"
|
2026-06-15 21:50:44 +08:00
|
|
|
|
const visibleMessageIds = visibleMessages.map((message) => message.id)
|
|
|
|
|
|
const selectedCountOnPage = compactSelectedIds.filter((id) => visibleMessageIds.includes(id)).length
|
|
|
|
|
|
const compactAllSelected = visibleMessageIds.length > 0 && selectedCountOnPage === visibleMessageIds.length
|
|
|
|
|
|
const compactSomeSelected = selectedCountOnPage > 0 && !compactAllSelected
|
|
|
|
|
|
function toggleCompactSelectAll(checked: boolean) {
|
|
|
|
|
|
setCompactSelectedIds(checked ? visibleMessageIds : [])
|
|
|
|
|
|
}
|
|
|
|
|
|
function toggleCompactSelect(messageId: string, checked: boolean) {
|
|
|
|
|
|
setCompactSelectedIds((ids) => checked ? Array.from(new Set([...ids, messageId])) : ids.filter((id) => id !== messageId))
|
|
|
|
|
|
}
|
|
|
|
|
|
async function refreshMailData() {
|
|
|
|
|
|
await Promise.all([
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["messages"] }),
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["folders"] }),
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["mail-stats"] }),
|
|
|
|
|
|
qc.invalidateQueries({ queryKey: ["labels"] }),
|
|
|
|
|
|
])
|
|
|
|
|
|
}
|
|
|
|
|
|
async function runBulkAction(action: BulkAction) {
|
|
|
|
|
|
const ids = compactSelectedIds.filter((id) => visibleMessageIds.includes(id))
|
|
|
|
|
|
if (ids.length === 0) return
|
|
|
|
|
|
setBulkPending(true)
|
|
|
|
|
|
try {
|
|
|
|
|
|
if (action === "read" || action === "unread") {
|
|
|
|
|
|
const read = action === "read"
|
|
|
|
|
|
await Promise.all(ids.map((id) => api.markRead(id, read)))
|
|
|
|
|
|
} else if (action === "star" || action === "unstar") {
|
|
|
|
|
|
const starred = action === "star"
|
|
|
|
|
|
await Promise.all(ids.map((id) => api.star(id, starred)))
|
|
|
|
|
|
} else if (action === "delete") {
|
|
|
|
|
|
await Promise.all(ids.map((id) => api.delete(id)))
|
|
|
|
|
|
} else {
|
|
|
|
|
|
const target = action === "archive" ? "Archive" : action === "trash" ? "Trash" : "Spam"
|
|
|
|
|
|
await Promise.all(ids.map((id) => api.move(id, target)))
|
|
|
|
|
|
}
|
|
|
|
|
|
if (selectedId && ids.includes(selectedId)) setSelectedId(null)
|
|
|
|
|
|
setCompactSelectedIds([])
|
|
|
|
|
|
await refreshMailData()
|
|
|
|
|
|
toast({ title: `已处理 ${ids.length} 封邮件` })
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
toast({ title: "批量操作失败", description: error instanceof Error ? error.message : "请稍后重试" })
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setBulkPending(false)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-06-14 01:07:48 +08:00
|
|
|
|
function openCompose(draft?: ComposeDraft) { setComposeDraft(draft || { key: `new-${Date.now()}` }); setComposeOpen(true) }
|
|
|
|
|
|
function openReply(message: MailMessage) { openCompose({ key: `reply-${message.id}-${Date.now()}`, to: message.from, subject: withPrefix(message.subject, "Re:"), text: quoteMessage(message) }) }
|
|
|
|
|
|
function openForward(message: MailMessage) { openCompose({ key: `forward-${message.id}-${Date.now()}`, subject: withPrefix(message.subject, "Fwd:"), text: quoteMessage(message) }) }
|
|
|
|
|
|
function switchMailbox(mailboxId: string) {
|
|
|
|
|
|
setSelectedMailboxId(mailboxId)
|
|
|
|
|
|
setFolder("Inbox")
|
2026-06-15 17:37:40 +08:00
|
|
|
|
setMailView("folder")
|
|
|
|
|
|
setSelectedLabelId("")
|
|
|
|
|
|
setSelectedId(null)
|
|
|
|
|
|
setMailFilter("all")
|
|
|
|
|
|
}
|
|
|
|
|
|
function openFolder(nextFolder: string) {
|
|
|
|
|
|
setFolder(nextFolder)
|
|
|
|
|
|
setMailView("folder")
|
|
|
|
|
|
setSelectedLabelId("")
|
|
|
|
|
|
setSelectedId(null)
|
|
|
|
|
|
}
|
|
|
|
|
|
function openStarred() {
|
|
|
|
|
|
setMailView("starred")
|
|
|
|
|
|
setSelectedLabelId("")
|
|
|
|
|
|
setSelectedId(null)
|
|
|
|
|
|
setMailFilter("all")
|
|
|
|
|
|
}
|
|
|
|
|
|
function openLabel(labelId: string) {
|
|
|
|
|
|
setSelectedLabelId(labelId)
|
|
|
|
|
|
setMailView("label")
|
2026-06-14 01:07:48 +08:00
|
|
|
|
setSelectedId(null)
|
|
|
|
|
|
setMailFilter("all")
|
|
|
|
|
|
}
|
2026-06-15 21:50:44 +08:00
|
|
|
|
function openMessage(messageId: string | null) {
|
|
|
|
|
|
setSelectedId(messageId)
|
|
|
|
|
|
if (!messageId) return
|
|
|
|
|
|
const message = allMessages.find((item) => item.id === messageId)
|
|
|
|
|
|
if (message && !message.isRead) {
|
|
|
|
|
|
markRead.mutate({ id: message.id, read: true })
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
async function refreshMail() {
|
|
|
|
|
|
setRefreshing(true)
|
|
|
|
|
|
try {
|
|
|
|
|
|
await refreshMailData()
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setRefreshing(false)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-06-14 01:07:48 +08:00
|
|
|
|
async function copyCurrentMailbox() {
|
|
|
|
|
|
if (!selectedMailbox?.address) return
|
|
|
|
|
|
await navigator.clipboard.writeText(selectedMailbox.address)
|
|
|
|
|
|
toast({ title: "邮箱地址已复制" })
|
|
|
|
|
|
}
|
|
|
|
|
|
function openSettings() {
|
|
|
|
|
|
navigate("/profile")
|
|
|
|
|
|
}
|
|
|
|
|
|
function toggleSidebar() {
|
|
|
|
|
|
if (sidebarCollapsed) {
|
|
|
|
|
|
sidebarPanelRef.current?.expand(14)
|
|
|
|
|
|
setSidebarCollapsed(false)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
sidebarPanelRef.current?.collapse()
|
|
|
|
|
|
setSidebarCollapsed(true)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="h-svh bg-background">
|
|
|
|
|
|
<SidebarProvider className="h-full min-h-0 w-full">
|
|
|
|
|
|
<ResizablePanelGroup direction="horizontal" className="h-full min-h-0 w-full">
|
|
|
|
|
|
<ResizablePanel ref={sidebarPanelRef} collapsible collapsedSize={4} defaultSize={15} minSize={11} maxSize={24} onCollapse={() => setSidebarCollapsed(true)} onExpand={() => setSidebarCollapsed(false)}>
|
|
|
|
|
|
<Sidebar collapsible="none" className="h-full w-full border-r bg-sidebar">
|
|
|
|
|
|
<SidebarHeader className={cn("border-b py-3", sidebarCollapsed ? "px-2" : "px-3")}>
|
|
|
|
|
|
<AccountHeader
|
|
|
|
|
|
collapsed={sidebarCollapsed}
|
|
|
|
|
|
name={me.data?.user.displayName || selectedMailbox?.address || "LanQin"}
|
|
|
|
|
|
email={me.data?.user.email || selectedMailbox?.address}
|
|
|
|
|
|
darkMode={darkMode}
|
|
|
|
|
|
onToggleTheme={() => setDarkMode((value) => !value)}
|
|
|
|
|
|
onSettings={openSettings}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<div className={cn("mt-2 flex gap-2", sidebarCollapsed && "justify-center")}>
|
|
|
|
|
|
<MailboxSwitcher
|
|
|
|
|
|
collapsed={sidebarCollapsed}
|
|
|
|
|
|
mailboxes={mailboxList.data?.items || []}
|
|
|
|
|
|
selectedMailbox={selectedMailbox}
|
|
|
|
|
|
onSelect={switchMailbox}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{!sidebarCollapsed && (
|
|
|
|
|
|
<Button type="button" variant="outline" size="icon" className="h-9 w-9 shrink-0 rounded-md" onClick={copyCurrentMailbox} disabled={!selectedMailbox}>
|
|
|
|
|
|
<Copy className="h-4 w-4" />
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<Button className={cn("mt-2 h-10 w-full rounded-md text-sm", sidebarCollapsed && "px-0")} size={sidebarCollapsed ? "icon" : "default"} onClick={() => openCompose()}>
|
|
|
|
|
|
<PencilLine className="h-4 w-4" />
|
|
|
|
|
|
{!sidebarCollapsed && <span>写邮件</span>}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</SidebarHeader>
|
|
|
|
|
|
<SidebarContent>
|
|
|
|
|
|
<SidebarGroup>
|
|
|
|
|
|
{!sidebarCollapsed && <SidebarGroupLabel>邮件夹</SidebarGroupLabel>}
|
|
|
|
|
|
<SidebarGroupContent>
|
|
|
|
|
|
<SidebarMenu>
|
2026-06-15 17:37:40 +08:00
|
|
|
|
{mailMenuItems.map((item) => (
|
|
|
|
|
|
<SidebarMenuItem key={item.key}>
|
|
|
|
|
|
<SidebarMenuButton
|
|
|
|
|
|
isActive={item.type === "starred" ? mailView === "starred" : mailView === "folder" && folder === item.folderName}
|
|
|
|
|
|
className={cn(sidebarCollapsed && "justify-center px-0")}
|
|
|
|
|
|
onClick={() => item.type === "starred" ? openStarred() : openFolder(item.folderName)}
|
|
|
|
|
|
>
|
|
|
|
|
|
{item.icon}
|
|
|
|
|
|
{!sidebarCollapsed && <span>{item.label}</span>}
|
|
|
|
|
|
{!sidebarCollapsed && item.count > 0 && <Badge variant="secondary" className="ml-auto">{item.count}</Badge>}
|
2026-06-14 01:07:48 +08:00
|
|
|
|
</SidebarMenuButton>
|
|
|
|
|
|
</SidebarMenuItem>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</SidebarMenu>
|
|
|
|
|
|
{folders.isLoading && <FolderSkeleton />}
|
|
|
|
|
|
</SidebarGroupContent>
|
|
|
|
|
|
</SidebarGroup>
|
2026-06-15 17:37:40 +08:00
|
|
|
|
<SidebarGroup>
|
|
|
|
|
|
{!sidebarCollapsed && <SidebarGroupLabel>标签</SidebarGroupLabel>}
|
|
|
|
|
|
<SidebarGroupContent>
|
|
|
|
|
|
<SidebarMenu>
|
|
|
|
|
|
{labelItems.map((label) => (
|
|
|
|
|
|
<SidebarMenuItem key={label.id}>
|
|
|
|
|
|
<SidebarMenuButton isActive={mailView === "label" && selectedLabelId === label.id} className={cn(sidebarCollapsed && "justify-center px-0")} onClick={() => openLabel(label.id)}>
|
|
|
|
|
|
<Tag className="h-4 w-4" style={{ color: label.color }} />
|
|
|
|
|
|
{!sidebarCollapsed && <span>{label.name}</span>}
|
|
|
|
|
|
{!sidebarCollapsed && !!label.messageCount && <Badge variant="secondary" className="ml-auto">{label.messageCount}</Badge>}
|
|
|
|
|
|
</SidebarMenuButton>
|
|
|
|
|
|
</SidebarMenuItem>
|
|
|
|
|
|
))}
|
|
|
|
|
|
{!sidebarCollapsed && !labels.isLoading && labelItems.length === 0 && <div className="px-2 py-1 text-xs text-muted-foreground">暂无标签</div>}
|
|
|
|
|
|
<SidebarMenuItem>
|
|
|
|
|
|
<NewLabelButton collapsed={sidebarCollapsed} pending={createLabel.isPending} onCreate={(name) => createLabel.mutate(name)} />
|
|
|
|
|
|
</SidebarMenuItem>
|
|
|
|
|
|
</SidebarMenu>
|
|
|
|
|
|
{labels.isLoading && <FolderSkeleton />}
|
|
|
|
|
|
</SidebarGroupContent>
|
|
|
|
|
|
</SidebarGroup>
|
2026-06-14 01:07:48 +08:00
|
|
|
|
</SidebarContent>
|
|
|
|
|
|
<div className={cn("mt-auto border-t p-2", sidebarCollapsed ? "flex justify-center" : "")}>
|
|
|
|
|
|
<Button type="button" variant="ghost" size={sidebarCollapsed ? "icon" : "sm"} className={cn(!sidebarCollapsed && "w-full justify-start")} onClick={toggleSidebar}>
|
|
|
|
|
|
{sidebarCollapsed ? <PanelLeftOpen className="h-4 w-4" /> : <PanelLeftClose className="h-4 w-4" />}
|
|
|
|
|
|
{!sidebarCollapsed && <span>收起侧栏</span>}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Sidebar>
|
|
|
|
|
|
</ResizablePanel>
|
|
|
|
|
|
<ResizableHandle withHandle />
|
|
|
|
|
|
|
|
|
|
|
|
<ResizablePanel defaultSize={85} minSize={60}>
|
|
|
|
|
|
<section className="flex h-full min-h-0 flex-col">
|
|
|
|
|
|
<header className="flex h-16 shrink-0 items-center justify-between gap-3 border-b px-5">
|
|
|
|
|
|
<div className="flex items-center gap-2">
|
2026-06-15 21:50:44 +08:00
|
|
|
|
<Button size="icon" variant="ghost" onClick={refreshMail} disabled={refreshing} className={cn("transition-all", refreshing && "bg-primary/5 text-primary")}><RefreshCcw className={cn("h-4 w-4", refreshing && "animate-spin")} /></Button>
|
2026-06-14 01:07:48 +08:00
|
|
|
|
<Button variant="outline" size="sm" disabled={markAllRead.isPending || unreadCount === 0} onClick={() => markAllRead.mutate(allMessages)}><MailCheck className="h-4 w-4" />全部已读</Button>
|
|
|
|
|
|
<DropdownMenu>
|
|
|
|
|
|
<DropdownMenuTrigger asChild>
|
|
|
|
|
|
<Button variant="outline" size="sm"><SlidersHorizontal className="h-4 w-4" />{filterLabels[mailFilter]}</Button>
|
|
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
|
|
<DropdownMenuContent align="start">
|
|
|
|
|
|
{(Object.keys(filterLabels) as MailFilter[]).map((value) => (
|
|
|
|
|
|
<DropdownMenuItem key={value} onSelect={() => setMailFilter(value)}>
|
|
|
|
|
|
{filterLabels[value]}
|
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</DropdownMenuContent>
|
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="relative w-full max-w-md">
|
|
|
|
|
|
<Search className="absolute left-3 top-2.5 h-4 w-4 text-muted-foreground" />
|
|
|
|
|
|
<Input value={query} onChange={(e) => setQuery(e.target.value)} placeholder="搜索邮件" className="pl-9" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</header>
|
|
|
|
|
|
|
2026-06-15 21:50:44 +08:00
|
|
|
|
{displayMode === "compact" ? (
|
|
|
|
|
|
<CompactMailView
|
|
|
|
|
|
title={viewTitle}
|
|
|
|
|
|
icon={mailView === "label" && selectedLabel ? <Tag className="h-4 w-4" style={{ color: selectedLabel.color }} /> : undefined}
|
|
|
|
|
|
messages={visibleMessages}
|
|
|
|
|
|
total={allMessages.length}
|
|
|
|
|
|
selectedIds={compactSelectedIds}
|
|
|
|
|
|
allSelected={compactAllSelected}
|
|
|
|
|
|
someSelected={compactSomeSelected}
|
|
|
|
|
|
loading={messages.isLoading}
|
|
|
|
|
|
emptyMessage={emptyMessage}
|
|
|
|
|
|
selectedId={selectedId}
|
|
|
|
|
|
selected={selected}
|
|
|
|
|
|
detailLoading={detail.isLoading}
|
|
|
|
|
|
labels={labelItems}
|
|
|
|
|
|
labelPending={addLabel.isPending || removeLabel.isPending}
|
|
|
|
|
|
onSelect={openMessage}
|
|
|
|
|
|
onSelectAll={toggleCompactSelectAll}
|
|
|
|
|
|
onToggleSelected={toggleCompactSelect}
|
|
|
|
|
|
onCloseReader={() => setSelectedId(null)}
|
|
|
|
|
|
onStar={(message) => star.mutate({ id: message.id, starred: !message.isStarred })}
|
|
|
|
|
|
onReply={openReply}
|
|
|
|
|
|
onForward={openForward}
|
|
|
|
|
|
onArchive={(message) => move.mutate({ id: message.id, folder: message.folder === "Archive" ? "Inbox" : "Archive" })}
|
|
|
|
|
|
onDelete={(message) => del.mutate(message.id)}
|
|
|
|
|
|
onToggleRead={(message) => markRead.mutate({ id: message.id, read: !message.isRead })}
|
|
|
|
|
|
onAddLabel={(message, label) => addLabel.mutate({ id: message.id, label })}
|
|
|
|
|
|
onRemoveLabel={(message, labelId) => removeLabel.mutate({ id: message.id, labelId })}
|
|
|
|
|
|
bulkPending={bulkPending}
|
|
|
|
|
|
onBulkAction={runBulkAction}
|
|
|
|
|
|
/>
|
|
|
|
|
|
) : (
|
2026-06-14 01:07:48 +08:00
|
|
|
|
<ResizablePanelGroup direction="horizontal" className="min-h-0 flex-1">
|
|
|
|
|
|
<ResizablePanel defaultSize={32} minSize={24} maxSize={44}>
|
|
|
|
|
|
<div className="flex h-full min-h-0 flex-col">
|
|
|
|
|
|
<div className="flex h-14 shrink-0 items-center justify-between border-b px-5">
|
2026-06-15 21:50:44 +08:00
|
|
|
|
<div className="flex min-w-0 items-center gap-3">
|
|
|
|
|
|
<Checkbox aria-label="选择当前页邮件" checked={compactAllSelected ? true : compactSomeSelected ? "indeterminate" : false} onCheckedChange={(value) => toggleCompactSelectAll(value === true)} />
|
|
|
|
|
|
<div className="min-w-0">
|
|
|
|
|
|
<div className="flex items-center gap-2 text-sm font-semibold">{mailView === "label" && selectedLabel && <Tag className="h-4 w-4" style={{ color: selectedLabel.color }} />}{viewTitle}</div>
|
|
|
|
|
|
<div className="text-xs text-muted-foreground">{selectedCountOnPage > 0 ? `已选 ${selectedCountOnPage} 封` : `${visibleMessages.length} / ${allMessages.length} 封邮件`}</div>
|
|
|
|
|
|
</div>
|
2026-06-14 01:07:48 +08:00
|
|
|
|
</div>
|
2026-06-15 21:50:44 +08:00
|
|
|
|
{selectedCountOnPage > 0 && <BulkActionMenu pending={bulkPending} onAction={runBulkAction} />}
|
2026-06-14 01:07:48 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<ScrollArea className="min-h-0 flex-1">
|
|
|
|
|
|
{messages.isLoading && <MessageSkeleton />}
|
2026-06-15 21:50:44 +08:00
|
|
|
|
{visibleMessages.map((m) => <MessageRow key={m.id} message={m} active={selectedId === m.id} checked={compactSelectedIds.includes(m.id)} onCheckedChange={(checked) => toggleCompactSelect(m.id, checked)} onClick={() => openMessage(m.id)} onStar={() => star.mutate({ id: m.id, starred: !m.isStarred })} />)}
|
2026-06-15 17:37:40 +08:00
|
|
|
|
{!messages.isLoading && visibleMessages.length === 0 && <div className="p-8 text-center text-sm text-muted-foreground">{emptyMessage}</div>}
|
2026-06-14 01:07:48 +08:00
|
|
|
|
</ScrollArea>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</ResizablePanel>
|
|
|
|
|
|
<ResizableHandle withHandle />
|
|
|
|
|
|
|
|
|
|
|
|
<ResizablePanel defaultSize={68} minSize={44}>
|
|
|
|
|
|
<section className="h-full min-h-0">
|
|
|
|
|
|
{!selectedId && <div className="grid h-full place-items-center text-muted-foreground">选择一封邮件阅读</div>}
|
|
|
|
|
|
{detail.isLoading && <div className="space-y-4 p-6"><Skeleton className="h-8 w-2/3" /><Skeleton className="h-4 w-1/3" /><Separator /><Skeleton className="h-40 w-full" /></div>}
|
|
|
|
|
|
{selected && <div className="flex h-full min-h-0 flex-col">
|
|
|
|
|
|
<div className="border-b p-5">
|
|
|
|
|
|
<div className="mb-4 flex items-center justify-between gap-3">
|
|
|
|
|
|
<h2 className="text-xl font-semibold">{selected.subject}</h2>
|
|
|
|
|
|
<div className="flex flex-wrap justify-end gap-2">
|
|
|
|
|
|
<Button variant="outline" size="sm" onClick={() => openReply(selected)}><Reply className="h-4 w-4" />回复</Button>
|
|
|
|
|
|
<Button variant="outline" size="sm" onClick={() => openForward(selected)}><Forward className="h-4 w-4" />转发</Button>
|
|
|
|
|
|
{selected.folder === "Archive" ? (
|
|
|
|
|
|
<Button variant="outline" size="sm" onClick={() => move.mutate({ id: selected.id, folder: "Inbox" })}>取消归档</Button>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<Button variant="outline" size="sm" onClick={() => move.mutate({ id: selected.id, folder: "Archive" })}>归档</Button>
|
|
|
|
|
|
)}
|
|
|
|
|
|
<Button variant="destructive" size="sm" onClick={() => del.mutate(selected.id)}>删除</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-06-15 21:50:44 +08:00
|
|
|
|
<div className="text-sm text-muted-foreground"><span className="font-medium text-foreground">{selected.from}</span> 发给 {selected.to.join(", ")} · {formatDateTime(selected.receivedAt)}</div>
|
2026-06-15 17:37:40 +08:00
|
|
|
|
<MessageLabels
|
|
|
|
|
|
messageLabels={selected.labels || []}
|
|
|
|
|
|
availableLabels={labelItems}
|
|
|
|
|
|
onAdd={(label) => addLabel.mutate({ id: selected.id, label })}
|
|
|
|
|
|
onRemove={(labelId) => removeLabel.mutate({ id: selected.id, labelId })}
|
|
|
|
|
|
pending={addLabel.isPending || removeLabel.isPending}
|
|
|
|
|
|
/>
|
2026-06-14 01:07:48 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<ScrollArea className="min-h-0 flex-1">
|
|
|
|
|
|
<div className="p-6">
|
|
|
|
|
|
<div className="mail-html prose max-w-none text-sm leading-7" dangerouslySetInnerHTML={{ __html: DOMPurify.sanitize(selected.bodyHtml || `<pre>${selected.bodyText || ""}</pre>`) }} />
|
|
|
|
|
|
{selected.attachments && selected.attachments.length > 0 && <div className="mt-8 rounded-lg border p-4"><div className="mb-3 font-medium">附件</div><div className="space-y-2">{selected.attachments.map((a) => <a className="flex items-center justify-between rounded-md border p-3 text-sm hover:bg-accent" href={`/api/mail/attachments/${a.id}`} key={a.id}><span className="flex items-center gap-2"><Paperclip className="h-4 w-4" />{a.filename}</span><span className="text-muted-foreground">{formatBytes(a.sizeBytes)}</span></a>)}</div></div>}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</ScrollArea>
|
|
|
|
|
|
</div>}
|
|
|
|
|
|
</section>
|
|
|
|
|
|
</ResizablePanel>
|
|
|
|
|
|
</ResizablePanelGroup>
|
2026-06-15 21:50:44 +08:00
|
|
|
|
|
|
|
|
|
|
)}
|
2026-06-14 01:07:48 +08:00
|
|
|
|
</section>
|
|
|
|
|
|
</ResizablePanel>
|
|
|
|
|
|
</ResizablePanelGroup>
|
|
|
|
|
|
</SidebarProvider>
|
|
|
|
|
|
|
2026-06-15 17:37:40 +08:00
|
|
|
|
<ComposeDialog mailbox={selectedMailbox} open={composeOpen} draft={composeDraft} onOpenChange={(open) => { setComposeOpen(open); if (!open) setComposeDraft(undefined) }} onSent={() => { setComposeOpen(false); setComposeDraft(undefined); qc.invalidateQueries({ queryKey: ["messages"] }); qc.invalidateQueries({ queryKey: ["folders"] }); qc.invalidateQueries({ queryKey: ["mail-stats"] }); qc.invalidateQueries({ queryKey: ["labels"] }) }} />
|
2026-06-14 01:07:48 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-15 17:37:40 +08:00
|
|
|
|
function buildMailMenuItems(folders: MailFolder[], starredCount: number): MailMenuItem[] {
|
|
|
|
|
|
const folderItems: MailMenuItem[] = folders.map((item) => ({
|
|
|
|
|
|
type: "folder",
|
|
|
|
|
|
key: item.id,
|
|
|
|
|
|
folderName: item.name,
|
|
|
|
|
|
label: folderLabels[item.name] || item.name,
|
|
|
|
|
|
icon: folderIcons[item.role] || <Inbox className="h-4 w-4" />,
|
|
|
|
|
|
count: item.unreadCount,
|
|
|
|
|
|
}))
|
|
|
|
|
|
const starredItem: MailMenuItem = { type: "starred", key: "starred", label: "星标邮件", icon: <Star className="h-4 w-4" />, count: starredCount }
|
|
|
|
|
|
const inboxIndex = folderItems.findIndex((item) => item.type === "folder" && item.folderName === "Inbox")
|
|
|
|
|
|
const insertAt = inboxIndex >= 0 ? inboxIndex + 1 : 0
|
|
|
|
|
|
return [...folderItems.slice(0, insertAt), starredItem, ...folderItems.slice(insertAt)]
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-14 01:07:48 +08:00
|
|
|
|
function FolderSkeleton() { return <div className="space-y-2 p-2"><Skeleton className="h-8 w-full" /><Skeleton className="h-8 w-4/5" /><Skeleton className="h-8 w-3/4" /></div> }
|
|
|
|
|
|
function MessageSkeleton() { return <div className="space-y-0">{Array.from({ length: 6 }).map((_, i) => <div className="space-y-2 border-b p-4" key={i}><Skeleton className="h-4 w-1/2" /><Skeleton className="h-4 w-4/5" /><Skeleton className="h-3 w-full" /></div>)}</div> }
|
|
|
|
|
|
|
2026-06-15 21:50:44 +08:00
|
|
|
|
type BulkAction = "read" | "unread" | "star" | "unstar" | "archive" | "trash" | "spam" | "delete"
|
|
|
|
|
|
|
|
|
|
|
|
function BulkActionMenu({ pending, onAction }: { pending: boolean; onAction: (action: BulkAction) => void }) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<DropdownMenu>
|
|
|
|
|
|
<DropdownMenuTrigger asChild>
|
|
|
|
|
|
<Button variant="outline" size="sm" disabled={pending}>
|
|
|
|
|
|
批量操作
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
|
|
<DropdownMenuContent align="end">
|
|
|
|
|
|
<DropdownMenuItem onSelect={() => onAction("read")}>标为已读</DropdownMenuItem>
|
|
|
|
|
|
<DropdownMenuItem onSelect={() => onAction("unread")}>标为未读</DropdownMenuItem>
|
|
|
|
|
|
<DropdownMenuItem onSelect={() => onAction("star")}>添加星标</DropdownMenuItem>
|
|
|
|
|
|
<DropdownMenuItem onSelect={() => onAction("unstar")}>取消星标</DropdownMenuItem>
|
|
|
|
|
|
<DropdownMenuItem onSelect={() => onAction("archive")}>归档</DropdownMenuItem>
|
|
|
|
|
|
<DropdownMenuItem onSelect={() => onAction("trash")}>移入回收站</DropdownMenuItem>
|
|
|
|
|
|
<DropdownMenuItem onSelect={() => onAction("spam")}>移入垃圾邮件</DropdownMenuItem>
|
|
|
|
|
|
<DropdownMenuItem onSelect={() => onAction("delete")} className="text-destructive">删除</DropdownMenuItem>
|
|
|
|
|
|
</DropdownMenuContent>
|
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function CompactMailView({
|
|
|
|
|
|
title,
|
|
|
|
|
|
icon,
|
|
|
|
|
|
messages,
|
|
|
|
|
|
total,
|
|
|
|
|
|
selectedIds,
|
|
|
|
|
|
allSelected,
|
|
|
|
|
|
someSelected,
|
|
|
|
|
|
loading,
|
|
|
|
|
|
emptyMessage,
|
|
|
|
|
|
selectedId,
|
|
|
|
|
|
selected,
|
|
|
|
|
|
detailLoading,
|
|
|
|
|
|
labels,
|
|
|
|
|
|
labelPending,
|
|
|
|
|
|
onSelect,
|
|
|
|
|
|
onSelectAll,
|
|
|
|
|
|
onToggleSelected,
|
|
|
|
|
|
onCloseReader,
|
|
|
|
|
|
onStar,
|
|
|
|
|
|
onReply,
|
|
|
|
|
|
onForward,
|
|
|
|
|
|
onArchive,
|
|
|
|
|
|
onDelete,
|
|
|
|
|
|
onToggleRead,
|
|
|
|
|
|
onAddLabel,
|
|
|
|
|
|
onRemoveLabel,
|
|
|
|
|
|
bulkPending,
|
|
|
|
|
|
onBulkAction,
|
|
|
|
|
|
}: {
|
|
|
|
|
|
title: string
|
|
|
|
|
|
icon?: React.ReactNode
|
|
|
|
|
|
messages: MailMessage[]
|
|
|
|
|
|
total: number
|
|
|
|
|
|
selectedIds: string[]
|
|
|
|
|
|
allSelected: boolean
|
|
|
|
|
|
someSelected: boolean
|
|
|
|
|
|
loading: boolean
|
|
|
|
|
|
emptyMessage: string
|
|
|
|
|
|
selectedId: string | null
|
|
|
|
|
|
selected?: MailMessage
|
|
|
|
|
|
detailLoading: boolean
|
|
|
|
|
|
labels: MailLabel[]
|
|
|
|
|
|
labelPending: boolean
|
|
|
|
|
|
onSelect: (id: string | null) => void
|
|
|
|
|
|
onSelectAll: (checked: boolean) => void
|
|
|
|
|
|
onToggleSelected: (id: string, checked: boolean) => void
|
|
|
|
|
|
onCloseReader: () => void
|
|
|
|
|
|
onStar: (message: MailMessage) => void
|
|
|
|
|
|
onReply: (message: MailMessage) => void
|
|
|
|
|
|
onForward: (message: MailMessage) => void
|
|
|
|
|
|
onArchive: (message: MailMessage) => void
|
|
|
|
|
|
onDelete: (message: MailMessage) => void
|
|
|
|
|
|
onToggleRead: (message: MailMessage) => void
|
|
|
|
|
|
onAddLabel: (message: MailMessage, label: MailLabel) => void
|
|
|
|
|
|
onRemoveLabel: (message: MailMessage, labelId: string) => void
|
|
|
|
|
|
bulkPending: boolean
|
|
|
|
|
|
onBulkAction: (action: BulkAction) => void
|
|
|
|
|
|
}) {
|
|
|
|
|
|
const selectedIndex = selectedId ? messages.findIndex((message) => message.id === selectedId) : -1
|
|
|
|
|
|
const previousMessage = selectedIndex > 0 ? messages[selectedIndex - 1] : undefined
|
|
|
|
|
|
const nextMessage = selectedIndex >= 0 && selectedIndex < messages.length - 1 ? messages[selectedIndex + 1] : undefined
|
|
|
|
|
|
|
|
|
|
|
|
if (selectedId) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<CompactMessageDetail
|
|
|
|
|
|
selected={selected}
|
|
|
|
|
|
loading={detailLoading}
|
|
|
|
|
|
labels={labels}
|
|
|
|
|
|
labelPending={labelPending}
|
|
|
|
|
|
previousMessage={previousMessage}
|
|
|
|
|
|
nextMessage={nextMessage}
|
|
|
|
|
|
onBack={onCloseReader}
|
|
|
|
|
|
onSelect={onSelect}
|
|
|
|
|
|
onStar={onStar}
|
|
|
|
|
|
onReply={onReply}
|
|
|
|
|
|
onForward={onForward}
|
|
|
|
|
|
onArchive={onArchive}
|
|
|
|
|
|
onDelete={onDelete}
|
|
|
|
|
|
onToggleRead={onToggleRead}
|
|
|
|
|
|
onAddLabel={onAddLabel}
|
|
|
|
|
|
onRemoveLabel={onRemoveLabel}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="flex min-h-0 flex-1 flex-col bg-background">
|
|
|
|
|
|
<div className="flex h-12 shrink-0 items-center justify-between border-b px-4">
|
|
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
|
<Checkbox aria-label="选择当前页邮件" checked={allSelected ? true : someSelected ? "indeterminate" : false} onCheckedChange={(value) => onSelectAll(value === true)} />
|
|
|
|
|
|
<div className="flex items-center gap-2 text-base font-semibold">{icon}{title}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
|
{selectedIds.length > 0 ? (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<span className="text-sm text-muted-foreground">已选 {selectedIds.length} 封</span>
|
|
|
|
|
|
<BulkActionMenu pending={bulkPending} onAction={onBulkAction} />
|
|
|
|
|
|
</>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<div className="text-sm text-muted-foreground">{messages.length} / {total} 封</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<ScrollArea className="min-h-0 flex-1">
|
|
|
|
|
|
{loading && <MessageSkeleton />}
|
|
|
|
|
|
{messages.map((message) => <CompactMessageRow key={message.id} message={message} active={selectedId === message.id} checked={selectedIds.includes(message.id)} onCheckedChange={(checked) => onToggleSelected(message.id, checked)} onClick={() => onSelect(message.id)} onStar={() => onStar(message)} />)}
|
|
|
|
|
|
{!loading && messages.length === 0 && <div className="p-8 text-center text-sm text-muted-foreground">{emptyMessage}</div>}
|
|
|
|
|
|
</ScrollArea>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function CompactMessageDetail({
|
|
|
|
|
|
selected,
|
|
|
|
|
|
loading,
|
|
|
|
|
|
labels,
|
|
|
|
|
|
labelPending,
|
|
|
|
|
|
previousMessage,
|
|
|
|
|
|
nextMessage,
|
|
|
|
|
|
onBack,
|
|
|
|
|
|
onSelect,
|
|
|
|
|
|
onStar,
|
|
|
|
|
|
onReply,
|
|
|
|
|
|
onForward,
|
|
|
|
|
|
onArchive,
|
|
|
|
|
|
onDelete,
|
|
|
|
|
|
onToggleRead,
|
|
|
|
|
|
onAddLabel,
|
|
|
|
|
|
onRemoveLabel,
|
|
|
|
|
|
}: {
|
|
|
|
|
|
selected?: MailMessage
|
|
|
|
|
|
loading: boolean
|
|
|
|
|
|
labels: MailLabel[]
|
|
|
|
|
|
labelPending: boolean
|
|
|
|
|
|
previousMessage?: MailMessage
|
|
|
|
|
|
nextMessage?: MailMessage
|
|
|
|
|
|
onBack: () => void
|
|
|
|
|
|
onSelect: (id: string | null) => void
|
|
|
|
|
|
onStar: (message: MailMessage) => void
|
|
|
|
|
|
onReply: (message: MailMessage) => void
|
|
|
|
|
|
onForward: (message: MailMessage) => void
|
|
|
|
|
|
onArchive: (message: MailMessage) => void
|
|
|
|
|
|
onDelete: (message: MailMessage) => void
|
|
|
|
|
|
onToggleRead: (message: MailMessage) => void
|
|
|
|
|
|
onAddLabel: (message: MailMessage, label: MailLabel) => void
|
|
|
|
|
|
onRemoveLabel: (message: MailMessage, labelId: string) => void
|
|
|
|
|
|
}) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="flex min-h-0 flex-1 flex-col bg-background">
|
|
|
|
|
|
<div className="flex h-14 shrink-0 items-center justify-between gap-3 border-b px-4">
|
|
|
|
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
|
|
|
|
<Button variant="outline" size="sm" onClick={onBack}><ArrowLeft className="h-4 w-4" />返回</Button>
|
|
|
|
|
|
{selected && <Button variant="outline" size="sm" onClick={() => onReply(selected)}><Reply className="h-4 w-4" />回复</Button>}
|
|
|
|
|
|
{selected && <Button variant="outline" size="sm" onClick={() => onDelete(selected)}><Trash2 className="h-4 w-4" />删除</Button>}
|
|
|
|
|
|
{selected && <Button variant="outline" size="sm" onClick={() => onForward(selected)}><Forward className="h-4 w-4" />转发</Button>}
|
|
|
|
|
|
{selected && <Button variant="outline" size="sm" onClick={() => onArchive(selected)}>{selected.folder === "Archive" ? "取消归档" : "归档"}</Button>}
|
|
|
|
|
|
{selected && <Button variant="outline" size="sm" onClick={() => onToggleRead(selected)}><MailCheck className="h-4 w-4" />{selected.isRead ? "标为未读" : "标为已读"}</Button>}
|
|
|
|
|
|
{selected && <Button variant="outline" size="sm" onClick={() => onStar(selected)}><Star className={cn("h-4 w-4", selected.isStarred && "fill-yellow-400 text-yellow-500")} />{selected.isStarred ? "取消星标" : "添加星标"}</Button>}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
|
<Button variant="ghost" size="sm" disabled={!previousMessage} onClick={() => previousMessage && onSelect(previousMessage.id)}>上一封</Button>
|
|
|
|
|
|
<Button variant="ghost" size="sm" disabled={!nextMessage} onClick={() => nextMessage && onSelect(nextMessage.id)}>下一封</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{loading && <div className="space-y-4 p-8"><Skeleton className="h-8 w-2/3" /><Skeleton className="h-4 w-1/3" /><Separator /><Skeleton className="h-64 w-full" /></div>}
|
|
|
|
|
|
{!loading && !selected && <div className="grid flex-1 place-items-center text-sm text-muted-foreground">邮件不存在</div>}
|
|
|
|
|
|
{selected && (
|
|
|
|
|
|
<ScrollArea className="min-h-0 flex-1">
|
|
|
|
|
|
<div className="w-full px-8 py-6">
|
|
|
|
|
|
<div className="space-y-5 border-b pb-5">
|
|
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
|
<h1 className="min-w-0 flex-1 truncate text-2xl font-semibold tracking-tight">{selected.subject}</h1>
|
|
|
|
|
|
<Button type="button" variant="ghost" size="icon" aria-label={selected.isStarred ? "取消星标" : "添加星标"} className="text-muted-foreground hover:text-yellow-500" onClick={() => onStar(selected)}>
|
|
|
|
|
|
<Star className={cn("h-5 w-5", selected.isStarred && "fill-yellow-400 text-yellow-500")} />
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="flex items-start justify-between gap-4">
|
|
|
|
|
|
<div className="flex min-w-0 items-start gap-3">
|
|
|
|
|
|
<Avatar className="size-10 rounded-full"><AvatarFallback className="bg-primary text-sm font-semibold text-primary-foreground">{accountInitial(selected.from)}</AvatarFallback></Avatar>
|
|
|
|
|
|
<div className="min-w-0 text-sm">
|
|
|
|
|
|
<div className="truncate font-medium text-foreground">{selected.from}</div>
|
|
|
|
|
|
<div className="truncate text-muted-foreground">收件人 {selected.to.join(", ")}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="shrink-0 text-right text-sm text-muted-foreground">{formatDateTime(selected.receivedAt)}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<MessageLabels
|
|
|
|
|
|
messageLabels={selected.labels || []}
|
|
|
|
|
|
availableLabels={labels}
|
|
|
|
|
|
onAdd={(label) => onAddLabel(selected, label)}
|
|
|
|
|
|
onRemove={(labelId) => onRemoveLabel(selected, labelId)}
|
|
|
|
|
|
pending={labelPending}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="py-8">
|
|
|
|
|
|
<div className="mail-html prose max-w-none text-sm leading-7" dangerouslySetInnerHTML={{ __html: DOMPurify.sanitize(selected.bodyHtml || `<pre>${selected.bodyText || ""}</pre>`) }} />
|
|
|
|
|
|
{selected.attachments && selected.attachments.length > 0 && <div className="mt-8 rounded-lg border p-4"><div className="mb-3 font-medium">附件</div><div className="space-y-2">{selected.attachments.map((a) => <a className="flex items-center justify-between rounded-md border p-3 text-sm hover:bg-accent" href={`/api/mail/attachments/${a.id}`} key={a.id}><span className="flex items-center gap-2"><Paperclip className="h-4 w-4" />{a.filename}</span><span className="text-muted-foreground">{formatBytes(a.sizeBytes)}</span></a>)}</div></div>}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</ScrollArea>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function CompactMessageRow({ message, active, checked, onCheckedChange, onClick, onStar }: { message: MailMessage; active: boolean; checked: boolean; onCheckedChange: (checked: boolean) => void; onClick: () => void; onStar: () => void }) {
|
|
|
|
|
|
const visibleLabels = (message.labels || []).slice(0, 2)
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div onClick={onClick} className={cn("grid cursor-pointer grid-cols-[32px_28px_minmax(140px,240px)_minmax(0,1fr)_88px_36px] items-center gap-2 border-b px-4 py-2 text-sm transition-colors hover:bg-accent/50", active && "bg-accent", !message.isRead && "font-semibold")}>
|
|
|
|
|
|
<Checkbox aria-label="选择邮件" checked={checked} onCheckedChange={(value) => onCheckedChange(value === true)} onClick={(event) => event.stopPropagation()} />
|
|
|
|
|
|
<Mail className={cn("h-4 w-4", message.isRead ? "text-muted-foreground/70" : "fill-yellow-200 text-yellow-500")} />
|
|
|
|
|
|
<div className="truncate">{message.from}</div>
|
|
|
|
|
|
<div className="flex min-w-0 items-center gap-2">
|
|
|
|
|
|
<span className="truncate font-medium">{message.subject}</span>
|
|
|
|
|
|
<span className="min-w-0 truncate text-muted-foreground">{message.snippet}</span>
|
|
|
|
|
|
{visibleLabels.map((label) => <MailLabelBadge key={label.id} label={label} compact />)}
|
|
|
|
|
|
{message.hasAttachments && <Paperclip className="h-3 w-3 shrink-0 text-muted-foreground" />}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="shrink-0 text-right text-xs text-muted-foreground">{formatDate(message.receivedAt)}</div>
|
|
|
|
|
|
<Button type="button" variant="ghost" size="icon" aria-label={message.isStarred ? "取消星标" : "添加星标"} className="h-7 w-7 text-muted-foreground hover:text-yellow-500" onClick={(event) => { event.stopPropagation(); onStar() }}>
|
|
|
|
|
|
<Star className={cn("h-4 w-4", message.isStarred && "fill-yellow-400 text-yellow-500")} />
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-15 17:37:40 +08:00
|
|
|
|
function NewLabelButton({ collapsed, pending, onCreate }: { collapsed: boolean; pending: boolean; onCreate: (name: string) => void }) {
|
|
|
|
|
|
const [editing, setEditing] = React.useState(false)
|
|
|
|
|
|
const [value, setValue] = React.useState("")
|
|
|
|
|
|
if (collapsed) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<SidebarMenuButton className="justify-center px-0" onClick={() => setEditing(true)}>
|
|
|
|
|
|
<Plus className="h-4 w-4" />
|
|
|
|
|
|
</SidebarMenuButton>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
if (editing) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<form
|
|
|
|
|
|
className="px-2 py-1"
|
|
|
|
|
|
onSubmit={(event) => {
|
|
|
|
|
|
event.preventDefault()
|
|
|
|
|
|
const name = value.trim()
|
|
|
|
|
|
if (!name) return
|
|
|
|
|
|
onCreate(name)
|
|
|
|
|
|
setValue("")
|
|
|
|
|
|
setEditing(false)
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Input autoFocus value={value} onChange={(event) => setValue(event.target.value)} onBlur={() => { if (!value.trim()) setEditing(false) }} placeholder="新建标签" disabled={pending} />
|
|
|
|
|
|
</form>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
return (
|
|
|
|
|
|
<SidebarMenuButton className="text-muted-foreground" onClick={() => setEditing(true)}>
|
|
|
|
|
|
<Plus className="h-4 w-4" />
|
|
|
|
|
|
<span>新建标签</span>
|
|
|
|
|
|
</SidebarMenuButton>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-14 01:07:48 +08:00
|
|
|
|
function AccountHeader({ collapsed, name, email, darkMode, onToggleTheme, onSettings }: { collapsed: boolean; name: string; email?: string; darkMode: boolean; onToggleTheme: () => void; onSettings: () => void }) {
|
|
|
|
|
|
const displayName = cleanAccountName(name, email)
|
|
|
|
|
|
if (collapsed) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="flex justify-center">
|
|
|
|
|
|
<Avatar className="size-8 rounded-full">
|
|
|
|
|
|
<AvatarFallback className="bg-primary text-xs font-semibold text-primary-foreground">{accountInitial(displayName, email)}</AvatarFallback>
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="flex items-center justify-between gap-2">
|
|
|
|
|
|
<div className="flex min-w-0 items-center gap-2">
|
|
|
|
|
|
<Avatar className="size-8 rounded-full">
|
|
|
|
|
|
<AvatarFallback className="bg-primary text-xs font-semibold text-primary-foreground">{accountInitial(displayName, email)}</AvatarFallback>
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
<div className="min-w-0 text-sm">
|
|
|
|
|
|
<div className="truncate text-sm font-semibold leading-5">{displayName}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="flex shrink-0 items-center gap-1">
|
|
|
|
|
|
<Button type="button" variant="ghost" size="icon" className="size-8 rounded-md text-muted-foreground" onClick={onToggleTheme}>
|
|
|
|
|
|
{darkMode ? <Sun className="h-4 w-4" /> : <Moon className="h-4 w-4" />}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button type="button" variant="ghost" size="icon" className="size-8 rounded-md text-muted-foreground" onClick={onSettings}>
|
|
|
|
|
|
<Settings className="h-4 w-4" />
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function MailboxSwitcher({ collapsed, mailboxes, selectedMailbox, onSelect }: { collapsed: boolean; mailboxes: Mailbox[]; selectedMailbox?: Mailbox; onSelect: (mailboxId: string) => void }) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<DropdownMenu>
|
|
|
|
|
|
<DropdownMenuTrigger asChild>
|
|
|
|
|
|
<Button variant="outline" className={cn("h-9 min-w-0 flex-1 justify-start gap-2 rounded-md bg-background px-2 text-left font-normal", collapsed && "w-8 flex-none justify-center px-0")}>
|
|
|
|
|
|
<Mail className="h-4 w-4 shrink-0 text-muted-foreground" />
|
|
|
|
|
|
{!collapsed && (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<span className="min-w-0 flex-1 truncate text-sm font-medium">{selectedMailbox?.address || "选择邮箱"}</span>
|
|
|
|
|
|
<ChevronsUpDown className="h-4 w-4 shrink-0 text-muted-foreground" />
|
|
|
|
|
|
</>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
|
|
<DropdownMenuContent align="start" className="w-72">
|
|
|
|
|
|
{mailboxes.length === 0 && <DropdownMenuItem disabled>没有可用邮箱</DropdownMenuItem>}
|
|
|
|
|
|
{mailboxes.map((mailbox) => (
|
|
|
|
|
|
<DropdownMenuItem key={mailbox.id} onSelect={() => onSelect(mailbox.id)} className="gap-2">
|
|
|
|
|
|
<Check className={cn("h-4 w-4", selectedMailbox?.id === mailbox.id ? "opacity-100" : "opacity-0")} />
|
|
|
|
|
|
<span className="min-w-0 flex-1 truncate font-medium">{mailbox.address}</span>
|
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</DropdownMenuContent>
|
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function cleanAccountName(name: string, email?: string) {
|
|
|
|
|
|
const value = name.trim()
|
|
|
|
|
|
if (!value || (email && value.toLowerCase() === email.toLowerCase())) return email?.split("@")[0] || "用户"
|
|
|
|
|
|
return value
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function accountInitial(name: string, email?: string) {
|
|
|
|
|
|
const source = cleanAccountName(name, email)
|
|
|
|
|
|
const first = Array.from(source.trim())[0]
|
|
|
|
|
|
return (first || "蓝").toUpperCase()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-15 21:50:44 +08:00
|
|
|
|
function MessageRow({
|
|
|
|
|
|
message,
|
|
|
|
|
|
active,
|
|
|
|
|
|
checked,
|
|
|
|
|
|
onCheckedChange,
|
|
|
|
|
|
onClick,
|
|
|
|
|
|
onStar,
|
|
|
|
|
|
}: {
|
|
|
|
|
|
message: MailMessage
|
|
|
|
|
|
active: boolean
|
|
|
|
|
|
checked: boolean
|
|
|
|
|
|
onCheckedChange: (checked: boolean) => void
|
|
|
|
|
|
onClick: () => void
|
|
|
|
|
|
onStar: () => void
|
|
|
|
|
|
}) {
|
|
|
|
|
|
const visibleLabels = (message.labels || []).slice(0, 2)
|
|
|
|
|
|
const hiddenLabelCount = Math.max((message.labels?.length || 0) - visibleLabels.length, 0)
|
2026-06-14 01:07:48 +08:00
|
|
|
|
return <div onClick={onClick} className={cn("cursor-pointer border-b p-4 transition-colors hover:bg-accent/50", active && "bg-accent", !message.isRead && "font-semibold")}>
|
2026-06-15 21:50:44 +08:00
|
|
|
|
<div className="flex gap-3">
|
|
|
|
|
|
<Checkbox
|
|
|
|
|
|
aria-label="选择邮件"
|
|
|
|
|
|
checked={checked}
|
|
|
|
|
|
onCheckedChange={(value) => onCheckedChange(value === true)}
|
|
|
|
|
|
onClick={(event) => event.stopPropagation()}
|
|
|
|
|
|
className="mt-0.5 shrink-0"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<div className="min-w-0 flex-1">
|
|
|
|
|
|
<div className="mb-1 flex items-center justify-between gap-2">
|
|
|
|
|
|
<div className="min-w-0 truncate text-sm">{message.from}</div>
|
|
|
|
|
|
<div className="flex shrink-0 items-center gap-1">
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
variant="ghost"
|
|
|
|
|
|
size="icon"
|
|
|
|
|
|
aria-label={message.isStarred ? "取消星标" : "添加星标"}
|
|
|
|
|
|
className="h-7 w-7 text-muted-foreground hover:text-yellow-500"
|
|
|
|
|
|
onClick={(e) => { e.stopPropagation(); onStar() }}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Star className={cn("h-4 w-4", message.isStarred && "fill-yellow-400 text-yellow-500")} />
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<div className="text-xs text-muted-foreground">{formatDate(message.receivedAt)}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="mb-1 flex min-w-0 items-center gap-2">
|
|
|
|
|
|
<span className="min-w-0 truncate text-sm">{message.subject}</span>
|
|
|
|
|
|
{visibleLabels.map((label) => <MailLabelBadge key={label.id} label={label} compact />)}
|
|
|
|
|
|
{hiddenLabelCount > 0 && <Badge variant="outline" className="h-5 shrink-0 rounded-md px-1.5 text-[11px] font-normal text-muted-foreground">+{hiddenLabelCount}</Badge>}
|
|
|
|
|
|
{message.hasAttachments && <Paperclip className="h-3 w-3 shrink-0 text-muted-foreground" />}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="line-clamp-2 text-xs text-muted-foreground">{message.snippet}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-06-14 01:07:48 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-15 21:50:44 +08:00
|
|
|
|
function MailLabelBadge({ label, compact }: { label: MailLabel; compact?: boolean }) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Badge
|
|
|
|
|
|
variant="outline"
|
|
|
|
|
|
className={cn("shrink-0 rounded-md font-normal", compact ? "h-5 px-1.5 text-[11px]" : "h-8 px-2 text-xs")}
|
|
|
|
|
|
style={{ borderColor: label.color, color: label.color }}
|
|
|
|
|
|
>
|
|
|
|
|
|
{label.name}
|
|
|
|
|
|
</Badge>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-15 17:37:40 +08:00
|
|
|
|
function MessageLabels({ messageLabels, availableLabels, onAdd, onRemove, pending }: { messageLabels: MailLabel[]; availableLabels: MailLabel[]; onAdd: (label: MailLabel) => void; onRemove: (labelId: string) => void; pending: boolean }) {
|
|
|
|
|
|
const activeIds = new Set(messageLabels.map((label) => label.id))
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="mt-4 space-y-2">
|
|
|
|
|
|
<div className="flex items-center gap-2 text-xs font-medium text-muted-foreground"><Tag className="h-3.5 w-3.5" />标签</div>
|
|
|
|
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
|
|
|
|
{messageLabels.map((label) => (
|
2026-06-15 21:50:44 +08:00
|
|
|
|
<Badge key={label.id} variant="outline" className="h-8 gap-1.5 rounded-md px-2 text-xs font-normal" style={{ borderColor: label.color, color: label.color }}>
|
|
|
|
|
|
<span>{label.name}</span>
|
2026-06-15 17:37:40 +08:00
|
|
|
|
<Button type="button" variant="ghost" size="icon" className="h-4 w-4 rounded-full p-0 hover:bg-black/5" onClick={() => onRemove(label.id)} disabled={pending}>
|
|
|
|
|
|
<X className="h-3 w-3" />
|
|
|
|
|
|
</Button>
|
2026-06-15 21:50:44 +08:00
|
|
|
|
</Badge>
|
2026-06-15 17:37:40 +08:00
|
|
|
|
))}
|
|
|
|
|
|
{messageLabels.length === 0 && <span className="text-xs text-muted-foreground">无标签</span>}
|
|
|
|
|
|
<DropdownMenu>
|
|
|
|
|
|
<DropdownMenuTrigger asChild>
|
|
|
|
|
|
<Button type="button" variant="outline" size="sm" disabled={pending}>
|
|
|
|
|
|
<Tag className="h-4 w-4" />管理标签
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
|
|
<DropdownMenuContent align="start" className="w-52">
|
|
|
|
|
|
{availableLabels.length === 0 && <DropdownMenuItem disabled>请先在侧栏新建标签</DropdownMenuItem>}
|
|
|
|
|
|
{availableLabels.map((label) => (
|
|
|
|
|
|
<DropdownMenuCheckboxItem
|
|
|
|
|
|
key={label.id}
|
|
|
|
|
|
checked={activeIds.has(label.id)}
|
|
|
|
|
|
onSelect={(event) => {
|
|
|
|
|
|
event.preventDefault()
|
|
|
|
|
|
activeIds.has(label.id) ? onRemove(label.id) : onAdd(label)
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<span className="mr-2 h-2.5 w-2.5 rounded-full" style={{ backgroundColor: label.color }} />
|
|
|
|
|
|
<span>{label.name}</span>
|
|
|
|
|
|
</DropdownMenuCheckboxItem>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</DropdownMenuContent>
|
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function ComposeDialog({ mailbox, open, draft, onOpenChange, onSent }: { mailbox?: Mailbox; open: boolean; draft?: ComposeDraft; onOpenChange: (v: boolean) => void; onSent: () => void }) {
|
2026-06-14 01:07:48 +08:00
|
|
|
|
const { toast } = useToast()
|
|
|
|
|
|
const [files, setFiles] = React.useState<File[]>([])
|
|
|
|
|
|
const send = useMutation({ mutationFn: api.send, onSuccess: () => { toast({ title: "发送成功" }); setFiles([]); onSent() }, onError: (e) => toast({ title: "发送失败", description: e.message }) })
|
|
|
|
|
|
async function submit(e: React.FormEvent<HTMLFormElement>) {
|
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
|
if (!mailbox) {
|
|
|
|
|
|
toast({ title: "请选择发件邮箱" })
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
const form = new FormData(e.currentTarget)
|
|
|
|
|
|
const attachments = await Promise.all(files.map(fileToAttachment))
|
|
|
|
|
|
const text = String(form.get("text") || "")
|
2026-06-15 17:37:40 +08:00
|
|
|
|
send.mutate({ mailboxId: mailbox.id, to: splitEmails(String(form.get("to") || "")), cc: splitEmails(String(form.get("cc") || "")), bcc: splitEmails(String(form.get("bcc") || "")), subject: String(form.get("subject") || ""), text, html: markdownToHtml(text), attachments })
|
|
|
|
|
|
}
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
|
|
|
|
<DialogContent className="w-[min(92vw,64rem)] max-w-none overflow-hidden p-0">
|
|
|
|
|
|
<form key={draft?.key || "new"} className="flex max-h-[90vh] flex-col" onSubmit={submit}>
|
|
|
|
|
|
<DialogHeader className="border-b px-6 py-5 text-left">
|
|
|
|
|
|
<DialogTitle>写信</DialogTitle>
|
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
|
<div className="flex-1 space-y-4 overflow-y-auto px-6 py-5">
|
|
|
|
|
|
<div className="space-y-2"><Label>发件邮箱</Label><Input value={mailbox?.address || "未选择"} readOnly /></div>
|
|
|
|
|
|
<div className="space-y-2"><Label>收件人</Label><Input name="to" placeholder="user@example.com, other@example.com" defaultValue={draft?.to || ""} required /></div>
|
|
|
|
|
|
<div className="grid grid-cols-2 gap-3"><div className="space-y-2"><Label>抄送</Label><Input name="cc" placeholder="cc1@example.com, cc2@example.com" defaultValue={draft?.cc || ""} /></div><div className="space-y-2"><Label>密送</Label><Input name="bcc" placeholder="bcc1@example.com, bcc2@example.com" defaultValue={draft?.bcc || ""} /></div></div>
|
|
|
|
|
|
<div className="space-y-2"><Label>主题</Label><Input name="subject" defaultValue={draft?.subject || ""} /></div>
|
|
|
|
|
|
<MarkdownComposer defaultValue={draft?.text || ""} />
|
|
|
|
|
|
<div className="space-y-2"><Label>附件</Label><Input type="file" multiple onChange={(e) => setFiles(Array.from(e.currentTarget.files || []))} />{files.length > 0 && <div className="text-xs text-muted-foreground">{files.map((f) => `${f.name} (${formatBytes(f.size)})`).join(",")}</div>}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<DialogFooter className="border-t bg-background px-6 py-4">
|
|
|
|
|
|
<Button type="button" variant="outline" onClick={() => onOpenChange(false)}>取消</Button>
|
|
|
|
|
|
<Button disabled={send.isPending || !mailbox}>{send.isPending ? "发送中..." : "发送"}</Button>
|
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</DialogContent>
|
|
|
|
|
|
</Dialog>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type MarkdownAction = "bold" | "italic" | "strike" | "ul" | "ol" | "quote" | "code" | "link" | "image" | "hr"
|
|
|
|
|
|
type MarkdownMode = "edit" | "split" | "preview"
|
|
|
|
|
|
|
|
|
|
|
|
function MarkdownComposer({ defaultValue }: { defaultValue: string }) {
|
|
|
|
|
|
const [value, setValue] = React.useState(defaultValue)
|
|
|
|
|
|
const [mode, setMode] = React.useState<MarkdownMode>("edit")
|
|
|
|
|
|
const textareaRef = React.useRef<HTMLTextAreaElement>(null)
|
|
|
|
|
|
const previewHtml = React.useMemo(() => markdownToHtml(value), [value])
|
|
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => setValue(defaultValue), [defaultValue])
|
|
|
|
|
|
|
|
|
|
|
|
function focusEditor() {
|
|
|
|
|
|
window.requestAnimationFrame(() => textareaRef.current?.focus())
|
2026-06-14 01:07:48 +08:00
|
|
|
|
}
|
2026-06-15 17:37:40 +08:00
|
|
|
|
function updateSelection(next: string, start: number, end: number) {
|
|
|
|
|
|
setValue(next)
|
|
|
|
|
|
window.requestAnimationFrame(() => {
|
|
|
|
|
|
const textarea = textareaRef.current
|
|
|
|
|
|
if (!textarea) return
|
|
|
|
|
|
textarea.focus()
|
|
|
|
|
|
textarea.setSelectionRange(start, end)
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
function wrap(prefix: string, suffix = prefix, placeholder = "文本") {
|
|
|
|
|
|
const textarea = textareaRef.current
|
|
|
|
|
|
if (!textarea) return
|
|
|
|
|
|
const start = textarea.selectionStart
|
|
|
|
|
|
const end = textarea.selectionEnd
|
|
|
|
|
|
const selected = value.slice(start, end) || placeholder
|
|
|
|
|
|
const next = value.slice(0, start) + prefix + selected + suffix + value.slice(end)
|
|
|
|
|
|
updateSelection(next, start + prefix.length, start + prefix.length + selected.length)
|
|
|
|
|
|
}
|
|
|
|
|
|
function prefixLines(prefix: string, ordered = false) {
|
|
|
|
|
|
const textarea = textareaRef.current
|
|
|
|
|
|
if (!textarea) return
|
|
|
|
|
|
const start = textarea.selectionStart
|
|
|
|
|
|
const end = textarea.selectionEnd
|
|
|
|
|
|
const lineStart = value.lastIndexOf("\n", start - 1) + 1
|
|
|
|
|
|
const lineEndIndex = value.indexOf("\n", end)
|
|
|
|
|
|
const lineEnd = lineEndIndex === -1 ? value.length : lineEndIndex
|
|
|
|
|
|
const block = value.slice(lineStart, lineEnd) || "列表项"
|
|
|
|
|
|
const lines = block.split("\n")
|
|
|
|
|
|
const formatted = lines.map((line, index) => `${ordered ? `${index + 1}. ` : prefix}${line || "列表项"}`).join("\n")
|
|
|
|
|
|
updateSelection(value.slice(0, lineStart) + formatted + value.slice(lineEnd), lineStart, lineStart + formatted.length)
|
|
|
|
|
|
}
|
|
|
|
|
|
function insertMarkdown(action: MarkdownAction) {
|
|
|
|
|
|
if (mode === "preview") setMode("edit")
|
|
|
|
|
|
const textarea = textareaRef.current
|
|
|
|
|
|
if (!textarea) {
|
|
|
|
|
|
focusEditor()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
switch (action) {
|
|
|
|
|
|
case "bold": wrap("**", "**", "加粗文本"); break
|
|
|
|
|
|
case "italic": wrap("_", "_", "斜体文本"); break
|
|
|
|
|
|
case "strike": wrap("~~", "~~", "删除线文本"); break
|
|
|
|
|
|
case "ul": prefixLines("- "); break
|
|
|
|
|
|
case "ol": prefixLines("", true); break
|
|
|
|
|
|
case "quote": prefixLines("> "); break
|
|
|
|
|
|
case "code": wrap("`", "`", "code"); break
|
|
|
|
|
|
case "link": wrap("[", "](https://example.com)", "链接文本"); break
|
|
|
|
|
|
case "image": wrap("", "图片描述"); break
|
|
|
|
|
|
case "hr": {
|
|
|
|
|
|
const start = textarea.selectionStart
|
|
|
|
|
|
const before = value.slice(0, start)
|
|
|
|
|
|
const after = value.slice(textarea.selectionEnd)
|
|
|
|
|
|
const prefix = before.endsWith("\n") || before === "" ? "" : "\n"
|
|
|
|
|
|
const suffix = after.startsWith("\n") || after === "" ? "" : "\n"
|
|
|
|
|
|
const insert = `${prefix}---${suffix}`
|
|
|
|
|
|
updateSelection(before + insert + after, before.length + insert.length, before.length + insert.length)
|
|
|
|
|
|
break
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
function setBlock(type: string) {
|
|
|
|
|
|
if (type === "p") return focusEditor()
|
|
|
|
|
|
const mark = type === "h2" ? "## " : "### "
|
|
|
|
|
|
prefixLines(mark)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
|
<Label>正文</Label>
|
|
|
|
|
|
<Input type="hidden" name="text" value={value} readOnly className="hidden" />
|
|
|
|
|
|
<div className="overflow-hidden rounded-md border border-input bg-background focus-within:ring-1 focus-within:ring-ring">
|
|
|
|
|
|
<div className="flex min-h-12 flex-wrap items-center gap-1 border-b bg-muted/30 px-3 py-2">
|
|
|
|
|
|
<ToolbarButton label="加粗" onClick={() => insertMarkdown("bold")}><Bold className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<ToolbarButton label="斜体" onClick={() => insertMarkdown("italic")}><Italic className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<ToolbarButton label="下划线" disabled><span className="text-base leading-none underline">U</span></ToolbarButton>
|
|
|
|
|
|
<ToolbarButton label="删除线" onClick={() => insertMarkdown("strike")}><Strikethrough className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<Separator orientation="vertical" className="mx-2 h-6" />
|
|
|
|
|
|
<Select defaultValue="p" onValueChange={setBlock}>
|
|
|
|
|
|
<SelectTrigger className="h-8 w-[96px] border-0 bg-transparent px-2 shadow-none focus:ring-0">
|
|
|
|
|
|
<SelectValue />
|
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
|
<SelectContent>
|
|
|
|
|
|
<SelectItem value="p">正文</SelectItem>
|
|
|
|
|
|
<SelectItem value="h2">标题 2</SelectItem>
|
|
|
|
|
|
<SelectItem value="h3">标题 3</SelectItem>
|
|
|
|
|
|
</SelectContent>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
<Separator orientation="vertical" className="mx-2 h-6" />
|
|
|
|
|
|
<ToolbarButton label="无序列表" onClick={() => insertMarkdown("ul")}><List className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<ToolbarButton label="有序列表" onClick={() => insertMarkdown("ol")}><ListOrdered className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<ToolbarButton label="引用" onClick={() => insertMarkdown("quote")}><Quote className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<ToolbarButton label="代码" onClick={() => insertMarkdown("code")}><Code2 className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<Separator orientation="vertical" className="mx-2 h-6" />
|
|
|
|
|
|
<ToolbarButton label="链接" onClick={() => insertMarkdown("link")}><Link className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<ToolbarButton label="图片" onClick={() => insertMarkdown("image")}><Image className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<ToolbarButton label="分隔线" onClick={() => insertMarkdown("hr")}><Minus className="h-4 w-4" /></ToolbarButton>
|
|
|
|
|
|
<div className="ml-auto flex items-center gap-2">
|
|
|
|
|
|
<Badge variant="secondary" className="h-8 gap-1.5 rounded-md bg-foreground px-2 text-xs text-background hover:bg-foreground">
|
|
|
|
|
|
<WrapText className="h-4 w-4" /> Markdown
|
|
|
|
|
|
</Badge>
|
|
|
|
|
|
<div className="flex rounded-md border bg-background p-0.5">
|
|
|
|
|
|
{(["edit", "split", "preview"] as MarkdownMode[]).map((item) => (
|
|
|
|
|
|
<Button key={item} type="button" variant={mode === item ? "secondary" : "ghost"} size="sm" className="h-7 rounded px-2 text-xs" onClick={() => setMode(item)}>
|
|
|
|
|
|
{item === "edit" ? "编辑" : item === "split" ? "分屏" : "预览"}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className={cn(mode === "split" && "grid md:grid-cols-2")}>
|
|
|
|
|
|
{mode !== "preview" && (
|
|
|
|
|
|
<Textarea
|
|
|
|
|
|
ref={textareaRef}
|
|
|
|
|
|
value={value}
|
|
|
|
|
|
onChange={(event) => setValue(event.target.value)}
|
|
|
|
|
|
placeholder="在此输入邮件内容..."
|
|
|
|
|
|
className={cn("min-h-[280px] resize-y rounded-none border-0 shadow-none focus-visible:ring-0", mode === "split" && "md:border-r")}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
{mode !== "edit" && (
|
|
|
|
|
|
<div className="mail-html min-h-[280px] overflow-y-auto p-4 text-sm leading-7" dangerouslySetInnerHTML={{ __html: previewHtml || "<p></p>" }} />
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function ToolbarButton({ label, children, onClick, disabled }: { label: string; children: React.ReactNode; onClick?: () => void; disabled?: boolean }) {
|
|
|
|
|
|
return <Button type="button" variant="ghost" size="icon" className="h-8 w-8 rounded-md text-muted-foreground hover:text-foreground" title={label} aria-label={label} onClick={onClick} disabled={disabled}>{children}</Button>
|
2026-06-14 01:07:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-15 17:37:40 +08:00
|
|
|
|
function splitEmails(s: string) { return s.split(/[;,,\s]+/).map((v) => v.trim()).filter(Boolean) }
|
|
|
|
|
|
function markdownToHtml(value: string) { return DOMPurify.sanitize(marked.parse(value, { async: false, breaks: true })) }
|
2026-06-14 01:07:48 +08:00
|
|
|
|
function withPrefix(subject: string, prefix: string) { return subject.toLowerCase().startsWith(prefix.toLowerCase()) ? subject : `${prefix} ${subject}` }
|
|
|
|
|
|
function quoteMessage(message: MailMessage) {
|
|
|
|
|
|
const body = message.bodyText || stripHtml(message.bodyHtml || message.snippet || "")
|
|
|
|
|
|
const quote = body.split("\n").map((line) => `> ${line}`).join("\n")
|
2026-06-15 21:50:44 +08:00
|
|
|
|
return `\n\n----- 原始邮件 -----\nFrom: ${message.from}\nTo: ${message.to.join(", ")}\nDate: ${formatDateTime(message.receivedAt)}\nSubject: ${message.subject}\n\n${quote}`
|
2026-06-14 01:07:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
function stripHtml(html: string) { const div = document.createElement("div"); div.innerHTML = DOMPurify.sanitize(html); return div.textContent || div.innerText || "" }
|
|
|
|
|
|
async function fileToAttachment(file: File) {
|
|
|
|
|
|
const buffer = await file.arrayBuffer()
|
|
|
|
|
|
let binary = ""
|
|
|
|
|
|
const bytes = new Uint8Array(buffer)
|
|
|
|
|
|
for (let i = 0; i < bytes.length; i++) binary += String.fromCharCode(bytes[i])
|
|
|
|
|
|
return { filename: file.name, contentType: file.type || "application/octet-stream", contentBase64: btoa(binary) }
|
|
|
|
|
|
}
|