213 lines
8.4 KiB
JavaScript
213 lines
8.4 KiB
JavaScript
import { extname } from "node:path";
|
|
import MagicString from "magic-string";
|
|
import { AstroError, AstroErrorData } from "../core/errors/index.js";
|
|
import {
|
|
appendForwardSlash,
|
|
joinPaths,
|
|
prependForwardSlash,
|
|
removeBase,
|
|
removeQueryString
|
|
} from "../core/path.js";
|
|
import { normalizePath } from "../core/viteUtils.js";
|
|
import { VALID_INPUT_FORMATS, VIRTUAL_MODULE_ID, VIRTUAL_SERVICE_ID } from "./consts.js";
|
|
import { fontsPlugin } from "./fonts/vite-plugin-fonts.js";
|
|
import { getAssetsPrefix } from "./utils/getAssetsPrefix.js";
|
|
import { isESMImportedImage } from "./utils/imageKind.js";
|
|
import { emitESMImage } from "./utils/node/emitAsset.js";
|
|
import { getProxyCode } from "./utils/proxy.js";
|
|
import { makeSvgComponent } from "./utils/svg.js";
|
|
import { hashTransform, propsToFilename } from "./utils/transformToPath.js";
|
|
const resolvedVirtualModuleId = "\0" + VIRTUAL_MODULE_ID;
|
|
const assetRegex = new RegExp(`\\.(${VALID_INPUT_FORMATS.join("|")})`, "i");
|
|
const assetRegexEnds = new RegExp(`\\.(${VALID_INPUT_FORMATS.join("|")})$`, "i");
|
|
const addStaticImageFactory = (settings) => {
|
|
return (options, hashProperties, originalFSPath) => {
|
|
if (!globalThis.astroAsset.staticImages) {
|
|
globalThis.astroAsset.staticImages = /* @__PURE__ */ new Map();
|
|
}
|
|
const ESMImportedImageSrc = isESMImportedImage(options.src) ? options.src.src : options.src;
|
|
const fileExtension = extname(ESMImportedImageSrc);
|
|
const assetPrefix = getAssetsPrefix(fileExtension, settings.config.build.assetsPrefix);
|
|
const finalOriginalPath = removeBase(
|
|
removeBase(ESMImportedImageSrc, settings.config.base),
|
|
assetPrefix
|
|
);
|
|
const hash = hashTransform(options, settings.config.image.service.entrypoint, hashProperties);
|
|
let finalFilePath;
|
|
let transformsForPath = globalThis.astroAsset.staticImages.get(finalOriginalPath);
|
|
const transformForHash = transformsForPath?.transforms.get(hash);
|
|
if (transformsForPath && transformForHash) {
|
|
finalFilePath = transformForHash.finalPath;
|
|
} else {
|
|
finalFilePath = prependForwardSlash(
|
|
joinPaths(
|
|
isESMImportedImage(options.src) ? "" : settings.config.build.assets,
|
|
prependForwardSlash(propsToFilename(finalOriginalPath, options, hash))
|
|
)
|
|
);
|
|
if (!transformsForPath) {
|
|
globalThis.astroAsset.staticImages.set(finalOriginalPath, {
|
|
originalSrcPath: originalFSPath,
|
|
transforms: /* @__PURE__ */ new Map()
|
|
});
|
|
transformsForPath = globalThis.astroAsset.staticImages.get(finalOriginalPath);
|
|
}
|
|
transformsForPath.transforms.set(hash, {
|
|
finalPath: finalFilePath,
|
|
transform: options
|
|
});
|
|
}
|
|
if (settings.config.build.assetsPrefix) {
|
|
return encodeURI(joinPaths(assetPrefix, finalFilePath));
|
|
} else {
|
|
return encodeURI(prependForwardSlash(joinPaths(settings.config.base, finalFilePath)));
|
|
}
|
|
};
|
|
};
|
|
function assets({ fs, settings, sync, logger }) {
|
|
let resolvedConfig;
|
|
let shouldEmitFile = false;
|
|
let isBuild = false;
|
|
globalThis.astroAsset = {
|
|
referencedImages: /* @__PURE__ */ new Set()
|
|
};
|
|
const imageComponentPrefix = settings.config.image.responsiveStyles ? "Responsive" : "";
|
|
return [
|
|
// Expose the components and different utilities from `astro:assets`
|
|
{
|
|
name: "astro:assets",
|
|
config(_, env) {
|
|
isBuild = env.command === "build";
|
|
},
|
|
async resolveId(id, _importer, options) {
|
|
if (id === VIRTUAL_SERVICE_ID) {
|
|
if (options?.ssr) {
|
|
return await this.resolve(settings.config.image.service.entrypoint);
|
|
}
|
|
return await this.resolve("astro/assets/services/noop");
|
|
}
|
|
if (id === VIRTUAL_MODULE_ID) {
|
|
return resolvedVirtualModuleId;
|
|
}
|
|
},
|
|
load(id) {
|
|
if (id === resolvedVirtualModuleId) {
|
|
return {
|
|
code: `
|
|
export { getConfiguredImageService, isLocalService } from "astro/assets";
|
|
import { getImage as getImageInternal } from "astro/assets";
|
|
export { default as Image } from "astro/components/${imageComponentPrefix}Image.astro";
|
|
export { default as Picture } from "astro/components/${imageComponentPrefix}Picture.astro";
|
|
export { default as Font } from "astro/components/Font.astro";
|
|
export { inferRemoteSize } from "astro/assets/utils/inferRemoteSize.js";
|
|
|
|
export const imageConfig = ${JSON.stringify(settings.config.image)};
|
|
// This is used by the @astrojs/node integration to locate images.
|
|
// It's unused on other platforms, but on some platforms like Netlify (and presumably also Vercel)
|
|
// new URL("dist/...") is interpreted by the bundler as a signal to include that directory
|
|
// in the Lambda bundle, which would bloat the bundle with images.
|
|
// To prevent this, we mark the URL construction as pure,
|
|
// so that it's tree-shaken away for all platforms that don't need it.
|
|
export const outDir = /* #__PURE__ */ new URL(${JSON.stringify(
|
|
new URL(
|
|
settings.buildOutput === "server" ? settings.config.build.client : settings.config.outDir
|
|
)
|
|
)});
|
|
export const assetsDir = /* #__PURE__ */ new URL(${JSON.stringify(
|
|
settings.config.build.assets
|
|
)}, outDir);
|
|
export const getImage = async (options) => await getImageInternal(options, imageConfig);
|
|
`
|
|
};
|
|
}
|
|
},
|
|
buildStart() {
|
|
if (!isBuild) return;
|
|
globalThis.astroAsset.addStaticImage = addStaticImageFactory(settings);
|
|
},
|
|
// In build, rewrite paths to ESM imported images in code to their final location
|
|
async renderChunk(code) {
|
|
const assetUrlRE = /__ASTRO_ASSET_IMAGE__([\w$]+)__(?:_(.*?)__)?/g;
|
|
let match;
|
|
let s;
|
|
while (match = assetUrlRE.exec(code)) {
|
|
s = s || (s = new MagicString(code));
|
|
const [full, hash, postfix = ""] = match;
|
|
const file = this.getFileName(hash);
|
|
const fileExtension = extname(file);
|
|
const pf = getAssetsPrefix(fileExtension, settings.config.build.assetsPrefix);
|
|
const prefix = pf ? appendForwardSlash(pf) : resolvedConfig.base;
|
|
const outputFilepath = prefix + normalizePath(file + postfix);
|
|
s.overwrite(match.index, match.index + full.length, outputFilepath);
|
|
}
|
|
if (s) {
|
|
return {
|
|
code: s.toString(),
|
|
map: resolvedConfig.build.sourcemap ? s.generateMap({ hires: "boundary" }) : null
|
|
};
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
},
|
|
// Return a more advanced shape for images imported in ESM
|
|
{
|
|
name: "astro:assets:esm",
|
|
enforce: "pre",
|
|
config(_, env) {
|
|
shouldEmitFile = env.command === "build";
|
|
},
|
|
configResolved(viteConfig) {
|
|
resolvedConfig = viteConfig;
|
|
},
|
|
async load(id, options) {
|
|
if (assetRegex.test(id)) {
|
|
if (!globalThis.astroAsset.referencedImages)
|
|
globalThis.astroAsset.referencedImages = /* @__PURE__ */ new Set();
|
|
if (id !== removeQueryString(id)) {
|
|
globalThis.astroAsset.referencedImages.add(removeQueryString(id));
|
|
return;
|
|
}
|
|
if (!assetRegexEnds.test(id)) {
|
|
return;
|
|
}
|
|
const emitFile = shouldEmitFile ? this.emitFile.bind(this) : void 0;
|
|
const imageMetadata = await emitESMImage(
|
|
id,
|
|
this.meta.watchMode,
|
|
id.endsWith(".svg"),
|
|
emitFile
|
|
);
|
|
if (!imageMetadata) {
|
|
throw new AstroError({
|
|
...AstroErrorData.ImageNotFound,
|
|
message: AstroErrorData.ImageNotFound.message(id)
|
|
});
|
|
}
|
|
if (id.endsWith(".svg")) {
|
|
const contents = await fs.promises.readFile(imageMetadata.fsPath, { encoding: "utf8" });
|
|
return { code: makeSvgComponent(imageMetadata, contents) };
|
|
}
|
|
if (options?.ssr) {
|
|
return {
|
|
code: `export default ${getProxyCode(
|
|
imageMetadata,
|
|
settings.buildOutput === "server"
|
|
)}`
|
|
};
|
|
} else {
|
|
globalThis.astroAsset.referencedImages.add(imageMetadata.fsPath);
|
|
return {
|
|
code: `export default ${JSON.stringify(imageMetadata)}`
|
|
};
|
|
}
|
|
}
|
|
}
|
|
},
|
|
fontsPlugin({ settings, sync, logger })
|
|
];
|
|
}
|
|
export {
|
|
assets as default
|
|
};
|