import { defaultClientConditions, defaultServerConditions, normalizePath } from "vite"; import { hasSpecialQueries, normalizeFilename } from "../vite-plugin-utils/index.js"; import { compileAstro } from "./compile.js"; import { handleHotUpdate } from "./hmr.js"; import { parseAstroRequest } from "./query.js"; import { loadId } from "./utils.js"; import { getAstroMetadata } from "./metadata.js"; const astroFileToCompileMetadataWeakMap = /* @__PURE__ */ new WeakMap(); function astro({ settings, logger }) { const { config } = settings; let server; let compile; let astroFileToCompileMetadata = /* @__PURE__ */ new Map(); const srcRootWeb = config.srcDir.pathname.slice(config.root.pathname.length - 1); const isBrowserPath = (path) => path.startsWith(srcRootWeb) && srcRootWeb !== "/"; const notAstroComponent = (component) => !component.resolvedPath.endsWith(".astro"); const prePlugin = { name: "astro:build", enforce: "pre", // run transforms before other plugins can async configEnvironment(name, viteConfig, opts) { viteConfig.resolve ??= {}; if (viteConfig.resolve.conditions == null) { if (viteConfig.consumer === "client" || name === "client" || opts.isSsrTargetWebworker) { viteConfig.resolve.conditions = [...defaultClientConditions]; } else { viteConfig.resolve.conditions = [...defaultServerConditions]; } } viteConfig.resolve.conditions.push("astro"); }, configResolved(viteConfig) { compile = (code, filename) => { return compileAstro({ compileProps: { astroConfig: config, viteConfig, preferences: settings.preferences, filename, source: code }, astroFileToCompileMetadata, logger }); }; }, configureServer(_server) { server = _server; server.watcher.on("unlink", (filename) => { astroFileToCompileMetadata.delete(filename); }); }, buildStart() { astroFileToCompileMetadata = /* @__PURE__ */ new Map(); if (astroFileToCompileMetadataWeakMap.has(config)) { astroFileToCompileMetadata = astroFileToCompileMetadataWeakMap.get(config); } else { astroFileToCompileMetadataWeakMap.set(config, astroFileToCompileMetadata); } }, async load(id, opts) { const parsedId = parseAstroRequest(id); const query = parsedId.query; if (!query.astro) { return null; } const filename = normalizePath(normalizeFilename(parsedId.filename, config.root)); let compileMetadata = astroFileToCompileMetadata.get(filename); if (!compileMetadata) { if (server) { const code = await loadId(server.pluginContainer, filename); if (code != null) await compile(code, filename); } compileMetadata = astroFileToCompileMetadata.get(filename); } if (!compileMetadata) { throw new Error( `No cached compile metadata found for "${id}". The main Astro module "${filename}" should have compiled and filled the metadata first, before its virtual modules can be requested.` ); } switch (query.type) { case "style": { if (typeof query.index === "undefined") { throw new Error(`Requests for Astro CSS must include an index.`); } const result = compileMetadata.css[query.index]; if (!result) { throw new Error(`No Astro CSS at index ${query.index}`); } result.dependencies?.forEach((dep) => this.addWatchFile(dep)); return { code: result.code, // `vite.cssScopeTo` is a Vite feature that allows this CSS to be treeshaken // if the Astro component's default export is not used meta: result.isGlobal ? void 0 : { vite: { cssScopeTo: [filename, "default"] } } }; } case "script": { if (typeof query.index === "undefined") { throw new Error(`Requests for scripts must include an index`); } if (opts?.ssr) { return { code: `/* client script, empty in SSR: ${id} */` }; } const script = compileMetadata.scripts[query.index]; if (!script) { throw new Error(`No script at index ${query.index}`); } if (script.type === "external") { const src = script.src; if (src.startsWith("/") && !isBrowserPath(src)) { const publicDir = config.publicDir.pathname.replace(/\/$/, "").split("/").pop() + "/"; throw new Error( `