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:
@@ -115,3 +115,16 @@ async def get_conversation(
|
|||||||
for message in messages
|
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}
|
||||||
|
|||||||
@@ -6,12 +6,20 @@ import {
|
|||||||
Eye,
|
Eye,
|
||||||
Loader2,
|
Loader2,
|
||||||
MessageSquareText,
|
MessageSquareText,
|
||||||
|
MoreHorizontal,
|
||||||
|
Trash2,
|
||||||
} from "lucide-react";
|
} 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 { Badge } from "@/components/ui/badge";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import { DataList, type DataListColumn } from "@/components/ui/data-list";
|
import { DataList, type DataListColumn } from "@/components/ui/data-list";
|
||||||
|
import {
|
||||||
|
DropdownMenu,
|
||||||
|
DropdownMenuContent,
|
||||||
|
DropdownMenuItem,
|
||||||
|
DropdownMenuTrigger,
|
||||||
|
} from "@/components/ui/dropdown-menu";
|
||||||
import {
|
import {
|
||||||
Dialog,
|
Dialog,
|
||||||
DialogClose,
|
DialogClose,
|
||||||
@@ -32,7 +40,7 @@ import {
|
|||||||
} from "@/lib/api";
|
} from "@/lib/api";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
|
|
||||||
const PAGE_SIZE = 20;
|
const PAGE_SIZE = 5;
|
||||||
const channelFilters = ["全部", "WebRTC", "WebSocket"] as const;
|
const channelFilters = ["全部", "WebRTC", "WebSocket"] as const;
|
||||||
type ChannelFilter = (typeof channelFilters)[number];
|
type ChannelFilter = (typeof channelFilters)[number];
|
||||||
type SortOrder = "newest" | "oldest";
|
type SortOrder = "newest" | "oldest";
|
||||||
@@ -96,6 +104,14 @@ export function HistoryPage() {
|
|||||||
const [detail, setDetail] = useState<ConversationDetail | null>(null);
|
const [detail, setDetail] = useState<ConversationDetail | null>(null);
|
||||||
const [detailLoading, setDetailLoading] = useState(false);
|
const [detailLoading, setDetailLoading] = useState(false);
|
||||||
const [detailError, setDetailError] = useState("");
|
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 () => {
|
const load = useCallback(async () => {
|
||||||
setLoading(true);
|
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) {
|
function changeSearch(value: string) {
|
||||||
setSearch(value);
|
setSearch(value);
|
||||||
setCurrentPage(1);
|
setCurrentPage(1);
|
||||||
@@ -244,30 +299,69 @@ export function HistoryPage() {
|
|||||||
key: "actions",
|
key: "actions",
|
||||||
header: "操作",
|
header: "操作",
|
||||||
align: "right",
|
align: "right",
|
||||||
cellClassName: "flex justify-end",
|
|
||||||
cell: (row) => (
|
cell: (row) => (
|
||||||
<Button
|
<div
|
||||||
variant="outline"
|
className="flex justify-end gap-2"
|
||||||
size="sm"
|
onClick={(event) => event.stopPropagation()}
|
||||||
className="gap-1.5 border-hairline-strong text-xs text-muted-foreground hover:text-foreground"
|
onPointerDown={(event) => event.stopPropagation()}
|
||||||
onClick={(event) => {
|
|
||||||
event.stopPropagation();
|
|
||||||
void openDetail(row);
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<Eye size={14} />
|
<Button
|
||||||
查看
|
variant="outline"
|
||||||
</Button>
|
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 totalPages = Math.max(1, Math.ceil(total / PAGE_SIZE));
|
||||||
const safeCurrentPage = Math.min(currentPage, totalPages);
|
const safeCurrentPage = Math.min(currentPage, totalPages);
|
||||||
const pageStart = (safeCurrentPage - 1) * PAGE_SIZE;
|
const pageStart = (safeCurrentPage - 1) * PAGE_SIZE;
|
||||||
const pageEnd = Math.min(pageStart + rows.length, total);
|
const pageEnd = pageStart + rows.length;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx-auto flex w-full max-w-[1440px] flex-col gap-8">
|
<div className="mx-auto flex w-full max-w-[1440px] flex-col gap-8">
|
||||||
@@ -302,7 +396,7 @@ export function HistoryPage() {
|
|||||||
loading={loading}
|
loading={loading}
|
||||||
error={loadError || null}
|
error={loadError || null}
|
||||||
onRetry={() => void load()}
|
onRetry={() => void load()}
|
||||||
onRowClick={(row) => void openDetail(row)}
|
onRowClick={handleRowClick}
|
||||||
empty={{
|
empty={{
|
||||||
title:
|
title:
|
||||||
total === 0 && !search && filter === "全部"
|
total === 0 && !search && filter === "全部"
|
||||||
@@ -320,7 +414,7 @@ export function HistoryPage() {
|
|||||||
summary:
|
summary:
|
||||||
total === 0
|
total === 0
|
||||||
? "没有数据"
|
? "没有数据"
|
||||||
: `显示 ${pageStart + 1}-${pageEnd} / 共 ${total} 次会话`,
|
: `显示 ${pageStart + 1}-${Math.min(pageEnd, total)} / 共 ${total} 次会话`,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -249,6 +249,8 @@ export const conversationsApi = {
|
|||||||
},
|
},
|
||||||
get: (id: string) =>
|
get: (id: string) =>
|
||||||
request<ConversationDetail>(`/api/conversations/${id}`),
|
request<ConversationDetail>(`/api/conversations/${id}`),
|
||||||
|
remove: (id: string) =>
|
||||||
|
request<{ ok: boolean }>(`/api/conversations/${id}`, { method: "DELETE" }),
|
||||||
};
|
};
|
||||||
|
|
||||||
// ---------- 工具 ----------
|
// ---------- 工具 ----------
|
||||||
|
|||||||
Reference in New Issue
Block a user