Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria

Vanha frontend siirretty temp/. Uusi rakenne:
- StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro
- global.css erillinen
- Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava)
- Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md
- Ei tokenisointia eikä koodilaboratoriota

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jaakko Vanhala
2026-04-09 20:17:39 +03:00
parent e3fdb91ac5
commit a8c4af0975
9617 changed files with 996171 additions and 5349 deletions

View File

@@ -0,0 +1,50 @@
const ASTRO_APP_ID = "virtual:astro:app";
const RESOLVED_ASTRO_APP_ID = "\0" + ASTRO_APP_ID;
const ASTRO_DEV_SERVER_APP_ID = "astro:server-app";
function vitePluginApp() {
let command;
return [
{
name: "astro:app",
configResolved(config) {
command = config.command;
},
resolveId: {
filter: {
id: new RegExp(`^${ASTRO_APP_ID}$`)
},
handler() {
return RESOLVED_ASTRO_APP_ID;
}
},
load: {
filter: {
id: new RegExp(`^${RESOLVED_ASTRO_APP_ID}$`)
},
handler() {
const entrypoint = command === "serve" ? "astro/app/entrypoint/dev" : "astro/app/entrypoint/prod";
const code = `export { createApp } from '${entrypoint}';`;
return {
code
};
}
}
},
{
name: "astro:server-app",
resolveId: {
filter: {
id: new RegExp(`^${ASTRO_DEV_SERVER_APP_ID}$`)
},
handler() {
const url = new URL("./createAstroServerApp.js", import.meta.url);
return this.resolve(url.toString());
}
}
}
];
}
export {
ASTRO_DEV_SERVER_APP_ID,
vitePluginApp
};