import type { Ast, Script, Style, TemplateNode } from 'astro-parser'; import type { CompileOptions } from '../../@types/compiler'; import type { AstroConfig, AstroMarkdownOptions, TransformResult, ComponentInfo, Components } from '../../@types/astro'; import type { ImportDeclaration, ExportNamedDeclaration, VariableDeclarator, Identifier, ImportDefaultSpecifier } from '@babel/types'; import 'source-map-support/register.js'; import eslexer from 'es-module-lexer'; import esbuild from 'esbuild'; import path from 'path'; import { parse } from 'astro-parser'; import { walk, asyncWalk } from 'estree-walker'; import _babelGenerator from '@babel/generator'; import babelParser from '@babel/parser'; import { codeFrameColumns } from '@babel/code-frame'; import * as babelTraverse from '@babel/traverse'; import { error, warn } from '../../logger.js'; import { fetchContent } from './content.js'; import { isFetchContent } from './utils.js'; import { yellow } from 'kleur/colors'; import { isComponentTag, renderMarkdown } from '../utils'; import { transform } from '../transform/index.js'; import { PRISM_IMPORT } from '../transform/prism.js'; const traverse: typeof babelTraverse.default = (babelTraverse.default as any).default; // @ts-ignore const babelGenerator: typeof _babelGenerator = _babelGenerator.default; const { transformSync } = esbuild; interface Attribute { start: number; end: number; type: 'Attribute'; name: string; value: TemplateNode[] | boolean; } interface CodeGenOptions { compileOptions: CompileOptions; filename: string; fileID: string; } /** Format Astro internal import URL */ function internalImport(internalPath: string) { return `/_astro_internal/${internalPath}`; } /** Retrieve attributes from TemplateNode */ function getAttributes(attrs: Attribute[]): Record { let result: Record = {}; for (const attr of attrs) { if (attr.value === true) { result[attr.name] = JSON.stringify(attr.value); continue; } if (attr.value === false || attr.value === undefined) { // note: attr.value shouldn’t be `undefined`, but a bad transform would cause a compile error here, so prevent that continue; } if (attr.value.length === 0) { result[attr.name] = '""'; continue; } if (attr.value.length > 1) { result[attr.name] = '(' + attr.value .map((v: TemplateNode) => { if (v.content) { return v.content; } else { return JSON.stringify(getTextFromAttribute(v)); } }) .join('+') + ')'; continue; } const val = attr.value[0]; if (!val) { result[attr.name] = '(' + val + ')'; continue; } switch (val.type) { case 'MustacheTag': { // FIXME: this won't work when JSX element can appear in attributes (rare but possible). const codeChunks = val.expression.codeChunks[0]; if (codeChunks) { result[attr.name] = '(' + codeChunks + ')'; } else { throw new Error(`Parse error: ${attr.name}={}`); // if bad codeChunk, throw error } continue; } case 'Text': result[attr.name] = JSON.stringify(getTextFromAttribute(val)); continue; default: throw new Error(`UNKNOWN: ${val.type}`); } } return result; } /** Get value from a TemplateNode Attribute (text attributes only!) */ function getTextFromAttribute(attr: any): string { switch (attr.type) { case 'Text': { if (attr.raw !== undefined) { return attr.raw; } if (attr.data !== undefined) { return attr.data; } break; } case 'MustacheTag': { // FIXME: this won't work when JSX element can appear in attributes (rare but possible). return attr.expression.codeChunks[0]; } } throw new Error(`Unknown attribute type ${attr.type}`); } /** Convert TemplateNode attributes to string */ function generateAttributes(attrs: Record): string { let result = '{'; for (const [key, val] of Object.entries(attrs)) { result += JSON.stringify(key) + ':' + val + ','; } return result + '}'; } interface GetComponentWrapperOptions { filename: string; astroConfig: AstroConfig; } const PlainExtensions = new Set(['.js', '.jsx', '.ts', '.tsx']); /** Generate Astro-friendly component import */ function getComponentWrapper(_name: string, { url, importSpecifier }: ComponentInfo, opts: GetComponentWrapperOptions) { const { astroConfig, filename } = opts; const { astroRoot } = astroConfig; const currFileUrl = new URL(`file://${filename}`); const [name, kind] = _name.split(':'); const getComponentUrl = () => { const componentExt = path.extname(url); const ext = PlainExtensions.has(componentExt) ? '.js' : `${componentExt}.js`; const outUrl = new URL(url, currFileUrl); return '/_astro/' + path.posix.relative(astroRoot.pathname, outUrl.pathname).replace(/\.[^.]+$/, ext); }; const getComponentExport = () => { switch (importSpecifier.type) { case 'ImportDefaultSpecifier': return { value: 'default' }; case 'ImportSpecifier': { if (importSpecifier.imported.type === 'Identifier') { return { value: importSpecifier.imported.name }; } return { value: importSpecifier.imported.value }; } case 'ImportNamespaceSpecifier': { const [_, value] = name.split('.'); return { value }; } } }; const importInfo = kind ? { componentUrl: getComponentUrl(), componentExport: getComponentExport() } : {}; return { wrapper: `__astro_component(${name}, ${JSON.stringify({ hydrate: kind, displayName: name, ...importInfo })})`, wrapperImport: `import {__astro_component} from '${internalImport('__astro_component.js')}';`, }; } /** Evaluate expression (safely) */ function compileExpressionSafe(raw: string): string { let { code } = transformSync(raw, { loader: 'tsx', jsxFactory: 'h', jsxFragment: 'Fragment', charset: 'utf8', }); return code; } interface CompileResult { script: string; createCollection?: string; } interface CodegenState { filename: string; fileID: string; components: Components; css: string[]; markers: { insideMarkdown: boolean | Record; }; importExportStatements: Set; } /** Compile/prepare Astro frontmatter scripts */ function compileModule(module: Script, state: CodegenState, compileOptions: CompileOptions): CompileResult { const componentImports: ImportDeclaration[] = []; const componentProps: VariableDeclarator[] = []; const componentExports: ExportNamedDeclaration[] = []; const contentImports = new Map(); let script = ''; let propsStatement = ''; let contentCode = ''; // code for handling Astro.fetchContent(), if any; let createCollection = ''; // function for executing collection if (module) { const parseOptions: babelParser.ParserOptions = { sourceType: 'module', plugins: ['jsx', 'typescript', 'topLevelAwait'], }; let parseResult; try { parseResult = babelParser.parse(module.content, parseOptions); } catch (err) { const location = { start: err.loc }; const frame = codeFrameColumns(module.content, location); err.frame = frame; err.filename = state.filename; err.start = err.loc; throw err; } const program = parseResult.program; const { body } = program; let i = body.length; while (--i >= 0) { const node = body[i]; switch (node.type) { case 'ExportNamedDeclaration': { if (!node.declaration) break; // const replacement = extract_exports(node); if (node.declaration.type === 'VariableDeclaration') { // case 1: prop (export let title) const declaration = node.declaration.declarations[0]; if ((declaration.id as Identifier).name === '__layout' || (declaration.id as Identifier).name === '__content') { componentExports.push(node); } else { componentProps.push(declaration); } body.splice(i, 1); } else if (node.declaration.type === 'FunctionDeclaration') { // case 2: createCollection (export async function) if (!node.declaration.id || node.declaration.id.name !== 'createCollection') break; createCollection = module.content.substring(node.declaration.start || 0, node.declaration.end || 0); // remove node body.splice(i, 1); } break; } case 'FunctionDeclaration': { break; } case 'ImportDeclaration': { componentImports.push(node); body.splice(i, 1); // remove node break; } case 'VariableDeclaration': { for (const declaration of node.declarations) { // only select Astro.fetchContent() calls here. this utility filters those out for us. if (!isFetchContent(declaration)) continue; // remove node body.splice(i, 1); // a bit of munging let { id, init } = declaration; if (!id || !init || id.type !== 'Identifier') continue; if (init.type === 'AwaitExpression') { init = init.argument; const shortname = path.posix.relative(compileOptions.astroConfig.projectRoot.pathname, state.filename); warn(compileOptions.logging, shortname, yellow('awaiting Astro.fetchContent() not necessary')); } if (init.type !== 'CallExpression') continue; // gather data const namespace = id.name; if ((init as any).arguments[0].type !== 'StringLiteral') { throw new Error(`[Astro.fetchContent] Only string literals allowed, ex: \`Astro.fetchContent('./post/*.md')\`\n ${state.filename}`); } const spec = (init as any).arguments[0].value; if (typeof spec === 'string') contentImports.set(namespace, { spec, declarator: node.kind }); } break; } } } for (const componentImport of componentImports) { const importUrl = componentImport.source.value; for (const specifier of componentImport.specifiers) { const componentName = specifier.local.name; state.components.set(componentName, { importSpecifier: specifier, url: importUrl, }); } const { start, end } = componentImport; state.importExportStatements.add(module.content.slice(start || undefined, end || undefined)); } for (const componentImport of componentExports) { const { start, end } = componentImport; state.importExportStatements.add(module.content.slice(start || undefined, end || undefined)); } if (componentProps.length > 0) { propsStatement = 'let {'; for (const componentExport of componentProps) { propsStatement += `${(componentExport.id as Identifier).name}`; const { init } = componentExport; if (init) { propsStatement += `= ${babelGenerator(init).code}`; } propsStatement += `,`; } propsStatement += `} = props;\n`; } // handle createCollection, if any if (createCollection) { const ast = babelParser.parse(createCollection, { sourceType: 'module', }); traverse(ast, { enter({ node }) { switch (node.type) { case 'VariableDeclaration': { for (const declaration of node.declarations) { // only select Astro.fetchContent() calls here. this utility filters those out for us. if (!isFetchContent(declaration)) continue; // a bit of munging let { id, init } = declaration; if (!id || !init || id.type !== 'Identifier') continue; if (init.type === 'AwaitExpression') { init = init.argument; const shortname = path.relative(compileOptions.astroConfig.projectRoot.pathname, state.filename); warn(compileOptions.logging, shortname, yellow('awaiting Astro.fetchContent() not necessary')); } if (init.type !== 'CallExpression') continue; // gather data const namespace = id.name; if ((init as any).arguments[0].type !== 'StringLiteral') { throw new Error(`[Astro.fetchContent] Only string literals allowed, ex: \`Astro.fetchContent('./post/*.md')\`\n ${state.filename}`); } const spec = (init as any).arguments[0].value; if (typeof spec !== 'string') break; const globResult = fetchContent(spec, { namespace, filename: state.filename }); let imports = ''; for (const importStatement of globResult.imports) { imports += importStatement + '\n'; } createCollection = imports + '\nexport ' + createCollection.substring(0, declaration.start || 0) + globResult.code + createCollection.substring(declaration.end || 0); } break; } } }, }); } // Astro.fetchContent() for (const [namespace, { spec }] of contentImports.entries()) { const globResult = fetchContent(spec, { namespace, filename: state.filename }); for (const importStatement of globResult.imports) { state.importExportStatements.add(importStatement); } contentCode += globResult.code; } script = propsStatement + contentCode + babelGenerator(program).code; } return { script, createCollection: createCollection || undefined, }; } /** Compile styles */ function compileCss(style: Style, state: CodegenState) { walk(style, { enter(node: TemplateNode) { if (node.type === 'Style') { state.css.push(node.content.styles); // if multiple