Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
feat(nuxt): parse html to treeshake client-only components (#7527)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Oct 10, 2022
1 parent 5a2616c commit 26b1c9c
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 13 deletions.
1 change: 1 addition & 0 deletions packages/nuxt/package.json
Expand Up @@ -67,6 +67,7 @@
"scule": "^0.3.2",
"strip-literal": "^0.4.2",
"ufo": "^0.8.5",
"ultrahtml": "^0.1.1",
"unctx": "^2.0.2",
"unenv": "^0.6.2",
"unimport": "^0.6.8",
Expand Down
49 changes: 36 additions & 13 deletions packages/nuxt/src/components/tree-shake.ts
@@ -1,6 +1,7 @@
import { pathToFileURL } from 'node:url'
import { parseURL } from 'ufo'
import MagicString from 'magic-string'
import { parse, walk, ELEMENT_NODE, Node } from 'ultrahtml'
import { createUnplugin } from 'unplugin'
import type { Component } from '@nuxt/schema'

Expand All @@ -9,37 +10,59 @@ interface TreeShakeTemplatePluginOptions {
getComponents (): Component[]
}

const PLACEHOLDER_RE = /^(v-slot|#)(fallback|placeholder)/

export const TreeShakeTemplatePlugin = createUnplugin((options: TreeShakeTemplatePluginOptions) => {
const regexpMap = new WeakMap<Component[], RegExp>()
const regexpMap = new WeakMap<Component[], [RegExp, string[]]>()
return {
name: 'nuxt:tree-shake-template',
enforce: 'pre',
transformInclude (id) {
const { pathname } = parseURL(decodeURIComponent(pathToFileURL(id).href))
return pathname.endsWith('.vue')
},
transform (code, id) {
async transform (code, id) {
const template = code.match(/<template>([\s\S]*)<\/template>/)
if (!template) { return }

const components = options.getComponents()

if (!regexpMap.has(components)) {
const clientOnlyComponents = components
.filter(c => c.mode === 'client' && !components.some(other => other.mode !== 'client' && other.pascalName === c.pascalName))
.map(c => `${c.pascalName}|${c.kebabName}`)
.concat('ClientOnly|client-only')
.map(component => `<(${component})(| [^>]*)>[\\s\\S]*?<\\/(${component})>`)
.flatMap(c => [c.pascalName, c.kebabName])
.concat(['ClientOnly', 'client-only'])
const tags = clientOnlyComponents
.map(component => `<(${component})[^>]*>[\\s\\S]*?<\\/(${component})>`)

regexpMap.set(components, new RegExp(`(${clientOnlyComponents.join('|')})`, 'g'))
regexpMap.set(components, [new RegExp(`(${tags.join('|')})`, 'g'), clientOnlyComponents])
}

const COMPONENTS_RE = regexpMap.get(components)!
const [COMPONENTS_RE, clientOnlyComponents] = regexpMap.get(components)!
if (!COMPONENTS_RE.test(code)) { return }

const s = new MagicString(code)

// Do not render client-only slots on SSR, but preserve attributes and fallback/placeholder slots
s.replace(COMPONENTS_RE, r => r.replace(/<([^>]*[^/])\/?>[\s\S]*$/, (chunk: string, el: string) => {
const fallback = chunk.match(/<template[^>]*(#|v-slot:)(fallback|placeholder)[^>]*>[\s\S]*?<\/template>/)?.[0] || ''
const tag = el.split(' ').shift()
return `<${el}>${fallback}</${tag}>`
}))
const ast = parse(template[0])
await walk(ast, (node) => {
if (node.type !== ELEMENT_NODE || !clientOnlyComponents.includes(node.name) || !node.children?.length) {
return
}

const fallback = node.children.find(
(n: Node) => n.name === 'template' &&
Object.entries(n.attributes as Record<string, string>)?.flat().some(attr => PLACEHOLDER_RE.test(attr))
)

try {
// Replace node content
const text = fallback ? code.slice(template.index + fallback.loc[0].start, template.index + fallback.loc[fallback.loc.length - 1].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
}
})

if (s.hasChanged()) {
return {
Expand Down
8 changes: 8 additions & 0 deletions yarn.lock
Expand Up @@ -10928,6 +10928,7 @@ __metadata:
scule: ^0.3.2
strip-literal: ^0.4.2
ufo: ^0.8.5
ultrahtml: ^0.1.1
unbuild: latest
unctx: ^2.0.2
unenv: ^0.6.2
Expand Down Expand Up @@ -13992,6 +13993,13 @@ __metadata:
languageName: node
linkType: hard

"ultrahtml@npm:^0.1.1":
version: 0.1.1
resolution: "ultrahtml@npm:0.1.1"
checksum: a074b6d41e942b0ae3a4ea7372043bee32f5bad08009278adff04a96d784b316e68085d5f44b52c5c03ac0bf1d2a142090e58e555f953d9c69eb9639fd2f70d5
languageName: node
linkType: hard

"unbox-primitive@npm:^1.0.2":
version: 1.0.2
resolution: "unbox-primitive@npm:1.0.2"
Expand Down

0 comments on commit 26b1c9c

Please sign in to comment.