dia-gov's picture
Upload 569 files
cd6f98e verified
import { env } from "../env/client.mjs";
type TextStream = ReadableStreamDefaultReader<Uint8Array>;
const fetchData = async <T>(
url: string,
body: T,
accessToken: string
): Promise<TextStream | undefined> => {
url = env.NEXT_PUBLIC_BACKEND_URL + url;
const response = await fetch(url, {
method: "POST",
cache: "no-cache",
keepalive: true,
headers: {
"Content-Type": "application/json",
Accept: "text/event-stream",
Authorization: `Bearer ${accessToken}`,
},
body: JSON.stringify(body),
});
if (response.status === 409) {
const error = (await response.json()) as { error: string; detail: string };
throw new Error(error.detail);
}
return response.body?.getReader();
};
async function readStream(reader: TextStream): Promise<string | null> {
const result = await reader.read();
return result.done ? null : new TextDecoder().decode(result.value);
}
async function processStream(
reader: TextStream,
onStart: () => void,
onText: (text: string) => void,
shouldClose: () => boolean
): Promise<void> {
onStart();
while (true) {
if (shouldClose()) {
await reader.cancel();
return;
}
const text = await readStream(reader);
if (text === null) break;
onText(text);
}
}
export const streamText = async <T>(
url: string,
body: T,
accessToken: string,
onStart: () => void,
onText: (text: string) => void,
shouldClose: () => boolean // Event handler to close connection early
) => {
const reader = await fetchData(url, body, accessToken);
if (!reader) {
console.error("Reader is undefined!");
return;
}
await processStream(reader, onStart, onText, shouldClose);
};