fix(nuxt): use parser to treeshake `<ClientOnly>` (#8713)

This commit is contained in:
Julien Huang 2023-02-08 09:59:57 +01:00 committed by GitHub
parent e451a9965e
commit 113ce71c34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 411 additions and 53 deletions

View File

@ -70,7 +70,6 @@
"scule": "^1.0.0", "scule": "^1.0.0",
"strip-literal": "^1.0.1", "strip-literal": "^1.0.1",
"ufo": "^1.0.1", "ufo": "^1.0.1",
"ultrahtml": "^1.2.0",
"unctx": "^2.1.1", "unctx": "^2.1.1",
"unenv": "^1.1.0", "unenv": "^1.1.0",
"unhead": "^1.0.21", "unhead": "^1.0.21",

View File

@ -192,35 +192,35 @@ export default defineNuxtModule<ComponentsOptions>({
const mode = isClient ? 'client' : 'server' const mode = isClient ? 'client' : 'server'
config.plugins = config.plugins || [] config.plugins = config.plugins || []
config.plugins.push(loaderPlugin.vite({
sourcemap: nuxt.options.sourcemap[mode],
getComponents,
mode,
experimentalComponentIslands: nuxt.options.experimental.componentIslands
}))
if (nuxt.options.experimental.treeshakeClientOnly && isServer) { if (nuxt.options.experimental.treeshakeClientOnly && isServer) {
config.plugins.push(TreeShakeTemplatePlugin.vite({ config.plugins.push(TreeShakeTemplatePlugin.vite({
sourcemap: nuxt.options.sourcemap[mode], sourcemap: nuxt.options.sourcemap[mode],
getComponents getComponents
})) }))
} }
config.plugins.push(loaderPlugin.vite({
sourcemap: nuxt.options.sourcemap[mode],
getComponents,
mode,
experimentalComponentIslands: nuxt.options.experimental.componentIslands
}))
}) })
nuxt.hook('webpack:config', (configs) => { nuxt.hook('webpack:config', (configs) => {
configs.forEach((config) => { configs.forEach((config) => {
const mode = config.name === 'client' ? 'client' : 'server' const mode = config.name === 'client' ? 'client' : 'server'
config.plugins = config.plugins || [] config.plugins = config.plugins || []
config.plugins.push(loaderPlugin.webpack({
sourcemap: nuxt.options.sourcemap[mode],
getComponents,
mode,
experimentalComponentIslands: nuxt.options.experimental.componentIslands
}))
if (nuxt.options.experimental.treeshakeClientOnly && mode === 'server') { if (nuxt.options.experimental.treeshakeClientOnly && mode === 'server') {
config.plugins.push(TreeShakeTemplatePlugin.webpack({ config.plugins.push(TreeShakeTemplatePlugin.webpack({
sourcemap: nuxt.options.sourcemap[mode], sourcemap: nuxt.options.sourcemap[mode],
getComponents getComponents
})) }))
} }
config.plugins.push(loaderPlugin.webpack({
sourcemap: nuxt.options.sourcemap[mode],
getComponents,
mode,
experimentalComponentIslands: nuxt.options.experimental.componentIslands
}))
}) })
}) })
} }

View File

@ -1,9 +1,10 @@
import { pathToFileURL } from 'node:url' import { pathToFileURL } from 'node:url'
import { parseURL } from 'ufo' import { parseURL } from 'ufo'
import MagicString from 'magic-string' import MagicString from 'magic-string'
import type { Node } from 'ultrahtml' import { walk } from 'estree-walker'
import { parse, walk, ELEMENT_NODE } from 'ultrahtml' import type { CallExpression, Property, Identifier, ImportDeclaration, MemberExpression, Literal, ReturnStatement, VariableDeclaration, ObjectExpression, Node } from 'estree'
import { createUnplugin } from 'unplugin' import { createUnplugin } from 'unplugin'
import escapeStringRegexp from 'escape-string-regexp'
import type { Component } from '@nuxt/schema' import type { Component } from '@nuxt/schema'
import { resolve } from 'pathe' import { resolve } from 'pathe'
import { distDir } from '../dirs' import { distDir } from '../dirs'
@ -13,57 +14,115 @@ interface TreeShakeTemplatePluginOptions {
getComponents (): Component[] getComponents (): Component[]
} }
const PLACEHOLDER_RE = /^(v-slot|#)(fallback|placeholder)/ type AcornNode<N> = N & { start: number, end: number }
const SSR_RENDER_RE = /ssrRenderComponent/
const PLACEHOLDER_EXACT_RE = /^(fallback|placeholder)$/
export const TreeShakeTemplatePlugin = createUnplugin((options: TreeShakeTemplatePluginOptions) => { export const TreeShakeTemplatePlugin = createUnplugin((options: TreeShakeTemplatePluginOptions) => {
const regexpMap = new WeakMap<Component[], [RegExp, string[]]>() const regexpMap = new WeakMap<Component[], [RegExp, RegExp, string[]]>()
return { return {
name: 'nuxt:tree-shake-template', name: 'nuxt:tree-shake-template',
enforce: 'pre', enforce: 'post',
transformInclude (id) { transformInclude (id) {
const { pathname } = parseURL(decodeURIComponent(pathToFileURL(id).href)) const { pathname } = parseURL(decodeURIComponent(pathToFileURL(id).href))
return pathname.endsWith('.vue') return pathname.endsWith('.vue')
}, },
async transform (code, id) { transform (code, id) {
const template = code.match(/<template>([\s\S]*)<\/template>/)
if (!template) { return }
const components = options.getComponents() const components = options.getComponents()
if (!regexpMap.has(components)) { if (!regexpMap.has(components)) {
const clientOnlyComponents = components const clientOnlyComponents = components
.filter(c => c.mode === 'client' && !components.some(other => other.mode !== 'client' && other.pascalName === c.pascalName && other.filePath !== resolve(distDir, 'app/components/server-placeholder'))) .filter(c => c.mode === 'client' && !components.some(other => other.mode !== 'client' && other.pascalName === c.pascalName && other.filePath !== resolve(distDir, 'app/components/server-placeholder')))
.flatMap(c => [c.pascalName, c.kebabName]) .flatMap(c => [c.pascalName, c.kebabName.replaceAll('-', '_')])
.concat(['ClientOnly', 'client-only']) .concat(['ClientOnly', 'client_only'])
const tags = clientOnlyComponents
.map(component => `<(${component})[^>]*>[\\s\\S]*?<\\/(${component})>`)
regexpMap.set(components, [new RegExp(`(${tags.join('|')})`, 'g'), clientOnlyComponents]) regexpMap.set(components, [new RegExp(`(${clientOnlyComponents.join('|')})`), new RegExp(`^(${clientOnlyComponents.map(c => `(?:(?:_unref\\()?(?:_component_)?(?:Lazy|lazy_)?${c}\\)?)`).join('|')})$`), clientOnlyComponents])
} }
const [COMPONENTS_RE, clientOnlyComponents] = regexpMap.get(components)! const s = new MagicString(code)
const importDeclarations: AcornNode<ImportDeclaration>[] = []
const [COMPONENTS_RE, COMPONENTS_IDENTIFIERS_RE] = regexpMap.get(components)!
if (!COMPONENTS_RE.test(code)) { return } if (!COMPONENTS_RE.test(code)) { return }
const s = new MagicString(code) walk(this.parse(code, { sourceType: 'module', ecmaVersion: 'latest' }) as Node, {
enter: (_node) => {
const node = _node as AcornNode<CallExpression | ImportDeclaration>
if (node.type === 'ImportDeclaration') {
importDeclarations.push(node)
} else if (
node.type === 'CallExpression' &&
node.callee.type === 'Identifier' &&
SSR_RENDER_RE.test(node.callee.name)
) {
const [componentCall, _, children] = node.arguments
if (componentCall.type === 'Identifier' || componentCall.type === 'MemberExpression' || componentCall.type === 'CallExpression') {
const componentName = getComponentName(node)
const isClientComponent = COMPONENTS_IDENTIFIERS_RE.test(componentName)
const isClientOnlyComponent = /^(?:_unref\()?(?:_component_)?(?:Lazy|lazy_)?(?:client_only|ClientOnly\)?)$/.test(componentName)
if (isClientComponent && children?.type === 'ObjectExpression') {
const slotsToRemove = isClientOnlyComponent ? children.properties.filter(prop => prop.type === 'Property' && prop.key.type === 'Identifier' && !PLACEHOLDER_EXACT_RE.test(prop.key.name)) as AcornNode<Property>[] : children.properties as AcornNode<Property>[]
const ast = parse(template[0]) for (const slot of slotsToRemove) {
await walk(ast, (node) => { const componentsSet = new Set<string>()
if (node.type !== ELEMENT_NODE || !clientOnlyComponents.includes(node.name) || !node.children?.length) { s.remove(slot.start, slot.end + 1)
return const removedCode = `({${code.slice(slot.start, slot.end + 1)}})`
} const currentCode = s.toString()
walk(this.parse(removedCode, { sourceType: 'module', ecmaVersion: 'latest' }) as Node, {
enter: (_node) => {
const node = _node as AcornNode<CallExpression>
if (node.type === 'CallExpression' && node.callee.type === 'Identifier' && SSR_RENDER_RE.test(node.callee.name)) {
const componentNode = node.arguments[0]
const fallback = node.children.find( if (componentNode.type === 'CallExpression') {
(n: Node) => n.name === 'template' && const identifier = componentNode.arguments[0] as Identifier
Object.entries(n.attributes as Record<string, string>)?.flat().some(attr => PLACEHOLDER_RE.test(attr)) if (!isRenderedInCode(currentCode, removedCode.slice((componentNode as AcornNode<CallExpression>).start, (componentNode as AcornNode<CallExpression>).end))) { componentsSet.add(identifier.name) }
) } else if (componentNode.type === 'Identifier' && !isRenderedInCode(currentCode, componentNode.name)) {
componentsSet.add(componentNode.name)
} else if (componentNode.type === 'MemberExpression') {
// expect componentNode to be a memberExpression (mostly used in dev with $setup[])
const { start, end } = componentNode as AcornNode<MemberExpression>
if (!isRenderedInCode(currentCode, removedCode.slice(start, end))) {
componentsSet.add(((componentNode as MemberExpression).property as Literal).value as string)
// remove the component from the return statement of `setup()`
walk(this.parse(code, { sourceType: 'module', ecmaVersion: 'latest' }) as Node, {
enter: (node) => {
removeFromSetupReturnStatement(s, node as Property, ((componentNode as MemberExpression).property as Literal).value as string)
}
})
}
}
}
}
})
const componentsToRemove = [...componentsSet]
for (const componentName of componentsToRemove) {
let removed = false
// remove const _component_ = resolveComponent...
const VAR_RE = new RegExp(`(?:const|let|var) ${componentName} = ([^;\\n]*);?`)
s.replace(VAR_RE, () => {
removed = true
return ''
})
if (!removed) {
// remove direct import
const declaration = findImportDeclaration(importDeclarations, componentName)
if (declaration) {
if (declaration.specifiers.length > 1) {
const componentSpecifier = declaration.specifiers.find(s => s.local.name === componentName) as AcornNode<Identifier> | undefined
try { if (componentSpecifier) { s.remove(componentSpecifier.start, componentSpecifier.end + 1) }
// Replace node content } else {
const text = fallback ? code.slice(template.index! + fallback.loc[0].start, template.index! + fallback.loc[fallback.loc.length - 1].end) : '' s.remove(declaration.start, declaration.end)
s.overwrite(template.index! + node.loc[0].end, template.index! + node.loc[node.loc.length - 1].start, text) }
} catch (err) { }
// This may fail if we have a nested client-only component and are trying }
// to replace some text that has already been replaced }
}
}
}
}
} }
}) })
@ -78,3 +137,63 @@ export const TreeShakeTemplatePlugin = createUnplugin((options: TreeShakeTemplat
} }
} }
}) })
/**
* find and return the importDeclaration that contain the import specifier
*
* @param {AcornNode<ImportDeclaration>[]} declarations - list of import declarations
* @param {string} importName - name of the import
*/
function findImportDeclaration (declarations: AcornNode<ImportDeclaration>[], importName: string): AcornNode<ImportDeclaration> | undefined {
const declaration = declarations.find((d) => {
const specifier = d.specifiers.find(s => s.local.name === importName)
if (specifier) { return true }
return false
})
return declaration
}
/**
* test if the name argument is used to render a component in the code
*
* @param code code to test
* @param name component name
*/
function isRenderedInCode (code: string, name: string) {
return new RegExp(`ssrRenderComponent\\(${escapeStringRegexp(name)}`).test(code)
}
/**
* retrieve the component identifier being used on ssrRender callExpression
*
* @param {CallExpression} ssrRenderNode - ssrRender callExpression
*/
function getComponentName (ssrRenderNode: AcornNode<CallExpression>): string {
const componentCall = ssrRenderNode.arguments[0] as Identifier | MemberExpression | CallExpression
if (componentCall.type === 'Identifier') {
return componentCall.name
} else if (componentCall.type === 'MemberExpression') {
return (componentCall.property as Literal).value as string
}
return (componentCall.arguments[0] as Identifier).name
}
/**
* remove a key from the return statement of the setup function
*/
function removeFromSetupReturnStatement (s: MagicString, node: Property, name: string) {
if (node.type === 'Property' && node.key.type === 'Identifier' && node.key.name === 'setup' && node.value.type === 'FunctionExpression') {
const returnStatement = node.value.body.body.find(n => n.type === 'ReturnStatement') as ReturnStatement | undefined
if (returnStatement?.argument?.type === 'Identifier') {
const returnIdentifier = returnStatement.argument.name
const returnedDeclaration = node.value.body.body.find(n => n.type === 'VariableDeclaration' && (n.declarations[0].id as Identifier).name === returnIdentifier) as AcornNode<VariableDeclaration>
const componentProperty = (returnedDeclaration?.declarations[0].init as ObjectExpression)?.properties.find(p => ((p as Property).key as Identifier).name === name) as AcornNode<Property>
if (componentProperty) { s.remove(componentProperty.start, componentProperty.end + 1) }
} else if (returnStatement?.argument?.type === 'ObjectExpression') {
const componentProperty = returnStatement.argument?.properties.find(p => ((p as Property).key as Identifier).name === name) as AcornNode<Property>
if (componentProperty) { s.remove(componentProperty.start, componentProperty.end + 1) }
}
}
}

View File

@ -0,0 +1,38 @@
<template>
<div>
<div>
<Glob />
</div>
{{ hello }}
<div class="not-client">
Hello
</div>
<ClientOnly>
<HelloWorld />
<Glob />
<SomeGlob />
</ClientOnly>
<ClientOnly>
<div class="should-be-treeshaken">
this should not be visible
</div>
<ClientImport />
<Treeshaken />
<ResolvedImport />
</ClientOnly>
</div>
</template>
<script setup>
import { Treeshaken } from 'somepath'
import HelloWorld from '../HelloWorld.vue'
import { Glob, ClientImport } from '#components'
const hello = 'world'
</script>
<style scoped>
.not-client {
color: "red";
}
</style>

View File

@ -147,6 +147,18 @@ const expectedComponents = [
prefetch: false, prefetch: false,
preload: false preload: false
}, },
{
chunkName: 'components/client-with-client-only-setup',
export: 'default',
global: undefined,
island: undefined,
kebabName: 'client-with-client-only-setup',
mode: 'all',
pascalName: 'ClientWithClientOnlySetup',
prefetch: false,
preload: false,
shortPath: 'components/client/WithClientOnlySetup.vue'
},
{ {
mode: 'server', mode: 'server',
pascalName: 'ParentFolder', pascalName: 'ParentFolder',

View File

@ -0,0 +1,134 @@
import { readFileSync } from 'node:fs'
import path from 'node:path'
import { describe, it, expect, vi } from 'vitest'
import * as VueCompilerSFC from 'vue/compiler-sfc'
import type { Plugin } from 'vite'
import { Parser } from 'acorn'
import type { Options } from '@vitejs/plugin-vue'
import _vuePlugin from '@vitejs/plugin-vue'
import { TreeShakeTemplatePlugin } from '../src/components/tree-shake'
import { fixtureDir } from './utils'
vi.mock('node:crypto', () => ({
update: vi.fn().mockReturnThis(),
digest: vi.fn().mockReturnValue('one-hash-to-rule-them-all'),
createHash: vi.fn().mockReturnThis()
}))
// mock due to differences of results between windows and linux
vi.spyOn(path, 'relative').mockImplementation((from: string, to: string) => {
if (to.includes('SomeComponent')) {
return to
}
return path.resolve(from, to)
})
function vuePlugin (options: Options) {
return {
..._vuePlugin(options),
handleHotUpdate () {},
configureDevServer () {}
}
}
const WithClientOnly = readFileSync(path.resolve(fixtureDir, './components/client/WithClientOnlySetup.vue')).toString()
const treeshakeTemplatePlugin = TreeShakeTemplatePlugin.raw({ sourcemap: false, getComponents () { return [] } }, { framework: 'rollup' }) as Plugin
const treeshake = async (source: string): Promise<string> => {
const result = await (treeshakeTemplatePlugin.transform! as Function).call({
parse: (code: string, opts: any = {}) => Parser.parse(code, {
sourceType: 'module',
ecmaVersion: 'latest',
locations: true,
...opts
})
}, source)
return typeof result === 'string' ? result : result?.code
}
async function SFCCompile (name: string, source: string, options: Options, ssr = false): Promise<string> {
const result = await (vuePlugin({
compiler: VueCompilerSFC,
...options
}).transform! as Function).call({
parse: (code: string, opts: any = {}) => Parser.parse(code, {
sourceType: 'module',
ecmaVersion: 'latest',
locations: true,
...opts
})
}, source, name, {
ssr
})
return typeof result === 'string' ? result : result?.code
}
const stateToTest: {name: string, options: Partial<Options & {devServer: {config: {server: any}}}> }[] = [
{
name: 'prod',
options: {
isProduction: true
}
},
{
name: 'dev not inlined',
options: {
isProduction: false,
devServer: {
config: {
// trigger dev behavior
server: false
}
}
}
}
]
describe('treeshake client only in ssr', () => {
vi.spyOn(process, 'cwd').mockImplementation(() => '')
for (const [index, state] of stateToTest.entries()) {
it(`should treeshake ClientOnly correctly in ${state.name}`, async () => {
// add index to avoid using vite vue plugin cache
const clientResult = await SFCCompile(`SomeComponent${index}.vue`, WithClientOnly, state.options)
const ssrResult = await SFCCompile(`SomeComponent${index}.vue`, WithClientOnly, state.options, true)
const treeshaked = await treeshake(ssrResult)
const [_, scopeId] = clientResult.match(/_pushScopeId\("(.*)"\)/)!
// ensure the id is correctly passed between server and client
expect(clientResult).toContain(`pushScopeId("${scopeId}")`)
expect(treeshaked).toContain(`<div ${scopeId}>`)
expect(clientResult).toContain('should-be-treeshaken')
expect(treeshaked).not.toContain('should-be-treeshaken')
expect(treeshaked).not.toContain("import HelloWorld from '../HelloWorld.vue'")
expect(clientResult).toContain("import HelloWorld from '../HelloWorld.vue'")
expect(treeshaked).not.toContain("import { Treeshaken } from 'somepath'")
expect(clientResult).toContain("import { Treeshaken } from 'somepath'")
// remove resolved import
expect(treeshaked).not.toContain('const _component_ResolvedImport =')
expect(clientResult).toContain('const _component_ResolvedImport =')
// expect import of ClientImport to be treeshaken but not Glob since it is also used outside <ClientOnly>
expect(treeshaked).not.toContain('ClientImport')
expect(treeshaked).toContain('import { Glob, } from \'#components\'')
if (state.options.isProduction === false) {
// treeshake at inlined template
expect(treeshaked).not.toContain('ssrRenderComponent($setup["HelloWorld"]')
expect(treeshaked).toContain('ssrRenderComponent($setup["Glob"]')
} else {
// treeshake unref
expect(treeshaked).not.toContain('ssrRenderComponent(_unref(HelloWorld')
expect(treeshaked).toContain('ssrRenderComponent(_unref(Glob')
}
expect(treeshaked).toMatchSnapshot()
})
}
})

View File

@ -0,0 +1,3 @@
import { resolve } from 'node:path'
export const fixtureDir = resolve(__dirname, 'fixture')

View File

@ -445,7 +445,6 @@ importers:
scule: ^1.0.0 scule: ^1.0.0
strip-literal: ^1.0.1 strip-literal: ^1.0.1
ufo: ^1.0.1 ufo: ^1.0.1
ultrahtml: ^1.2.0
unbuild: ^1.1.1 unbuild: ^1.1.1
unctx: ^2.1.1 unctx: ^2.1.1
unenv: ^1.1.0 unenv: ^1.1.0
@ -492,7 +491,6 @@ importers:
scule: 1.0.0 scule: 1.0.0
strip-literal: 1.0.1 strip-literal: 1.0.1
ufo: 1.0.1 ufo: 1.0.1
ultrahtml: 1.2.0
unctx: 2.1.1 unctx: 2.1.1
unenv: 1.1.0 unenv: 1.1.0
unhead: 1.0.21 unhead: 1.0.21
@ -8151,10 +8149,6 @@ packages:
/ufo/1.0.1: /ufo/1.0.1:
resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==} resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==}
/ultrahtml/1.2.0:
resolution: {integrity: sha512-vxZM2yNvajRmCj/SknRYGNXk2tqiy6kRNvZjJLaleG3zJbSh/aNkOqD1/CVzypw8tyHyhpzYuwQgMMhUB4ZVNQ==}
dev: false
/unbox-primitive/1.0.2: /unbox-primitive/1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies: dependencies:

View File

@ -444,6 +444,16 @@ describe('server tree shaking', () => {
const html = await $fetch('/client') const html = await $fetch('/client')
expect(html).toContain('This page should not crash when rendered') expect(html).toContain('This page should not crash when rendered')
expect(html).toContain('fallback for ClientOnly')
expect(html).not.toContain('rendered client-side')
expect(html).not.toContain('id="client-side"')
const page = await createPage('/client')
await page.waitForLoadState('networkidle')
// ensure scoped classes are correctly assigned between client and server
expect(await page.$eval('.red', e => getComputedStyle(e).color)).toBe('rgb(255, 0, 0)')
expect(await page.$eval('.blue', e => getComputedStyle(e).color)).toBe('rgb(0, 0, 255)')
expect(await page.locator('#client-side').textContent()).toContain('This should be rendered client-side')
}) })
}) })

View File

@ -9,6 +9,7 @@
<template #test> <template #test>
<div class="slot-test"> <div class="slot-test">
Hello Hello
<BreaksServer />
</div> </div>
</template> </template>
</ClientSetupScript> </ClientSetupScript>
@ -59,6 +60,9 @@
<script setup lang="ts"> <script setup lang="ts">
import type { Ref } from 'vue' import type { Ref } from 'vue'
// bypass client import protection to ensure this is treeshaken from .client components
import BreaksServer from '~~/components/BreaksServer.client'
type Comp = Ref<{ add: () => void }> type Comp = Ref<{ add: () => void }>
const stringStatefulComp = ref(null) as any as Comp const stringStatefulComp = ref(null) as any as Comp

View File

@ -1,6 +1,10 @@
<script setup lang="ts"> <script setup lang="ts">
// explicit import to bypass client import protection // explicit import to bypass client import protection
import BreaksServer from '../components/BreaksServer.client' import BreaksServer from '../components/BreaksServer.client'
// ensure treeshake-client-only module remove theses imports without breaking
import TestGlobal from '../components/global/TestGlobal.vue'
// direct import of .client components should be treeshaken
import { FunctionalComponent, LazyClientOnlyScript } from '#components'
onMounted(() => import('~/components/BreaksServer.client')) onMounted(() => import('~/components/BreaksServer.client'))
onBeforeMount(() => import('~/components/BreaksServer.client')) onBeforeMount(() => import('~/components/BreaksServer.client'))
@ -16,16 +20,56 @@ onBeforeUnmount(() => import('~/components/BreaksServer.client'))
<div> <div>
This page should not crash when rendered. This page should not crash when rendered.
<ClientOnly class="something"> <ClientOnly class="something">
test <span>rendered client-side</span>
<BreaksServer /> <BreaksServer />
<BreaksServer>Some slot content</BreaksServer> <BreaksServer>Some slot content</BreaksServer>
</ClientOnly> </ClientOnly>
This should render. This should render.
<div> <div>
<ClientOnly class="another"> <ClientOnly class="another">
test <span>rendered client-side</span>
<BreaksServer /> <BreaksServer />
</ClientOnly> </ClientOnly>
</div> </div>
<div>
<LazyClientOnly>
<div class="red">
i'm red
</div>
<div>
<BreaksServer />
<FunctionalComponent />
<TestGlobal />
</div>
<template #fallback>
<div>fallback for ClientOnly</div>
</template>
</LazyClientOnly>
<LazyClientOnlyScript>
<template #test>
<BreaksServer />
<div id="client-side">
This should be rendered client-side
</div>
</template>
<template #fallback>
<FunctionalComponent />
<!-- this should be treeshaken on .client -->
<BreaksServer />
</template>
</LazyClientOnlyScript>
<div class="blue">
i'm blue
</div>
</div>
</div> </div>
</template> </template>
<style scoped>
.red {
color: rgb(255, 0, 0);
}
.blue {
color: rgb(0, 0, 255);
}
</style>

View File

@ -16,6 +16,7 @@ export default defineConfig({
test: { test: {
globalSetup: 'test/setup.ts', globalSetup: 'test/setup.ts',
testTimeout: isWindows ? 60000 : 10000, testTimeout: isWindows ? 60000 : 10000,
deps: { inline: ['@vitejs/plugin-vue'] },
// Excluded plugin because it should throw an error when accidentally loaded via Nuxt // Excluded plugin because it should throw an error when accidentally loaded via Nuxt
exclude: [...configDefaults.exclude, '**/this-should-not-load.spec.js'], exclude: [...configDefaults.exclude, '**/this-should-not-load.spec.js'],
maxThreads: process.env.NUXT_TEST_DEV ? 1 : undefined, maxThreads: process.env.NUXT_TEST_DEV ? 1 : undefined,