mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
"use client";
|
|
|
|
import { useShape } from "@electric-sql/react";
|
|
import { useSetAtom } from "jotai";
|
|
import { useEffect } from "react";
|
|
import { chatSessionStateAtom } from "@/atoms/chat/chat-session-state.atom";
|
|
import type { ChatSessionState } from "@/contracts/types/chat-session-state.types";
|
|
|
|
const ELECTRIC_URL = process.env.NEXT_PUBLIC_ELECTRIC_URL || "http://localhost:5133";
|
|
|
|
/**
|
|
* Syncs chat session state for a thread via Electric SQL.
|
|
* Call once per thread (in page.tsx). Updates global atom.
|
|
*/
|
|
export function useChatSessionStateSync(threadId: number | null) {
|
|
const setSessionState = useSetAtom(chatSessionStateAtom);
|
|
|
|
const { data } = useShape<ChatSessionState>({
|
|
url: `${ELECTRIC_URL}/v1/shape`,
|
|
params: {
|
|
table: "chat_session_state",
|
|
where: `thread_id = ${threadId ?? -1}`,
|
|
},
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (!threadId) {
|
|
setSessionState(null);
|
|
return;
|
|
}
|
|
|
|
const row = data?.[0];
|
|
setSessionState({
|
|
threadId,
|
|
isAiResponding: !!row?.ai_responding_to_user_id,
|
|
respondingToUserId: row?.ai_responding_to_user_id ?? null,
|
|
});
|
|
}, [threadId, data, setSessionState]);
|
|
}
|