mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 02:44:51 +00:00
78 lines
2.9 KiB
TypeScript
78 lines
2.9 KiB
TypeScript
import { pathToFileURL } from 'node:url'
|
|
import { createUnplugin } from 'unplugin'
|
|
import { parseQuery, parseURL } from 'ufo'
|
|
import { Component } from '@nuxt/schema'
|
|
import { genDynamicImport, genImport } from 'knitwork'
|
|
import MagicString from 'magic-string'
|
|
import { pascalCase } from 'scule'
|
|
|
|
interface LoaderOptions {
|
|
getComponents(): Component[]
|
|
mode: 'server' | 'client'
|
|
}
|
|
|
|
export const loaderPlugin = createUnplugin((options: LoaderOptions) => ({
|
|
name: 'nuxt:components-loader',
|
|
enforce: 'post',
|
|
transformInclude (id) {
|
|
const { pathname, search } = parseURL(decodeURIComponent(pathToFileURL(id).href))
|
|
const query = parseQuery(search)
|
|
// we only transform render functions
|
|
// from `type=template` (in Webpack) and bare `.vue` file (in Vite)
|
|
return pathname.endsWith('.vue') && (query.type === 'template' || !!query.macro || !search)
|
|
},
|
|
transform (code, id) {
|
|
return transform(code, id, options.getComponents(), options.mode)
|
|
}
|
|
}))
|
|
|
|
function findComponent (components: Component[], name: string, mode: LoaderOptions['mode']) {
|
|
const id = pascalCase(name).replace(/["']/g, '')
|
|
const component = components.find(component => id === component.pascalName && ['all', mode, undefined].includes(component.mode))
|
|
if (!component && components.some(component => id === component.pascalName)) {
|
|
return components.find(component => component.pascalName === 'ServerPlaceholder')
|
|
}
|
|
return component
|
|
}
|
|
|
|
function transform (code: string, id: string, components: Component[], mode: LoaderOptions['mode']) {
|
|
let num = 0
|
|
const imports = new Set<string>()
|
|
const map = new Map<Component, string>()
|
|
const s = new MagicString(code)
|
|
|
|
// replace `_resolveComponent("...")` to direct import
|
|
s.replace(/(?<=[ (])_?resolveComponent\(["'](lazy-|Lazy)?([^'"]*?)["']\)/g, (full, lazy, name) => {
|
|
const component = findComponent(components, name, mode)
|
|
if (component) {
|
|
const identifier = map.get(component) || `__nuxt_component_${num++}`
|
|
map.set(component, identifier)
|
|
const isClientOnly = component.mode === 'client'
|
|
if (isClientOnly) {
|
|
imports.add(genImport('#app/components/client-only', [{ name: 'createClientOnly' }]))
|
|
}
|
|
if (lazy) {
|
|
imports.add(genImport('vue', [{ name: 'defineAsyncComponent', as: '__defineAsyncComponent' }]))
|
|
imports.add(`const ${identifier}_lazy = __defineAsyncComponent(${genDynamicImport(component.filePath)})`)
|
|
return isClientOnly ? `createClientOnly(${identifier}_lazy)` : `${identifier}_lazy`
|
|
} else {
|
|
imports.add(genImport(component.filePath, [{ name: component.export, as: identifier }]))
|
|
return isClientOnly ? `createClientOnly(${identifier})` : identifier
|
|
}
|
|
}
|
|
// no matched
|
|
return full
|
|
})
|
|
|
|
if (imports.size) {
|
|
s.prepend([...imports, ''].join('\n'))
|
|
}
|
|
|
|
if (s.hasChanged()) {
|
|
return {
|
|
code: s.toString(),
|
|
map: s.generateMap({ source: id, includeContent: true })
|
|
}
|
|
}
|
|
}
|