mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-29 00:59:37 +07:00
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import db from "~/server/db";
|
|
import { FileSchema, file } from "~/server/db/schema/file";
|
|
import { and, eq, isNull } from "drizzle-orm";
|
|
|
|
export const serveHtml = async (fileData: FileSchema) => {
|
|
const layout = await db.query.file.findFirst({
|
|
where: and(
|
|
eq(file.filename, "_layout.html"),
|
|
fileData.parentId
|
|
? eq(file.parentId, fileData.parentId)
|
|
: isNull(file.parentId),
|
|
isNull(file.deletedAt)
|
|
),
|
|
});
|
|
|
|
let content = fileData.content || "";
|
|
if (!layout?.content) {
|
|
return content;
|
|
}
|
|
|
|
content = layout.content.replace("{CONTENT}", content);
|
|
|
|
const bodyOpeningTagIdx = content.indexOf("<body");
|
|
const firstScriptTagIdx = content.indexOf("<script", bodyOpeningTagIdx);
|
|
const injectScripts = ['<script src="/js/hook-console.js"></script>'];
|
|
|
|
const importMaps = [
|
|
{ name: "react", url: "https://esm.sh/react@18.2.0" },
|
|
{ name: "react-dom/client", url: "https://esm.sh/react-dom@18.2.0/client" },
|
|
];
|
|
|
|
if (importMaps.length > 0) {
|
|
const imports = importMaps.reduce((a: any, b) => {
|
|
a[b.name] = b.url;
|
|
return a;
|
|
}, {});
|
|
const json = JSON.stringify({ imports });
|
|
injectScripts.unshift(`<script type="importmap">${json}</script>`);
|
|
}
|
|
|
|
if (firstScriptTagIdx >= 0 && injectScripts.length > 0) {
|
|
content =
|
|
content.substring(0, firstScriptTagIdx) +
|
|
injectScripts.filter((i) => !!i).join("") +
|
|
content.substring(firstScriptTagIdx);
|
|
}
|
|
|
|
// content = content.replace(/ {2}|\r\n|\n|\r/gm, "");
|
|
|
|
return content;
|
|
};
|