2022-09-03 13:03:30 +00:00
|
|
|
import { pathToFileURL } from 'node:url'
|
|
|
|
import { Plugin } from 'vite'
|
|
|
|
import { findStaticImports } from 'mlly'
|
|
|
|
import { dirname, relative } from 'pathe'
|
|
|
|
import { genObjectFromRawEntries } from 'knitwork'
|
|
|
|
import { filename } from 'pathe/utils'
|
|
|
|
import { parseQuery, parseURL } from 'ufo'
|
|
|
|
import { isCSS } from '../utils'
|
|
|
|
|
|
|
|
interface SSRStylePluginOptions {
|
|
|
|
srcDir: string
|
2022-09-07 08:41:08 +00:00
|
|
|
chunksWithInlinedCSS: Set<string>
|
2022-09-03 13:03:30 +00:00
|
|
|
shouldInline?: (id?: string) => boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export function ssrStylesPlugin (options: SSRStylePluginOptions): Plugin {
|
2022-09-07 08:41:08 +00:00
|
|
|
const cssMap: Record<string, { files: string[], inBundle: boolean }> = {}
|
2022-09-03 13:03:30 +00:00
|
|
|
const idRefMap: Record<string, string> = {}
|
|
|
|
const globalStyles = new Set<string>()
|
|
|
|
|
|
|
|
const relativeToSrcDir = (path: string) => relative(options.srcDir, path)
|
|
|
|
|
|
|
|
return {
|
|
|
|
name: 'ssr-styles',
|
|
|
|
generateBundle (outputOptions) {
|
|
|
|
const emitted: Record<string, string> = {}
|
|
|
|
for (const file in cssMap) {
|
2022-09-07 08:41:08 +00:00
|
|
|
const { files, inBundle } = cssMap[file]
|
|
|
|
// File has been tree-shaken out of build (or there are no styles to inline)
|
|
|
|
if (!files.length || !inBundle) { continue }
|
2022-09-03 13:03:30 +00:00
|
|
|
|
|
|
|
const base = typeof outputOptions.assetFileNames === 'string'
|
|
|
|
? outputOptions.assetFileNames
|
|
|
|
: outputOptions.assetFileNames({
|
|
|
|
type: 'asset',
|
|
|
|
name: `${filename(file)}-styles.mjs`,
|
|
|
|
source: ''
|
|
|
|
})
|
|
|
|
|
|
|
|
emitted[file] = this.emitFile({
|
|
|
|
type: 'asset',
|
|
|
|
name: `${filename(file)}-styles.mjs`,
|
|
|
|
source: [
|
2022-09-07 08:41:08 +00:00
|
|
|
...files.map((css, i) => `import style_${i} from './${relative(dirname(base), this.getFileName(css))}';`),
|
|
|
|
`export default [${files.map((_, i) => `style_${i}`).join(', ')}]`
|
2022-09-03 13:03:30 +00:00
|
|
|
].join('\n')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
const globalStylesArray = Array.from(globalStyles).map(css => idRefMap[css] && this.getFileName(idRefMap[css])).filter(Boolean)
|
|
|
|
|
2022-09-07 08:41:08 +00:00
|
|
|
for (const key in emitted) {
|
|
|
|
// Track the chunks we are inlining CSS for so we can omit including links to the .css files
|
|
|
|
options.chunksWithInlinedCSS.add(key)
|
|
|
|
}
|
|
|
|
|
2022-09-03 13:03:30 +00:00
|
|
|
this.emitFile({
|
|
|
|
type: 'asset',
|
|
|
|
fileName: 'styles.mjs',
|
|
|
|
source:
|
|
|
|
[
|
|
|
|
...globalStylesArray.map((css, i) => `import style_${i} from './${css}';`),
|
2022-09-10 09:43:17 +00:00
|
|
|
'const interopDefault = r => r.default || r || []',
|
|
|
|
`export default ${genObjectFromRawEntries([
|
|
|
|
['entry', `() => [${globalStylesArray.map((_, i) => `style_${i}`).join(', ')}]`],
|
|
|
|
...Object.entries(emitted).map(([key, value]) => [key, `() => import('./${this.getFileName(value)}').then(interopDefault)`]) as [string, string][]
|
|
|
|
])}`
|
2022-09-03 13:03:30 +00:00
|
|
|
].join('\n')
|
|
|
|
})
|
|
|
|
},
|
|
|
|
renderChunk (_code, chunk) {
|
2022-09-07 08:41:08 +00:00
|
|
|
if (!chunk.facadeModuleId) { return null }
|
|
|
|
const id = relativeToSrcDir(chunk.facadeModuleId)
|
|
|
|
for (const file in chunk.modules) {
|
|
|
|
const relativePath = relativeToSrcDir(file)
|
|
|
|
if (relativePath in cssMap) {
|
|
|
|
cssMap[relativePath].inBundle = cssMap[relativePath].inBundle ?? !!id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chunk.isEntry) {
|
|
|
|
// Entry
|
|
|
|
for (const mod in chunk.modules) {
|
|
|
|
if (isCSS(mod) && !mod.includes('&used')) {
|
|
|
|
globalStyles.add(relativeToSrcDir(mod))
|
|
|
|
}
|
2022-09-03 13:03:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
},
|
|
|
|
async transform (code, id) {
|
|
|
|
const { pathname, search } = parseURL(decodeURIComponent(pathToFileURL(id).href))
|
|
|
|
const query = parseQuery(search)
|
|
|
|
if (!pathname.match(/\.(vue|((c|m)?j|t)sx?)$/g) || query.macro) { return }
|
|
|
|
if (options.shouldInline && !options.shouldInline(id)) { return }
|
|
|
|
|
|
|
|
const relativeId = relativeToSrcDir(id)
|
2022-09-07 08:41:08 +00:00
|
|
|
cssMap[relativeId] = cssMap[relativeId] || { files: [] }
|
2022-09-03 13:03:30 +00:00
|
|
|
|
|
|
|
let styleCtr = 0
|
|
|
|
for (const i of findStaticImports(code)) {
|
|
|
|
const { type } = parseQuery(i.specifier)
|
|
|
|
if (type !== 'style' && !i.specifier.endsWith('.css')) { continue }
|
|
|
|
|
|
|
|
const resolved = await this.resolve(i.specifier, id)
|
|
|
|
if (!resolved) { continue }
|
|
|
|
|
|
|
|
const ref = this.emitFile({
|
|
|
|
type: 'chunk',
|
|
|
|
name: `${filename(id)}-styles-${++styleCtr}.mjs`,
|
|
|
|
id: resolved.id + '?inline&used'
|
|
|
|
})
|
|
|
|
|
|
|
|
idRefMap[relativeToSrcDir(resolved.id)] = ref
|
2022-09-07 08:41:08 +00:00
|
|
|
cssMap[relativeId].files.push(ref)
|
2022-09-03 13:03:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|