2026-05-22 01:55:37 +08:00
|
|
|
import {
|
|
|
|
|
memo,
|
|
|
|
|
useEffect,
|
|
|
|
|
useMemo,
|
|
|
|
|
useState,
|
|
|
|
|
} from "react";
|
2026-05-19 22:42:38 +08:00
|
|
|
import {
|
|
|
|
|
Archive,
|
|
|
|
|
ArchiveRestore,
|
|
|
|
|
MoreHorizontal,
|
|
|
|
|
Pencil,
|
|
|
|
|
Pin,
|
|
|
|
|
PinOff,
|
|
|
|
|
Trash2,
|
|
|
|
|
} from "lucide-react";
|
2026-04-19 06:39:06 +00:00
|
|
|
import { useTranslation } from "react-i18next";
|
2026-04-18 18:51:53 +00:00
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
DropdownMenu,
|
|
|
|
|
DropdownMenuContent,
|
|
|
|
|
DropdownMenuItem,
|
|
|
|
|
DropdownMenuTrigger,
|
|
|
|
|
} from "@/components/ui/dropdown-menu";
|
2026-05-19 22:42:38 +08:00
|
|
|
import { deriveTitle, relativeTime } from "@/lib/format";
|
2026-04-18 18:51:53 +00:00
|
|
|
import { cn } from "@/lib/utils";
|
2026-05-19 22:42:38 +08:00
|
|
|
import type { ChatSummary, SidebarDensity, SidebarSortMode } from "@/lib/types";
|
2026-04-18 18:51:53 +00:00
|
|
|
|
2026-05-22 01:55:37 +08:00
|
|
|
const INITIAL_VISIBLE_SESSIONS = 160;
|
|
|
|
|
const VISIBLE_SESSIONS_INCREMENT = 160;
|
|
|
|
|
|
2026-04-18 18:51:53 +00:00
|
|
|
interface ChatListProps {
|
|
|
|
|
sessions: ChatSummary[];
|
|
|
|
|
activeKey: string | null;
|
|
|
|
|
onSelect: (key: string) => void;
|
|
|
|
|
onRequestDelete: (key: string, label: string) => void;
|
2026-05-19 22:42:38 +08:00
|
|
|
onTogglePin: (key: string) => void;
|
|
|
|
|
onRequestRename: (key: string, label: string) => void;
|
|
|
|
|
onToggleArchive: (key: string) => void;
|
|
|
|
|
pinnedKeys?: string[];
|
|
|
|
|
archivedKeys?: string[];
|
|
|
|
|
titleOverrides?: Record<string, string>;
|
|
|
|
|
runningChatIds?: string[];
|
|
|
|
|
completedChatIds?: string[];
|
|
|
|
|
density?: SidebarDensity;
|
|
|
|
|
showPreviews?: boolean;
|
|
|
|
|
showTimestamps?: boolean;
|
|
|
|
|
sort?: SidebarSortMode;
|
|
|
|
|
showArchived?: boolean;
|
|
|
|
|
actionMenuPortalContainer?: HTMLElement | null;
|
2026-04-18 18:51:53 +00:00
|
|
|
loading?: boolean;
|
2026-05-06 14:15:36 +00:00
|
|
|
emptyLabel?: string;
|
2026-04-18 18:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
2026-05-22 01:55:37 +08:00
|
|
|
export const ChatList = memo(function ChatList({
|
2026-04-18 18:51:53 +00:00
|
|
|
sessions,
|
|
|
|
|
activeKey,
|
|
|
|
|
onSelect,
|
|
|
|
|
onRequestDelete,
|
2026-05-19 22:42:38 +08:00
|
|
|
onTogglePin,
|
|
|
|
|
onRequestRename,
|
|
|
|
|
onToggleArchive,
|
|
|
|
|
pinnedKeys = [],
|
|
|
|
|
archivedKeys = [],
|
|
|
|
|
titleOverrides = {},
|
|
|
|
|
runningChatIds = [],
|
|
|
|
|
completedChatIds = [],
|
|
|
|
|
density = "comfortable",
|
|
|
|
|
showPreviews = false,
|
|
|
|
|
showTimestamps = false,
|
|
|
|
|
sort = "updated_desc",
|
|
|
|
|
showArchived = false,
|
|
|
|
|
actionMenuPortalContainer,
|
2026-04-18 18:51:53 +00:00
|
|
|
loading,
|
2026-05-06 14:15:36 +00:00
|
|
|
emptyLabel,
|
2026-04-18 18:51:53 +00:00
|
|
|
}: ChatListProps) {
|
2026-04-19 06:39:06 +00:00
|
|
|
const { t } = useTranslation();
|
2026-05-22 01:55:37 +08:00
|
|
|
const [visibleLimit, setVisibleLimit] = useState(INITIAL_VISIBLE_SESSIONS);
|
|
|
|
|
const labels = useMemo(() => ({
|
|
|
|
|
pinned: t("chat.groups.pinned"),
|
|
|
|
|
all: t("chat.groups.all"),
|
|
|
|
|
today: t("chat.groups.today"),
|
|
|
|
|
yesterday: t("chat.groups.yesterday"),
|
|
|
|
|
earlier: t("chat.groups.earlier"),
|
|
|
|
|
archived: t("chat.groups.archived"),
|
|
|
|
|
fallbackTitle: t("chat.newChat"),
|
|
|
|
|
}), [t]);
|
|
|
|
|
const groups = useMemo(
|
|
|
|
|
() => groupSessions(sessions, labels, {
|
|
|
|
|
pinnedKeys,
|
|
|
|
|
archivedKeys,
|
|
|
|
|
titleOverrides,
|
|
|
|
|
showArchived,
|
|
|
|
|
sort,
|
|
|
|
|
}),
|
|
|
|
|
[
|
|
|
|
|
archivedKeys,
|
|
|
|
|
labels,
|
|
|
|
|
pinnedKeys,
|
|
|
|
|
sessions,
|
|
|
|
|
showArchived,
|
|
|
|
|
sort,
|
|
|
|
|
titleOverrides,
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
const limitedGroups = useMemo(
|
|
|
|
|
() => limitGroups(groups, visibleLimit, activeKey),
|
|
|
|
|
[activeKey, groups, visibleLimit],
|
|
|
|
|
);
|
|
|
|
|
const totalSessionCount = useMemo(
|
|
|
|
|
() => groups.reduce((total, group) => total + group.sessions.length, 0),
|
|
|
|
|
[groups],
|
|
|
|
|
);
|
|
|
|
|
const visibleSessionCount = useMemo(
|
|
|
|
|
() => limitedGroups.reduce((total, group) => total + group.sessions.length, 0),
|
|
|
|
|
[limitedGroups],
|
|
|
|
|
);
|
|
|
|
|
const hiddenSessionCount = Math.max(0, totalSessionCount - visibleSessionCount);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
setVisibleLimit(INITIAL_VISIBLE_SESSIONS);
|
|
|
|
|
}, [showArchived, sort]);
|
|
|
|
|
|
2026-04-18 18:51:53 +00:00
|
|
|
if (loading && sessions.length === 0) {
|
|
|
|
|
return (
|
2026-04-19 06:39:06 +00:00
|
|
|
<div className="px-3 py-6 text-[12px] text-muted-foreground">
|
|
|
|
|
{t("chat.loading")}
|
|
|
|
|
</div>
|
2026-04-18 18:51:53 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sessions.length === 0) {
|
|
|
|
|
return (
|
2026-05-06 14:15:36 +00:00
|
|
|
<div className="px-3 py-6 text-[12px] leading-5 text-muted-foreground/80">
|
|
|
|
|
{emptyLabel ?? t("chat.noSessions")}
|
2026-04-18 18:51:53 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-19 22:42:38 +08:00
|
|
|
const pinned = new Set(pinnedKeys);
|
|
|
|
|
const archived = new Set(archivedKeys);
|
|
|
|
|
const running = new Set(runningChatIds);
|
|
|
|
|
const completed = new Set(completedChatIds);
|
|
|
|
|
const compact = density === "compact";
|
2026-05-06 14:15:36 +00:00
|
|
|
|
2026-04-18 18:51:53 +00:00
|
|
|
return (
|
2026-05-16 01:14:11 +08:00
|
|
|
<div className="h-full min-h-0 min-w-0 overflow-x-hidden overflow-y-auto overscroll-contain">
|
|
|
|
|
<div className="min-w-0 space-y-3 px-2 py-1.5">
|
2026-05-22 01:55:37 +08:00
|
|
|
{limitedGroups.map((group) => (
|
2026-05-06 14:15:36 +00:00
|
|
|
<section key={group.label} aria-label={group.label}>
|
|
|
|
|
<div className="px-2 pb-1 text-[12px] font-medium text-muted-foreground/65">
|
|
|
|
|
{group.label}
|
|
|
|
|
</div>
|
|
|
|
|
<ul className="space-y-0.5">
|
|
|
|
|
{group.sessions.map((s) => {
|
|
|
|
|
const active = s.key === activeKey;
|
2026-05-16 01:14:11 +08:00
|
|
|
const fallbackTitle = t("chat.fallbackTitle", {
|
|
|
|
|
id: s.chatId.slice(0, 6),
|
|
|
|
|
});
|
2026-05-17 23:52:50 +08:00
|
|
|
const generatedTitle = s.title?.trim() || "";
|
2026-05-19 22:42:38 +08:00
|
|
|
const title = displayTitle(s, titleOverrides, t("chat.newChat"));
|
2026-05-17 23:52:50 +08:00
|
|
|
const tooltipTitle =
|
2026-05-19 22:42:38 +08:00
|
|
|
titleOverrides[s.key]?.trim() ||
|
|
|
|
|
generatedTitle ||
|
|
|
|
|
deriveTitle(s.preview, fallbackTitle);
|
|
|
|
|
const isPinned = pinned.has(s.key);
|
|
|
|
|
const isArchived = archived.has(s.key);
|
|
|
|
|
const preview = s.preview.trim();
|
|
|
|
|
const showPreview = showPreviews && preview && preview !== title;
|
|
|
|
|
const timestamp = showTimestamps
|
|
|
|
|
? relativeTime(s.updatedAt ?? s.createdAt)
|
|
|
|
|
: "";
|
|
|
|
|
const activityState = running.has(s.chatId)
|
|
|
|
|
? "running"
|
|
|
|
|
: completed.has(s.chatId)
|
|
|
|
|
? "complete"
|
|
|
|
|
: null;
|
2026-05-06 14:15:36 +00:00
|
|
|
return (
|
2026-05-16 01:14:11 +08:00
|
|
|
<li key={s.key} className="min-w-0">
|
2026-05-06 14:15:36 +00:00
|
|
|
<div
|
|
|
|
|
className={cn(
|
2026-05-19 22:42:38 +08:00
|
|
|
"group flex min-w-0 max-w-full items-center gap-2 rounded-xl px-2 text-[13px] transition-colors",
|
|
|
|
|
compact ? "min-h-7" : "min-h-8",
|
2026-05-06 14:15:36 +00:00
|
|
|
active
|
|
|
|
|
? "bg-sidebar-accent/70 text-sidebar-accent-foreground shadow-[inset_0_0_0_1px_hsl(var(--sidebar-border)/0.28)]"
|
|
|
|
|
: "text-sidebar-foreground/82 hover:bg-sidebar-accent/50 hover:text-sidebar-foreground",
|
|
|
|
|
)}
|
2026-04-18 18:51:53 +00:00
|
|
|
>
|
2026-05-06 14:15:36 +00:00
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() => onSelect(s.key)}
|
2026-05-17 23:52:50 +08:00
|
|
|
title={tooltipTitle}
|
2026-05-19 22:42:38 +08:00
|
|
|
className={cn(
|
|
|
|
|
"min-w-0 flex-1 overflow-hidden text-left",
|
|
|
|
|
compact ? "py-1" : "py-1.5",
|
|
|
|
|
)}
|
2026-05-06 14:15:36 +00:00
|
|
|
>
|
|
|
|
|
<span className="block w-full truncate font-medium leading-5">{title}</span>
|
2026-05-19 22:42:38 +08:00
|
|
|
{showPreview ? (
|
|
|
|
|
<span className="block w-full truncate text-[11.5px] leading-4 text-muted-foreground/72">
|
|
|
|
|
{preview}
|
|
|
|
|
</span>
|
|
|
|
|
) : null}
|
|
|
|
|
{timestamp ? (
|
|
|
|
|
<span className="block w-full truncate text-[11px] leading-4 text-muted-foreground/58">
|
|
|
|
|
{timestamp}
|
|
|
|
|
</span>
|
|
|
|
|
) : null}
|
2026-05-06 14:15:36 +00:00
|
|
|
</button>
|
2026-05-19 22:42:38 +08:00
|
|
|
<SessionActivityIndicator state={activityState} />
|
2026-05-06 14:15:36 +00:00
|
|
|
<DropdownMenu modal={false}>
|
|
|
|
|
<DropdownMenuTrigger
|
|
|
|
|
className={cn(
|
2026-05-16 01:14:11 +08:00
|
|
|
"inline-flex h-6 w-6 shrink-0 items-center justify-center rounded-md text-muted-foreground/75 opacity-40 transition-opacity",
|
2026-05-06 14:15:36 +00:00
|
|
|
"hover:bg-sidebar-accent hover:text-sidebar-foreground group-hover:opacity-100",
|
|
|
|
|
"focus-visible:opacity-100",
|
|
|
|
|
active && "opacity-100",
|
|
|
|
|
)}
|
|
|
|
|
aria-label={t("chat.actions", { title })}
|
|
|
|
|
>
|
|
|
|
|
<MoreHorizontal className="h-3.5 w-3.5" />
|
|
|
|
|
</DropdownMenuTrigger>
|
|
|
|
|
<DropdownMenuContent
|
|
|
|
|
align="end"
|
2026-05-19 22:42:38 +08:00
|
|
|
portalContainer={actionMenuPortalContainer}
|
2026-05-06 14:15:36 +00:00
|
|
|
onCloseAutoFocus={(event) => event.preventDefault()}
|
|
|
|
|
>
|
2026-05-19 22:42:38 +08:00
|
|
|
<DropdownMenuItem
|
|
|
|
|
onSelect={() => onTogglePin(s.key)}
|
|
|
|
|
>
|
|
|
|
|
{isPinned ? (
|
|
|
|
|
<PinOff className="mr-2 h-4 w-4" />
|
|
|
|
|
) : (
|
|
|
|
|
<Pin className="mr-2 h-4 w-4" />
|
|
|
|
|
)}
|
|
|
|
|
{isPinned ? t("chat.unpin") : t("chat.pin")}
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
onSelect={() => onRequestRename(s.key, title)}
|
|
|
|
|
>
|
|
|
|
|
<Pencil className="mr-2 h-4 w-4" />
|
|
|
|
|
{t("chat.rename")}
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
onSelect={() => onToggleArchive(s.key)}
|
|
|
|
|
>
|
|
|
|
|
{isArchived ? (
|
|
|
|
|
<ArchiveRestore className="mr-2 h-4 w-4" />
|
|
|
|
|
) : (
|
|
|
|
|
<Archive className="mr-2 h-4 w-4" />
|
|
|
|
|
)}
|
|
|
|
|
{isArchived ? t("chat.unarchive") : t("chat.archive")}
|
|
|
|
|
</DropdownMenuItem>
|
2026-05-06 14:15:36 +00:00
|
|
|
<DropdownMenuItem
|
|
|
|
|
onSelect={() => {
|
|
|
|
|
window.setTimeout(() => onRequestDelete(s.key, title), 0);
|
|
|
|
|
}}
|
|
|
|
|
className="text-destructive focus:text-destructive"
|
|
|
|
|
>
|
|
|
|
|
<Trash2 className="mr-2 h-4 w-4" />
|
|
|
|
|
{t("chat.delete")}
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
</DropdownMenuContent>
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</ul>
|
|
|
|
|
</section>
|
|
|
|
|
))}
|
2026-05-22 01:55:37 +08:00
|
|
|
{hiddenSessionCount > 0 ? (
|
|
|
|
|
<div className="px-2 pb-2 pt-1">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() =>
|
|
|
|
|
setVisibleLimit((limit) =>
|
|
|
|
|
Math.min(totalSessionCount, limit + VISIBLE_SESSIONS_INCREMENT),
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
className="h-8 w-full rounded-full text-[12px] font-medium text-muted-foreground transition-colors hover:bg-sidebar-accent/65 hover:text-sidebar-foreground"
|
|
|
|
|
>
|
|
|
|
|
{t("chat.showMore", { count: hiddenSessionCount })}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
) : null}
|
2026-05-06 14:15:36 +00:00
|
|
|
</div>
|
2026-05-16 01:14:11 +08:00
|
|
|
</div>
|
2026-04-18 18:51:53 +00:00
|
|
|
);
|
2026-05-22 01:55:37 +08:00
|
|
|
});
|
2026-05-06 14:15:36 +00:00
|
|
|
|
2026-05-19 22:42:38 +08:00
|
|
|
function SessionActivityIndicator({
|
|
|
|
|
state,
|
|
|
|
|
}: {
|
|
|
|
|
state: "running" | "complete" | null;
|
|
|
|
|
}) {
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
|
|
if (state === "running") {
|
|
|
|
|
const label = t("chat.activity.running");
|
|
|
|
|
return (
|
|
|
|
|
<span
|
|
|
|
|
aria-label={label}
|
|
|
|
|
title={label}
|
|
|
|
|
className="grid h-4 w-4 shrink-0 place-items-center"
|
|
|
|
|
>
|
|
|
|
|
<span className="h-3 w-3 animate-spin rounded-full border border-blue-500/25 border-t-blue-500 [animation-duration:1.4s] motion-reduce:animate-none dark:border-blue-400/25 dark:border-t-blue-400" />
|
|
|
|
|
</span>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (state === "complete") {
|
|
|
|
|
const label = t("chat.activity.complete");
|
|
|
|
|
return (
|
|
|
|
|
<span
|
|
|
|
|
aria-label={label}
|
|
|
|
|
title={label}
|
|
|
|
|
className="grid h-4 w-4 shrink-0 place-items-center"
|
|
|
|
|
>
|
|
|
|
|
<span className="h-1.5 w-1.5 rounded-full bg-blue-500 shadow-[0_0_0_3px_rgba(59,130,246,0.14)] dark:bg-blue-400 dark:shadow-[0_0_0_3px_rgba(96,165,250,0.18)]" />
|
|
|
|
|
</span>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return <span className="h-4 w-4 shrink-0" aria-hidden="true" />;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-06 14:15:36 +00:00
|
|
|
function groupSessions(
|
|
|
|
|
sessions: ChatSummary[],
|
2026-05-19 22:42:38 +08:00
|
|
|
labels: {
|
|
|
|
|
pinned: string;
|
|
|
|
|
all: string;
|
|
|
|
|
today: string;
|
|
|
|
|
yesterday: string;
|
|
|
|
|
earlier: string;
|
|
|
|
|
archived: string;
|
|
|
|
|
fallbackTitle: string;
|
|
|
|
|
},
|
|
|
|
|
options: {
|
|
|
|
|
pinnedKeys: string[];
|
|
|
|
|
archivedKeys: string[];
|
|
|
|
|
titleOverrides: Record<string, string>;
|
|
|
|
|
showArchived: boolean;
|
|
|
|
|
sort: SidebarSortMode;
|
|
|
|
|
},
|
2026-05-06 14:15:36 +00:00
|
|
|
): Array<{ label: string; sessions: ChatSummary[] }> {
|
|
|
|
|
const now = new Date();
|
|
|
|
|
const startOfToday = new Date(now.getFullYear(), now.getMonth(), now.getDate()).getTime();
|
|
|
|
|
const startOfYesterday = startOfToday - 24 * 60 * 60 * 1000;
|
|
|
|
|
const buckets = new Map<string, ChatSummary[]>();
|
2026-05-19 22:42:38 +08:00
|
|
|
const pinned = new Set(options.pinnedKeys);
|
|
|
|
|
const archived = new Set(options.archivedKeys);
|
|
|
|
|
|
|
|
|
|
const pinnedSessions: ChatSummary[] = [];
|
|
|
|
|
const archivedSessions: ChatSummary[] = [];
|
|
|
|
|
const normalSessions: ChatSummary[] = [];
|
2026-05-06 14:15:36 +00:00
|
|
|
|
|
|
|
|
for (const session of sessions) {
|
2026-05-19 22:42:38 +08:00
|
|
|
if (archived.has(session.key)) {
|
|
|
|
|
if (options.showArchived) archivedSessions.push(session);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (pinned.has(session.key)) {
|
|
|
|
|
pinnedSessions.push(session);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (options.sort === "title_asc") {
|
|
|
|
|
normalSessions.push(session);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2026-05-06 14:15:36 +00:00
|
|
|
const timestamp = Date.parse(session.updatedAt ?? session.createdAt ?? "");
|
|
|
|
|
const label = Number.isFinite(timestamp) && timestamp >= startOfToday
|
|
|
|
|
? labels.today
|
|
|
|
|
: Number.isFinite(timestamp) && timestamp >= startOfYesterday
|
|
|
|
|
? labels.yesterday
|
|
|
|
|
: labels.earlier;
|
|
|
|
|
const bucket = buckets.get(label) ?? [];
|
|
|
|
|
bucket.push(session);
|
|
|
|
|
buckets.set(label, bucket);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-19 22:42:38 +08:00
|
|
|
const groups = [labels.today, labels.yesterday, labels.earlier]
|
|
|
|
|
.map((label) => ({
|
|
|
|
|
label,
|
|
|
|
|
sessions: sortSessions(
|
|
|
|
|
buckets.get(label) ?? [],
|
|
|
|
|
options.sort,
|
|
|
|
|
options.titleOverrides,
|
|
|
|
|
),
|
|
|
|
|
}))
|
2026-05-06 14:15:36 +00:00
|
|
|
.filter((group) => group.sessions.length > 0);
|
2026-05-19 22:42:38 +08:00
|
|
|
if (options.sort === "title_asc" && normalSessions.length) {
|
|
|
|
|
groups.push({
|
|
|
|
|
label: labels.all,
|
|
|
|
|
sessions: sortSessions(
|
|
|
|
|
normalSessions,
|
|
|
|
|
options.sort,
|
|
|
|
|
options.titleOverrides,
|
|
|
|
|
),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (pinnedSessions.length) {
|
|
|
|
|
groups.unshift({
|
|
|
|
|
label: labels.pinned,
|
|
|
|
|
sessions: sortSessions(
|
|
|
|
|
pinnedSessions,
|
|
|
|
|
options.sort,
|
|
|
|
|
options.titleOverrides,
|
|
|
|
|
),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (archivedSessions.length) {
|
|
|
|
|
groups.push({
|
|
|
|
|
label: labels.archived,
|
|
|
|
|
sessions: sortSessions(
|
|
|
|
|
archivedSessions,
|
|
|
|
|
options.sort,
|
|
|
|
|
options.titleOverrides,
|
|
|
|
|
),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
return groups;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-22 01:55:37 +08:00
|
|
|
function limitGroups(
|
|
|
|
|
groups: Array<{ label: string; sessions: ChatSummary[] }>,
|
|
|
|
|
limit: number,
|
|
|
|
|
activeKey: string | null,
|
|
|
|
|
): Array<{ label: string; sessions: ChatSummary[] }> {
|
|
|
|
|
let remaining = Math.max(0, limit);
|
|
|
|
|
let activeVisible = !activeKey;
|
|
|
|
|
const out: Array<{ label: string; sessions: ChatSummary[] }> = [];
|
|
|
|
|
|
|
|
|
|
for (const group of groups) {
|
|
|
|
|
const visible = remaining > 0
|
|
|
|
|
? group.sessions.slice(0, remaining)
|
|
|
|
|
: [];
|
|
|
|
|
remaining -= visible.length;
|
|
|
|
|
if (activeKey && visible.some((session) => session.key === activeKey)) {
|
|
|
|
|
activeVisible = true;
|
|
|
|
|
}
|
|
|
|
|
if (visible.length > 0) {
|
|
|
|
|
out.push({ label: group.label, sessions: visible });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (activeVisible || !activeKey) return out;
|
|
|
|
|
|
|
|
|
|
for (const group of groups) {
|
|
|
|
|
const active = group.sessions.find((session) => session.key === activeKey);
|
|
|
|
|
if (!active) continue;
|
|
|
|
|
const existing = out.find((item) => item.label === group.label);
|
|
|
|
|
if (existing) {
|
|
|
|
|
existing.sessions = [...existing.sessions, active];
|
|
|
|
|
} else {
|
|
|
|
|
out.push({ label: group.label, sessions: [active] });
|
|
|
|
|
}
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-19 22:42:38 +08:00
|
|
|
function sortSessions(
|
|
|
|
|
sessions: ChatSummary[],
|
|
|
|
|
sort: SidebarSortMode,
|
|
|
|
|
titleOverrides: Record<string, string>,
|
|
|
|
|
): ChatSummary[] {
|
|
|
|
|
const copy = [...sessions];
|
|
|
|
|
copy.sort((a, b) => {
|
|
|
|
|
if (sort === "title_asc") {
|
|
|
|
|
const titleOrder = titleForSort(a, titleOverrides).localeCompare(
|
|
|
|
|
titleForSort(b, titleOverrides),
|
|
|
|
|
"en",
|
|
|
|
|
{ numeric: true, sensitivity: "base" },
|
|
|
|
|
);
|
|
|
|
|
if (titleOrder !== 0) return titleOrder;
|
|
|
|
|
return sessionTime(b, "updatedAt") - sessionTime(a, "updatedAt");
|
|
|
|
|
}
|
|
|
|
|
const aTime = sessionTime(a, sort === "created_desc" ? "createdAt" : "updatedAt");
|
|
|
|
|
const bTime = sessionTime(b, sort === "created_desc" ? "createdAt" : "updatedAt");
|
|
|
|
|
return bTime - aTime;
|
|
|
|
|
});
|
|
|
|
|
return copy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function titleForSort(
|
|
|
|
|
session: ChatSummary,
|
|
|
|
|
titleOverrides: Record<string, string>,
|
|
|
|
|
): string {
|
|
|
|
|
return (
|
|
|
|
|
titleOverrides[session.key]?.trim() ||
|
|
|
|
|
session.title?.trim() ||
|
|
|
|
|
deriveTitle(session.preview, "new chat")
|
|
|
|
|
).toLocaleLowerCase("en");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function displayTitle(
|
|
|
|
|
session: ChatSummary,
|
|
|
|
|
titleOverrides: Record<string, string>,
|
|
|
|
|
fallbackTitle: string,
|
|
|
|
|
): string {
|
|
|
|
|
return (
|
|
|
|
|
titleOverrides[session.key]?.trim() ||
|
|
|
|
|
session.title?.trim() ||
|
|
|
|
|
deriveTitle(session.preview, fallbackTitle)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function sessionTime(
|
|
|
|
|
session: ChatSummary,
|
|
|
|
|
field: "createdAt" | "updatedAt",
|
|
|
|
|
): number {
|
|
|
|
|
const primary = Date.parse(session[field] ?? "");
|
|
|
|
|
if (Number.isFinite(primary)) return primary;
|
|
|
|
|
const fallback = Date.parse(session.updatedAt ?? session.createdAt ?? "");
|
|
|
|
|
return Number.isFinite(fallback) ? fallback : 0;
|
2026-05-06 14:15:36 +00:00
|
|
|
}
|