Add conversation deletion functionality and update HistoryPage

- Implement a new API endpoint for deleting conversations in the backend.
- Enhance the HistoryPage component to include a dropdown menu for conversation actions, allowing users to delete conversations.
- Update the pagination logic to handle conversation removal and improve user experience during deletion.
- Adjust the loading state and error handling for the delete operation, ensuring smooth interaction.
This commit is contained in:
Xin Wang
2026-07-10 16:38:59 +08:00
parent 059ad8162e
commit ba59ea447c
3 changed files with 127 additions and 18 deletions

View File

@@ -115,3 +115,16 @@ async def get_conversation(
for message in messages
],
)
@router.delete("/{conversation_id}")
async def delete_conversation(
conversation_id: str,
session: AsyncSession = Depends(get_session),
):
conversation = await session.get(ConversationSession, conversation_id)
if not conversation:
raise HTTPException(404, "对话记录不存在")
await session.delete(conversation)
await session.commit()
return {"ok": True}

View File

@@ -6,12 +6,20 @@ import {
Eye,
Loader2,
MessageSquareText,
MoreHorizontal,
Trash2,
} from "lucide-react";
import { useCallback, useEffect, useMemo, useState } from "react";
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { DataList, type DataListColumn } from "@/components/ui/data-list";
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";
import {
Dialog,
DialogClose,
@@ -32,7 +40,7 @@ import {
} from "@/lib/api";
import { cn } from "@/lib/utils";
const PAGE_SIZE = 20;
const PAGE_SIZE = 5;
const channelFilters = ["全部", "WebRTC", "WebSocket"] as const;
type ChannelFilter = (typeof channelFilters)[number];
type SortOrder = "newest" | "oldest";
@@ -96,6 +104,14 @@ export function HistoryPage() {
const [detail, setDetail] = useState<ConversationDetail | null>(null);
const [detailLoading, setDetailLoading] = useState(false);
const [detailError, setDetailError] = useState("");
const [deletingId, setDeletingId] = useState<string | null>(null);
const skipRowClickRef = useRef(false);
const clearSkipRowClick = useCallback(() => {
window.setTimeout(() => {
skipRowClickRef.current = false;
}, 200);
}, []);
const load = useCallback(async () => {
setLoading(true);
@@ -139,6 +155,45 @@ export function HistoryPage() {
}
}, []);
const remove = useCallback(
async (conversation: Conversation) => {
const label = conversation.assistantName || "调试会话";
skipRowClickRef.current = true;
const confirmed = window.confirm(`确认删除对话“${label}”?`);
if (!confirmed) {
clearSkipRowClick();
return;
}
setDeletingId(conversation.id);
try {
await conversationsApi.remove(conversation.id);
if (detail?.id === conversation.id) {
setDialogOpen(false);
setDetail(null);
}
if (rows.length === 1 && currentPage > 1) {
setCurrentPage(currentPage - 1);
} else {
await load();
}
} catch (error) {
setLoadError(error instanceof Error ? error.message : "删除失败");
} finally {
setDeletingId(null);
clearSkipRowClick();
}
},
[clearSkipRowClick, currentPage, detail?.id, load, rows.length],
);
const handleRowClick = useCallback(
(conversation: Conversation) => {
if (skipRowClickRef.current) return;
void openDetail(conversation);
},
[openDetail],
);
function changeSearch(value: string) {
setSearch(value);
setCurrentPage(1);
@@ -244,30 +299,69 @@ export function HistoryPage() {
key: "actions",
header: "操作",
align: "right",
cellClassName: "flex justify-end",
cell: (row) => (
<Button
variant="outline"
size="sm"
className="gap-1.5 border-hairline-strong text-xs text-muted-foreground hover:text-foreground"
onClick={(event) => {
event.stopPropagation();
void openDetail(row);
}}
<div
className="flex justify-end gap-2"
onClick={(event) => event.stopPropagation()}
onPointerDown={(event) => event.stopPropagation()}
>
<Eye size={14} />
</Button>
<Button
variant="outline"
size="sm"
className="gap-1.5 border-hairline-strong text-xs text-muted-foreground hover:text-foreground"
onClick={(event) => {
event.stopPropagation();
void openDetail(row);
}}
>
<Eye size={14} />
</Button>
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button
variant="outline"
size="icon-sm"
className="border-hairline-strong text-muted-foreground hover:text-foreground"
aria-label={`${row.assistantName || row.id} 更多操作`}
onClick={(event) => event.stopPropagation()}
>
<MoreHorizontal size={15} />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent
align="end"
className="w-32 min-w-32 rounded-xl border border-hairline bg-popover p-1"
>
<DropdownMenuItem
variant="destructive"
className="rounded-lg"
disabled={deletingId === row.id}
onSelect={(event) => {
event.preventDefault();
window.setTimeout(() => void remove(row), 0);
}}
>
{deletingId === row.id ? (
<Loader2 size={14} className="animate-spin" />
) : (
<Trash2 size={14} />
)}
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</div>
),
},
],
[openDetail, sortOrder],
[deletingId, openDetail, remove, sortOrder],
);
const totalPages = Math.max(1, Math.ceil(total / PAGE_SIZE));
const safeCurrentPage = Math.min(currentPage, totalPages);
const pageStart = (safeCurrentPage - 1) * PAGE_SIZE;
const pageEnd = Math.min(pageStart + rows.length, total);
const pageEnd = pageStart + rows.length;
return (
<div className="mx-auto flex w-full max-w-[1440px] flex-col gap-8">
@@ -302,7 +396,7 @@ export function HistoryPage() {
loading={loading}
error={loadError || null}
onRetry={() => void load()}
onRowClick={(row) => void openDetail(row)}
onRowClick={handleRowClick}
empty={{
title:
total === 0 && !search && filter === "全部"
@@ -320,7 +414,7 @@ export function HistoryPage() {
summary:
total === 0
? "没有数据"
: `显示 ${pageStart + 1}-${pageEnd} / 共 ${total} 次会话`,
: `显示 ${pageStart + 1}-${Math.min(pageEnd, total)} / 共 ${total} 次会话`,
}}
/>
</section>

View File

@@ -249,6 +249,8 @@ export const conversationsApi = {
},
get: (id: string) =>
request<ConversationDetail>(`/api/conversations/${id}`),
remove: (id: string) =>
request<{ ok: boolean }>(`/api/conversations/${id}`, { method: "DELETE" }),
};
// ---------- 工具 ----------