Skip to content

Commit

Permalink
push
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Erdos committed Sep 29, 2024
1 parent 1d7f614 commit be1ba5a
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 44 deletions.
11 changes: 0 additions & 11 deletions packages/code/src/@/lib/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,6 @@ export const ata = async ({
}
};

export const generateCSS = async (
classNames: string[],
): Promise<string> => {
const worker = workerPool.getWorker("generateCSS");
try {
return await worker.rpc.rpc("generateCSS", classNames);
} finally {
workerPool.releaseWorker(worker);
}
};

export const prettierCss = async (code: string): Promise<string> => {
const worker = workerPool.getWorker("prettier");
try {
Expand Down
2 changes: 0 additions & 2 deletions packages/code/src/@/workers/ata-worker.worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ type WorkerFunctions = {
tsx: (code: string) => Promise<string[]>;
updateSearchReplace: (instructions: string, code: string) => Promise<string>;
setConnections: (signal: string, sess: ICodeSession) => void;
generateCSS: (classNames: string[]) => Promise<string>;
};

const self: SharedWorkerGlobalScope & { onconnect?: (e: MessageEvent) => void } & WorkerFunctions =
Expand All @@ -39,7 +38,6 @@ const workerFiles: Record<keyof WorkerFunctions, string[]> = {
updateSearchReplace: ["chat-utils"],
build: ["transpile"],
tsx: ["dts"],
generateCSS: ["css"],
setConnections: ["socket"],
};

Expand Down
70 changes: 39 additions & 31 deletions packages/code/src/ws.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Code } from "./services/CodeSession";
import { md5 } from "@/lib/md5";
import { processImage } from "@/lib/process-image";
import { renderApp } from "@/lib/render-app";
import { generateCSS, prettierCss } from "@/lib/shared";
import { prettierCss } from "@/lib/shared";
import { wait } from "@/lib/wait";
import { throttle } from "es-toolkit";
import { renderPreviewWindow } from "./renderPreviewWindow";
Expand Down Expand Up @@ -248,28 +248,28 @@ const handleDehydratedPage = () => {
}
};

// function getClassNamesFromHTML(htmlString: string) {
// const classNames = new Set<string>();
// const tempDiv = document.createElement("div");
// tempDiv.innerHTML = htmlString;
// const elements = tempDiv.getElementsByTagName("*");
// for (let el of elements) {
// let className = "";
// if (typeof el.className === "string") {
// className = el.className;
// } else if (typeof el.className === "object" && "baseVal" in el.className) {
// // Handle SVGAnimatedString
// className = (el.className as SVGAnimatedString).baseVal;
// }
// if (className) {
// className
// .trim()
// .split(/\s+/)
// .forEach((cls) => classNames.add(cls));
// }
// }
// return Array.from(classNames);
// }
function getClassNamesFromHTML(htmlString: string) {
const classNames = new Set<string>();
const tempDiv = document.createElement("div");
tempDiv.innerHTML = htmlString;
const elements = tempDiv.getElementsByTagName("*");
for (let el of elements) {
let className = "";
if (typeof el.className === "string") {
className = el.className;
} else if (typeof el.className === "object" && "baseVal" in el.className) {
// Handle SVGAnimatedString
className = (el.className as SVGAnimatedString).baseVal;
}
if (className) {
className
.trim()
.split(/\s+/)
.forEach((cls) => classNames.add(cls));
}
}
return Array.from(classNames);
}

const handleRender = async (
rootEl: HTMLDivElement,
Expand All @@ -284,7 +284,6 @@ const handleRender = async (

const html = rootEl.innerHTML;
// const classNames = getClassNamesFromHTML(html);
// const twCss = await generateCSS(classNames);

if (!html) return false;
for (let attempts = 5; attempts > 0; attempts--) {
Expand All @@ -300,19 +299,28 @@ const handleRender = async (
.filter(Boolean) as string[],
);

// const styleElement = document.querySelector("head > style:last-child");
// const tailWindClasses = styleElement
// ? Array.from((styleElement as HTMLStyleElement).sheet!.cssRules).map(
// (x) => x.cssText,
// )
// : [];
const styleElement = document.querySelector("head > style:last-child");
const tailWindClasses = styleElement
? Array.from((styleElement as HTMLStyleElement).sheet!.cssRules).map(
(x) => x.cssText,
)
: [];

const eCss = css
.filter((line) => Array.from(criticalClasses).some((rule) => rule ? line.includes(rule) : false))
.map((x) => x.trim())
.filter(Boolean);

let cssStrings = [...eCss, ...twCss].sort().join("\n");
const htmlClasses = getClassNamesFromHTML(html);
let cssStrings = [...eCss, ...tailWindClasses].sort().filter(x => {
// we have all the classnames from the html, filering out those css rules that are not used
// in the html

const rule = x.slice(1, x.indexOf("{")).trim();

return htmlClasses.includes(rule);
}).join("\n");

try {
cssStrings = cssStrings ? await prettierCss(cssStrings) : "";
} catch (error) {
Expand Down

0 comments on commit be1ba5a

Please sign in to comment.