mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-22 08:29:46 +00:00
134 lines
4.5 KiB
TypeScript
134 lines
4.5 KiB
TypeScript
import { pathToFileURL } from 'node:url'
|
|
import { createUnplugin } from 'unplugin'
|
|
import { parseQuery, parseURL, withQuery } from 'ufo'
|
|
import { findStaticImports, findExports } from 'mlly'
|
|
import MagicString from 'magic-string'
|
|
import { isAbsolute } from 'pathe'
|
|
|
|
export interface TransformMacroPluginOptions {
|
|
macros: Record<string, string>
|
|
dev?: boolean
|
|
sourcemap?: boolean
|
|
}
|
|
|
|
export const TransformMacroPlugin = createUnplugin((options: TransformMacroPluginOptions) => {
|
|
return {
|
|
name: 'nuxt:pages-macros-transform',
|
|
enforce: 'post',
|
|
transformInclude (id) {
|
|
if (!id || id.startsWith('\x00')) { return false }
|
|
const { pathname, search } = parseURL(decodeURIComponent(pathToFileURL(id).href))
|
|
return pathname.endsWith('.vue') || !!parseQuery(search).macro
|
|
},
|
|
transform (code, id) {
|
|
const s = new MagicString(code)
|
|
const { search } = parseURL(decodeURIComponent(pathToFileURL(id).href))
|
|
|
|
function result () {
|
|
if (s.hasChanged()) {
|
|
return {
|
|
code: s.toString(),
|
|
map: options.sourcemap
|
|
? s.generateMap({ source: id, includeContent: true })
|
|
: undefined
|
|
}
|
|
}
|
|
}
|
|
|
|
// Tree-shake out any runtime references to the macro.
|
|
// We do this first as it applies to all files, not just those with the query
|
|
for (const macro in options.macros) {
|
|
const match = code.match(new RegExp(`\\b${macro}\\s*\\(\\s*`))
|
|
if (match?.[0]) {
|
|
s.overwrite(match.index!, match.index! + match[0].length, `/*#__PURE__*/ false && ${match[0]}`)
|
|
}
|
|
}
|
|
|
|
if (!parseQuery(search).macro) {
|
|
return result()
|
|
}
|
|
|
|
const imports = findStaticImports(code)
|
|
|
|
// Purge all imports bringing side effects, such as CSS imports
|
|
for (const entry of imports) {
|
|
if (!entry.imports) {
|
|
s.remove(entry.start, entry.end)
|
|
}
|
|
}
|
|
|
|
// [webpack] Re-export any imports from script blocks in the components
|
|
// with workaround for vue-loader bug: https://github.com/vuejs/vue-loader/pull/1911
|
|
const scriptImport = imports.find(i => parseQuery(i.specifier.replace('?macro=true', '')).type === 'script')
|
|
if (scriptImport) {
|
|
// https://github.com/vuejs/vue-loader/pull/1911
|
|
// https://github.com/vitejs/vite/issues/8473
|
|
const url = isAbsolute(scriptImport.specifier) ? pathToFileURL(scriptImport.specifier).href : scriptImport.specifier
|
|
const parsed = parseURL(decodeURIComponent(url).replace('?macro=true', ''))
|
|
const specifier = withQuery(parsed.pathname, { macro: 'true', ...parseQuery(parsed.search) })
|
|
s.overwrite(0, code.length, `export { meta } from "${specifier}"`)
|
|
return result()
|
|
}
|
|
|
|
const currentExports = findExports(code)
|
|
for (const match of currentExports) {
|
|
if (match.type !== 'default') {
|
|
continue
|
|
}
|
|
if (match.specifier && match._type === 'named') {
|
|
// [webpack] Export named exports rather than the default (component)
|
|
s.overwrite(match.start, match.end, `export {${Object.values(options.macros).join(', ')}} from "${match.specifier}"`)
|
|
return result()
|
|
} else if (!options.dev) {
|
|
// ensure we tree-shake any _other_ default exports out of the macro script
|
|
s.overwrite(match.start, match.end, '/*#__PURE__*/ false &&')
|
|
s.append('\nexport default {}')
|
|
}
|
|
}
|
|
|
|
for (const macro in options.macros) {
|
|
// Skip already-processed macros
|
|
if (currentExports.some(e => e.name === options.macros[macro])) {
|
|
continue
|
|
}
|
|
|
|
const { 0: match, index = 0 } = code.match(new RegExp(`\\b${macro}\\s*\\(\\s*`)) || {} as RegExpMatchArray
|
|
const macroContent = match ? extractObject(code.slice(index + match.length)) : 'undefined'
|
|
|
|
s.append(`\nexport const ${options.macros[macro]} = ${macroContent}`)
|
|
}
|
|
|
|
return result()
|
|
}
|
|
}
|
|
})
|
|
|
|
const starts = {
|
|
'{': '}',
|
|
'[': ']',
|
|
'(': ')',
|
|
'<': '>',
|
|
'"': '"',
|
|
"'": "'"
|
|
}
|
|
|
|
const QUOTE_RE = /["']/
|
|
|
|
function extractObject (code: string) {
|
|
// Strip comments
|
|
code = code.replace(/^\s*\/\/.*$/gm, '')
|
|
|
|
const stack: string[] = []
|
|
let result = ''
|
|
do {
|
|
if (stack[0] === code[0] && result.slice(-1) !== '\\') {
|
|
stack.shift()
|
|
} else if (code[0] in starts && !QUOTE_RE.test(stack[0])) {
|
|
stack.unshift(starts[code[0] as keyof typeof starts])
|
|
}
|
|
result += code[0]
|
|
code = code.slice(1)
|
|
} while (stack.length && code.length)
|
|
return result
|
|
}
|