mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-17 21:11:04 +00:00
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
import type { AppLoadContext, EntryContext } from "@remix-run/cloudflare";
|
|
import { RemixServer } from "@remix-run/react";
|
|
import * as isbotModule from "isbot";
|
|
import { renderToReadableStream } from "react-dom/server";
|
|
|
|
export default async function handleRequest(
|
|
request: Request,
|
|
responseStatusCode: number,
|
|
responseHeaders: Headers,
|
|
remixContext: EntryContext,
|
|
loadContext: AppLoadContext
|
|
) {
|
|
const body = await renderToReadableStream(
|
|
<RemixServer context={remixContext} url={request.url} />,
|
|
{
|
|
// If you wish to abort the rendering process, you can pass a signal here.
|
|
// Please refer to the templates for example son how to configure this.
|
|
// signal: controller.signal,
|
|
onError(error: unknown) {
|
|
// Log streaming rendering errors from inside the shell
|
|
console.error(error);
|
|
responseStatusCode = 500;
|
|
},
|
|
}
|
|
);
|
|
|
|
if (isBotRequest(request.headers.get("user-agent"))) {
|
|
await body.allReady;
|
|
}
|
|
|
|
responseHeaders.set("Content-Type", "text/html");
|
|
return new Response(body, {
|
|
headers: responseHeaders,
|
|
status: responseStatusCode,
|
|
});
|
|
}
|
|
|
|
// We have some Remix apps in the wild already running with isbot@3 so we need
|
|
// to maintain backwards compatibility even though we want new apps to use
|
|
// isbot@4. That way, we can ship this as a minor Semver update to @remix-run/dev.
|
|
function isBotRequest(userAgent: string | null) {
|
|
if (!userAgent) {
|
|
return false;
|
|
}
|
|
|
|
// isbot >= 3.8.0, >4
|
|
if ("isbot" in isbotModule && typeof isbotModule.isbot === "function") {
|
|
return isbotModule.isbot(userAgent);
|
|
}
|
|
|
|
// isbot < 3.8.0
|
|
if ("default" in isbotModule && typeof isbotModule.default === "function") {
|
|
return isbotModule.default(userAgent);
|
|
}
|
|
|
|
return false;
|
|
}
|