Compare commits

..

1 Commits

Author SHA1 Message Date
ruinivist f76534b632 perf: optimize editorcanvas memoization and debounce shiki highlighting 2026-06-04 07:51:05 +00:00
4 changed files with 39 additions and 43 deletions
-4
View File
@@ -1,4 +0,0 @@
## 2024-06-06 - Missing HTTP Security Headers
**Vulnerability:** The Caddyfile configuration was missing standard HTTP security headers (X-Frame-Options, X-Content-Type-Options, Referrer-Policy), leaving the application susceptible to clickjacking, MIME-type sniffing, and sensitive data leakage via referrers.
**Learning:** The application relies on Caddy as a reverse proxy, and by default, Caddy doesn't automatically add these specific security headers unless explicitly configured.
**Prevention:** Ensure that reverse proxy configurations in new projects or updates to existing ones explicitly include essential HTTP security headers in a global scope to protect all served content.
+19 -25
View File
@@ -1,36 +1,30 @@
{ {
auto_https off auto_https off
admin off admin off
} }
:80 { :80 {
encode zstd gzip encode zstd gzip
header { handle /mcp {
X-Frame-Options "SAMEORIGIN" reverse_proxy 127.0.0.1:3001
X-Content-Type-Options "nosniff" }
Referrer-Policy "strict-origin-when-cross-origin"
}
handle /mcp { @app path / /api/*
reverse_proxy 127.0.0.1:3001 handle @app {
} reverse_proxy 127.0.0.1:3000
}
@app path / /api/* handle {
handle @app { root * /srv/public
reverse_proxy 127.0.0.1:3000
}
handle { @html path /index.html /d/* /p/*
root * /srv/public header @html Cache-Control "no-cache"
@html path /index.html /d/* /p/* @assets path_regexp assets \.(?:css|js|mjs|svg|png|jpg|jpeg|gif|webp|ico|woff2?|ttf|otf)$
header @html Cache-Control "no-cache" header @assets Cache-Control "public, max-age=31536000, immutable"
@assets path_regexp assets \.(?:css|js|mjs|svg|png|jpg|jpeg|gif|webp|ico|woff2?|ttf|otf)$ try_files {path} /index.html
header @assets Cache-Control "public, max-age=31536000, immutable" file_server
}
try_files {path} /index.html
file_server
}
} }
+5 -3
View File
@@ -307,6 +307,10 @@ function PrivateApp() {
[], [],
); );
const handleExcalidrawAPI = useCallback((api: ExcalidrawImperativeAPI) => {
excalidrawApiRef.current = api;
}, []);
return ( return (
<div className="app-shell" ref={appShellRef}> <div className="app-shell" ref={appShellRef}>
{toastMessage && ( {toastMessage && (
@@ -332,9 +336,7 @@ function PrivateApp() {
onSceneChange={handleSceneChange} onSceneChange={handleSceneChange}
onSelectionStateChange={handleCodeBlockSelectionChange} onSelectionStateChange={handleCodeBlockSelectionChange}
onEditorActivity={scheduleThemeTokenSync} onEditorActivity={scheduleThemeTokenSync}
onExcalidrawAPI={(api) => { onExcalidrawAPI={handleExcalidrawAPI}
excalidrawApiRef.current = api;
}}
renderEmbeddable={renderCodeBlockEmbeddable} renderEmbeddable={renderCodeBlockEmbeddable}
/> />
<CodeBlockSidebar <CodeBlockSidebar
+15 -11
View File
@@ -30,20 +30,24 @@ function CodeBlockEditor({
useEffect(() => { useEffect(() => {
let cancelled = false; let cancelled = false;
void renderHighlightedCodeBlockHtml(draft.code, draft.language)
.then((nextHtml) => { const timeoutId = setTimeout(() => {
if (!cancelled) { void renderHighlightedCodeBlockHtml(draft.code, draft.language)
setHtml(nextHtml); .then((nextHtml) => {
} if (!cancelled) {
}) setHtml(nextHtml);
.catch(() => { }
if (!cancelled) { })
setHtml(null); .catch(() => {
} if (!cancelled) {
}); setHtml(null);
}
});
}, 100);
return () => { return () => {
cancelled = true; cancelled = true;
clearTimeout(timeoutId);
}; };
}, [draft.code, draft.language]); }, [draft.code, draft.language]);