mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 02:44:51 +00:00
134 lines
5.6 KiB
TypeScript
134 lines
5.6 KiB
TypeScript
import { createUnplugin } from 'unplugin'
|
|
import { genDynamicImport, genImport } from 'knitwork'
|
|
import MagicString from 'magic-string'
|
|
import { pascalCase } from 'scule'
|
|
import { resolve } from 'pathe'
|
|
import type { Component, ComponentsOptions } from 'nuxt/schema'
|
|
|
|
import { logger, tryUseNuxt } from '@nuxt/kit'
|
|
import { distDir } from '../dirs'
|
|
import { isVue } from '../core/utils'
|
|
|
|
interface LoaderOptions {
|
|
getComponents (): Component[]
|
|
mode: 'server' | 'client'
|
|
sourcemap?: boolean
|
|
transform?: ComponentsOptions['transform']
|
|
experimentalComponentIslands?: boolean
|
|
}
|
|
|
|
export const loaderPlugin = createUnplugin((options: LoaderOptions) => {
|
|
const exclude = options.transform?.exclude || []
|
|
const include = options.transform?.include || []
|
|
const serverComponentRuntime = resolve(distDir, 'components/runtime/server-component')
|
|
const clientDelayedComponentRuntime = resolve(distDir, 'components/runtime/client-delayed-component')
|
|
return {
|
|
name: 'nuxt:components-loader',
|
|
enforce: 'post',
|
|
transformInclude (id) {
|
|
if (exclude.some(pattern => pattern.test(id))) {
|
|
return false
|
|
}
|
|
if (include.some(pattern => pattern.test(id))) {
|
|
return true
|
|
}
|
|
return isVue(id, { type: ['template', 'script'] }) || !!id.match(/\.[tj]sx$/)
|
|
},
|
|
transform (code) {
|
|
const components = options.getComponents()
|
|
|
|
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\(\s*["'](lazy-|Lazy)?([^'"]*?)["'][\s,]*[^)]*\)/g, (full: string, lazy: string, name: string) => {
|
|
const component = findComponent(components, name, options.mode)
|
|
if (component) {
|
|
// @ts-expect-error TODO: refactor to nuxi
|
|
if (component._internal_install && tryUseNuxt()?.options.test === false) {
|
|
// @ts-expect-error TODO: refactor to nuxi
|
|
import('../core/features').then(({ installNuxtModule }) => installNuxtModule(component._internal_install))
|
|
}
|
|
let identifier = map.get(component) || `__nuxt_component_${num++}`
|
|
map.set(component, identifier)
|
|
|
|
const isServerOnly = !component._raw && component.mode === 'server' &&
|
|
!components.some(c => c.pascalName === component.pascalName && c.mode === 'client')
|
|
if (isServerOnly) {
|
|
imports.add(genImport(serverComponentRuntime, [{ name: 'createServerComponent' }]))
|
|
imports.add(`const ${identifier} = createServerComponent(${JSON.stringify(name)})`)
|
|
if (!options.experimentalComponentIslands) {
|
|
logger.warn(`Standalone server components (\`${name}\`) are not yet supported without enabling \`experimental.componentIslands\`.`)
|
|
}
|
|
return identifier
|
|
}
|
|
|
|
const isClientOnly = !component._raw && component.mode === 'client'
|
|
if (isClientOnly) {
|
|
imports.add(genImport('#app/components/client-only', [{ name: 'createClientOnly' }]))
|
|
identifier += '_client'
|
|
}
|
|
|
|
if (lazy) {
|
|
// Temporary hardcoded check to verify runtime functionality
|
|
if (name === 'DelayedWrapperTestComponent') {
|
|
imports.add(genImport('vue', [{ name: 'defineAsyncComponent', as: '__defineAsyncComponent' }]))
|
|
imports.add(genImport(clientDelayedComponentRuntime, [{ name: 'createLazyIOClientPage' }]))
|
|
identifier += '_delayedIO'
|
|
imports.add(`const ${identifier} = createLazyIOClientPage(__defineAsyncComponent(${genDynamicImport(component.filePath, { interopDefault: false })}.then(c => c.${component.export ?? 'default'} || c)))`)
|
|
} else {
|
|
imports.add(genImport('vue', [{ name: 'defineAsyncComponent', as: '__defineAsyncComponent' }]))
|
|
identifier += '_lazy'
|
|
imports.add(`const ${identifier} = __defineAsyncComponent(${genDynamicImport(component.filePath, { interopDefault: false })}.then(c => c.${component.export ?? 'default'} || c)${isClientOnly ? '.then(c => createClientOnly(c))' : ''})`)
|
|
}
|
|
} else {
|
|
imports.add(genImport(component.filePath, [{ name: component._raw ? 'default' : component.export, as: identifier }]))
|
|
|
|
if (isClientOnly) {
|
|
imports.add(`const ${identifier}_wrapped = createClientOnly(${identifier})`)
|
|
identifier += '_wrapped'
|
|
}
|
|
}
|
|
|
|
return identifier
|
|
}
|
|
// no matched
|
|
return full
|
|
})
|
|
|
|
if (imports.size) {
|
|
s.prepend([...imports, ''].join('\n'))
|
|
}
|
|
|
|
if (s.hasChanged()) {
|
|
return {
|
|
code: s.toString(),
|
|
map: options.sourcemap
|
|
? s.generateMap({ hires: true })
|
|
: undefined,
|
|
}
|
|
}
|
|
},
|
|
}
|
|
})
|
|
|
|
function findComponent (components: Component[], name: string, mode: LoaderOptions['mode']) {
|
|
const id = pascalCase(name).replace(/["']/g, '')
|
|
// Prefer exact match
|
|
const component = components.find(component => id === component.pascalName && ['all', mode, undefined].includes(component.mode))
|
|
if (component) { return component }
|
|
|
|
const otherModeComponent = components.find(component => id === component.pascalName)
|
|
|
|
// Render client-only components on the server with <ServerPlaceholder> (a simple div)
|
|
if (mode === 'server' && otherModeComponent) {
|
|
return components.find(c => c.pascalName === 'ServerPlaceholder')
|
|
}
|
|
|
|
// Return the other-mode component in all other cases - we'll handle createClientOnly
|
|
// and createServerComponent above
|
|
return otherModeComponent
|
|
}
|