发送系统通知时携带folder名

This commit is contained in:
xintaofei
2026-03-21 19:14:38 +08:00
parent a9e0a742ac
commit d0655066b6
9 changed files with 63 additions and 13 deletions

View File

@@ -44,6 +44,7 @@ import {
} from "@/lib/constants"
import { notifyTurnComplete } from "@/lib/notification"
import { useAlertContext, type AlertAction } from "@/contexts/alert-context"
import { useFolderContext } from "@/contexts/folder-context"
// ── Shared types (re-exported for consumers) ──
@@ -1125,6 +1126,11 @@ function isAlertedError(error: unknown): error is AlertedError {
export function AcpConnectionsProvider({ children }: { children: ReactNode }) {
const t = useTranslations("Folder.chat.acpConnections")
const { pushAlert } = useAlertContext()
const { folder } = useFolderContext()
const folderNameRef = useRef(folder?.name)
useEffect(() => {
folderNameRef.current = folder?.name
}, [folder?.name])
const pushAlertRef = useRef(pushAlert)
useEffect(() => {
pushAlertRef.current = pushAlert
@@ -1551,8 +1557,10 @@ export function AcpConnectionsProvider({ children }: { children: ReactNode }) {
const nc = storeRef.current.connections.get(contextKey)
if (nc) {
const agentLabel = AGENT_LABELS[nc.agentType]
const fn = folderNameRef.current
const title = fn ? `${fn} - Codeg` : "Codeg"
notifyTurnComplete(
"Codeg",
title,
t("notificationTurnComplete", { agent: agentLabel }),
).catch(() => {})
}

9
src/lib/notification.ts Normal file
View File

@@ -0,0 +1,9 @@
import { invoke } from "@tauri-apps/api/core"
export async function notifyTurnComplete(
title: string,
body: string,
): Promise<void> {
if (!document.hidden) return
await invoke("send_notification", { title, body })
}