@maizzle/framework 6.1.2 → 6.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Outlook.vue +8 -2
- package/dist/render/buildTemplate.d.ts.map +1 -1
- package/dist/render/buildTemplate.js +1 -1
- package/dist/render/buildTemplate.js.map +1 -1
- package/dist/render/createRenderer.js +16 -0
- package/dist/render/createRenderer.js.map +1 -1
- package/dist/render/index.js +1 -1
- package/dist/render/index.js.map +1 -1
- package/dist/serve.d.ts.map +1 -1
- package/dist/serve.js +55 -6
- package/dist/serve.js.map +1 -1
- package/dist/server/ui/.vite/deps/_metadata.json +14 -14
- package/dist/server/ui/.vite/deps/reka-ui.js +273 -75
- package/dist/server/ui/.vite/deps/reka-ui.js.map +1 -1
- package/dist/transformers/index.d.ts +1 -0
- package/dist/transformers/index.d.ts.map +1 -1
- package/dist/transformers/index.js +8 -2
- package/dist/transformers/index.js.map +1 -1
- package/dist/transformers/msoConditionals.d.ts +5 -0
- package/dist/transformers/msoConditionals.d.ts.map +1 -0
- package/dist/transformers/msoConditionals.js +25 -0
- package/dist/transformers/msoConditionals.js.map +1 -0
- package/dist/transformers/shorthandCss.d.ts +0 -22
- package/dist/transformers/shorthandCss.d.ts.map +1 -1
- package/dist/transformers/shorthandCss.js +36 -2
- package/dist/transformers/shorthandCss.js.map +1 -1
- package/dist/utils/watchPaths.d.ts +28 -1
- package/dist/utils/watchPaths.d.ts.map +1 -1
- package/dist/utils/watchPaths.js +38 -3
- package/dist/utils/watchPaths.js.map +1 -1
- package/package.json +3 -3
|
@@ -124,8 +124,14 @@ export default {
|
|
|
124
124
|
return 'mso'
|
|
125
125
|
})
|
|
126
126
|
|
|
127
|
-
|
|
128
|
-
|
|
127
|
+
/**
|
|
128
|
+
* Placeholder conditionals, not the real `<!--[if]>…<![endif]-->`
|
|
129
|
+
* block: the slot must stay real DOM so the transformers can
|
|
130
|
+
* inline, purge and rewrite it. `msoConditionals` collapses
|
|
131
|
+
* the pair into one hidden conditional after they run.
|
|
132
|
+
*/
|
|
133
|
+
const start = computed(() => `<!--[if ${condition.value}]>__MAIZZLE_MSO_OPEN__<![endif]-->${props.open}`)
|
|
134
|
+
const end = computed(() => `${props.close}<!--[if mso]>__MAIZZLE_MSO_CLOSE__<![endif]-->`)
|
|
129
135
|
|
|
130
136
|
return () => [
|
|
131
137
|
createStaticVNode(start.value, 1),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buildTemplate.d.ts","names":[],"sources":["../../src/render/buildTemplate.ts"],"mappings":";;;;;UAYiB;EACf,QAAQ;EACR,UAAU;EACV,QAAQ;EACR;EACA;EACA;;UAGe;;EAEf;;;;;;EAMA;;;;;;;;;;;iBAYoB,cACpB,sBACA,KAAK,uBACJ,QAAQ;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"buildTemplate.d.ts","names":[],"sources":["../../src/render/buildTemplate.ts"],"mappings":";;;;;UAYiB;EACf,QAAQ;EACR,UAAU;EACV,QAAQ;EACR;EACA;EACA;;UAGe;;EAEf;;;;;;EAMA;;;;;;;;;;;iBAYoB,cACpB,sBACA,KAAK,uBACJ,QAAQ;;;;;;;;;;;;iBA+GK,mBAAmB;iBA4BnB,kBAAkB,sBAAsB,mBAAmB,mBAAmB"}
|
|
@@ -57,7 +57,7 @@ async function buildTemplate(templatePath, ctx) {
|
|
|
57
57
|
html: rendered.html
|
|
58
58
|
});
|
|
59
59
|
const doctype = rendered.doctype ?? templateConfig.doctype ?? "<!DOCTYPE html>";
|
|
60
|
-
|
|
60
|
+
html = await runTransformers(html, templateConfig, absolutePath, doctype, rendered.tailwindBlocks, rendered.sourceFiles);
|
|
61
61
|
html = await events.fireAfterTransform({
|
|
62
62
|
config: templateConfig,
|
|
63
63
|
template,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buildTemplate.js","names":["parsePath"],"sources":["../../src/render/buildTemplate.ts"],"sourcesContent":["import { readFileSync, writeFileSync, mkdirSync } from 'node:fs'\nimport { resolve, dirname, basename, relative, join, sep, parse as parsePath } from 'node:path'\nimport defu from 'defu'\nimport { runTransformers } from '../transformers/index.ts'\nimport { createPlaintext } from '../plaintext.ts'\nimport { stripForHtml, stripForPlaintext } from '../utils/output-markers.ts'\nimport { _setCurrentTemplate } from '../composables/useCurrentTemplate.ts'\nimport { cloneConfig } from '../utils/cloneConfig.ts'\nimport type { EventManager } from '../events/index.ts'\nimport type { Renderer } from './createRenderer.ts'\nimport type { MaizzleConfig } from '../types/index.ts'\n\nexport interface BuildTemplateContext {\n config: MaizzleConfig\n renderer: Renderer\n events: EventManager\n outputPath: string\n outputExtension: string\n contentBase: string\n}\n\nexport interface BuildTemplateResult {\n /** Output files written for this template (html + optional plaintext). */\n files: string[]\n /**\n * Number of SFC-registered `afterBuild` handlers seen while rendering. They\n * only fire once at end of build on the main thread, so a worker can't run\n * them — the count lets the orchestrator warn instead of silently dropping.\n */\n sfcAfterBuildCount: number\n}\n\n/**\n * Render a single template through the full pipeline and write its output.\n *\n * Shared by the sequential build loop and the parallel build worker so both\n * paths produce byte-identical output. `events` is the manager the per-template\n * events fire on (config handlers registered via `registerConfig`, SFC handlers\n * registered here from the render). The caller owns build-scoped events\n * (`beforeCreate`/`afterBuild`).\n */\nexport async function buildTemplate(\n templatePath: string,\n ctx: BuildTemplateContext,\n): Promise<BuildTemplateResult> {\n const { config, renderer, events, outputPath, outputExtension, contentBase } = ctx\n const absolutePath = resolve(templatePath)\n const parsedPath = parsePath(absolutePath)\n const template = { source: readFileSync(absolutePath, 'utf-8'), path: parsedPath }\n const files: string[] = []\n let sfcAfterBuildCount = 0\n\n _setCurrentTemplate(parsedPath)\n\n try {\n /**\n * Clone config per template so beforeRender mutations (setting a\n * preheader, injecting fetched data, etc.) stay scoped to this template\n * instead of leaking into later ones through the shared config object.\n */\n const renderConfig = cloneConfig(config)\n const originalSource = template.source\n\n await events.fireBeforeRender({ config: renderConfig, template })\n\n const rendered = await renderer.render(\n absolutePath,\n renderConfig,\n template.source !== originalSource ? { source: template.source } : undefined,\n )\n\n /**\n * Register SFC event handlers collected during render so they take part in\n * the post-render events. Cleared at the end of this call so they don't\n * leak into the next template (afterBuild is the exception — it's never\n * cleared by clearSfcHandlers; see the count above).\n */\n for (const { name, handler } of rendered.sfcEventHandlers) {\n if (name === 'afterBuild') sfcAfterBuildCount++\n events.on(name, handler)\n }\n\n const templateConfig = rendered.templateConfig\n\n let html = await events.fireAfterRender({ config: templateConfig, template, html: rendered.html })\n\n const doctype = rendered.doctype ?? templateConfig.doctype ?? '<!DOCTYPE html>'\n\n if (templateConfig.useTransformers !== false) {\n html = await runTransformers(html, templateConfig, absolutePath, doctype, rendered.tailwindBlocks, rendered.sourceFiles)\n }\n\n html = await events.fireAfterTransform({ config: templateConfig, template, html })\n if (doctype) html = `${doctype}\\n${html}`\n\n const htmlOut = stripForHtml(html)\n const sfcOutputPath = rendered.outputPath\n let outputFilePath: string\n\n if (sfcOutputPath) {\n const parsed = parsePath(resolve(sfcOutputPath))\n const ext = parsed.ext ? parsed.ext.slice(1) : outputExtension\n outputFilePath = join(parsed.dir, `${parsed.name}.${ext}`)\n } else {\n outputFilePath = resolveOutputPath(templatePath, outputPath, outputExtension, contentBase)\n }\n\n mkdirSync(dirname(outputFilePath), { recursive: true })\n writeFileSync(outputFilePath, htmlOut)\n files.push(outputFilePath)\n\n // Generate plaintext version if configured\n const globalPlaintext = templateConfig.plaintext\n const sfcPlaintext = rendered.plaintext\n\n if (globalPlaintext || sfcPlaintext) {\n const globalCfg = typeof globalPlaintext === 'object' ? globalPlaintext : {}\n const stripOptions = defu(sfcPlaintext?.options, globalCfg.options)\n const plaintext = createPlaintext(stripForPlaintext(html), stripOptions)\n const ptExtension = sfcPlaintext?.extension ?? globalCfg.extension ?? 'txt'\n\n let ptOutputPath: string\n\n if (sfcPlaintext?.destination) {\n ptOutputPath = resolveOutputPath(templatePath, resolve(sfcPlaintext.destination), ptExtension, contentBase)\n } else if (sfcOutputPath) {\n const parsed = parsePath(outputFilePath)\n ptOutputPath = join(parsed.dir, `${parsed.name}.${ptExtension}`)\n } else if (globalCfg.destination) {\n ptOutputPath = resolveOutputPath(templatePath, resolve(globalCfg.destination), ptExtension, contentBase)\n } else {\n ptOutputPath = resolveOutputPath(templatePath, outputPath, ptExtension, contentBase)\n }\n\n mkdirSync(dirname(ptOutputPath), { recursive: true })\n writeFileSync(ptOutputPath, plaintext)\n files.push(ptOutputPath)\n }\n } finally {\n _setCurrentTemplate(undefined)\n events.clearSfcHandlers()\n }\n\n return { files, sfcAfterBuildCount }\n}\n\n/**\n * Extract the static (non-glob) prefix from content patterns.\n *\n * For example, `['/abs/path/emails/**\\/*.vue']` → `'/abs/path/emails'`\n *\n * Used to strip the content base from template paths so the output preserves\n * only the subdirectory structure.\n *\n * With multiple positive patterns (multi-root setups), returns their common\n * ancestor directory so templates from every root keep a clean relative path.\n */\nexport function computeContentBase(patterns: string[]): string {\n const positives = patterns.filter(p => !p.startsWith('!'))\n const sources = positives.length > 0 ? positives : patterns\n\n const bases = sources.map((pattern) => {\n // Split on first glob character (* { ? [) and take the directory part\n const staticPart = pattern.split(/[*{?[]/)[0]\n // Ensure we have a clean directory path (not a partial segment)\n return resolve(staticPart.endsWith('/') ? staticPart : dirname(staticPart))\n })\n\n return bases.reduce(commonPath)\n}\n\n/** Longest common directory path shared by two absolute paths. */\nfunction commonPath(a: string, b: string): string {\n const aSegments = a.split(sep)\n const bSegments = b.split(sep)\n const shared: string[] = []\n\n for (let i = 0; i < Math.min(aSegments.length, bSegments.length); i++) {\n if (aSegments[i] !== bSegments[i]) break\n shared.push(aSegments[i])\n }\n\n return shared.join(sep) || sep\n}\n\nexport function resolveOutputPath(templatePath: string, outputDir: string, extension: string, contentBase: string): string {\n const name = basename(templatePath).replace(/\\.(vue|md)$/, '')\n const absTemplate = resolve(templatePath)\n const rel = relative(contentBase, dirname(absTemplate))\n\n return join(outputDir, rel, `${name}.${extension}`)\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"buildTemplate.js","names":["parsePath"],"sources":["../../src/render/buildTemplate.ts"],"sourcesContent":["import { readFileSync, writeFileSync, mkdirSync } from 'node:fs'\nimport { resolve, dirname, basename, relative, join, sep, parse as parsePath } from 'node:path'\nimport defu from 'defu'\nimport { runTransformers } from '../transformers/index.ts'\nimport { createPlaintext } from '../plaintext.ts'\nimport { stripForHtml, stripForPlaintext } from '../utils/output-markers.ts'\nimport { _setCurrentTemplate } from '../composables/useCurrentTemplate.ts'\nimport { cloneConfig } from '../utils/cloneConfig.ts'\nimport type { EventManager } from '../events/index.ts'\nimport type { Renderer } from './createRenderer.ts'\nimport type { MaizzleConfig } from '../types/index.ts'\n\nexport interface BuildTemplateContext {\n config: MaizzleConfig\n renderer: Renderer\n events: EventManager\n outputPath: string\n outputExtension: string\n contentBase: string\n}\n\nexport interface BuildTemplateResult {\n /** Output files written for this template (html + optional plaintext). */\n files: string[]\n /**\n * Number of SFC-registered `afterBuild` handlers seen while rendering. They\n * only fire once at end of build on the main thread, so a worker can't run\n * them — the count lets the orchestrator warn instead of silently dropping.\n */\n sfcAfterBuildCount: number\n}\n\n/**\n * Render a single template through the full pipeline and write its output.\n *\n * Shared by the sequential build loop and the parallel build worker so both\n * paths produce byte-identical output. `events` is the manager the per-template\n * events fire on (config handlers registered via `registerConfig`, SFC handlers\n * registered here from the render). The caller owns build-scoped events\n * (`beforeCreate`/`afterBuild`).\n */\nexport async function buildTemplate(\n templatePath: string,\n ctx: BuildTemplateContext,\n): Promise<BuildTemplateResult> {\n const { config, renderer, events, outputPath, outputExtension, contentBase } = ctx\n const absolutePath = resolve(templatePath)\n const parsedPath = parsePath(absolutePath)\n const template = { source: readFileSync(absolutePath, 'utf-8'), path: parsedPath }\n const files: string[] = []\n let sfcAfterBuildCount = 0\n\n _setCurrentTemplate(parsedPath)\n\n try {\n /**\n * Clone config per template so beforeRender mutations (setting a\n * preheader, injecting fetched data, etc.) stay scoped to this template\n * instead of leaking into later ones through the shared config object.\n */\n const renderConfig = cloneConfig(config)\n const originalSource = template.source\n\n await events.fireBeforeRender({ config: renderConfig, template })\n\n const rendered = await renderer.render(\n absolutePath,\n renderConfig,\n template.source !== originalSource ? { source: template.source } : undefined,\n )\n\n /**\n * Register SFC event handlers collected during render so they take part in\n * the post-render events. Cleared at the end of this call so they don't\n * leak into the next template (afterBuild is the exception — it's never\n * cleared by clearSfcHandlers; see the count above).\n */\n for (const { name, handler } of rendered.sfcEventHandlers) {\n if (name === 'afterBuild') sfcAfterBuildCount++\n events.on(name, handler)\n }\n\n const templateConfig = rendered.templateConfig\n\n let html = await events.fireAfterRender({ config: templateConfig, template, html: rendered.html })\n\n const doctype = rendered.doctype ?? templateConfig.doctype ?? '<!DOCTYPE html>'\n\n html = await runTransformers(html, templateConfig, absolutePath, doctype, rendered.tailwindBlocks, rendered.sourceFiles)\n\n html = await events.fireAfterTransform({ config: templateConfig, template, html })\n if (doctype) html = `${doctype}\\n${html}`\n\n const htmlOut = stripForHtml(html)\n const sfcOutputPath = rendered.outputPath\n let outputFilePath: string\n\n if (sfcOutputPath) {\n const parsed = parsePath(resolve(sfcOutputPath))\n const ext = parsed.ext ? parsed.ext.slice(1) : outputExtension\n outputFilePath = join(parsed.dir, `${parsed.name}.${ext}`)\n } else {\n outputFilePath = resolveOutputPath(templatePath, outputPath, outputExtension, contentBase)\n }\n\n mkdirSync(dirname(outputFilePath), { recursive: true })\n writeFileSync(outputFilePath, htmlOut)\n files.push(outputFilePath)\n\n // Generate plaintext version if configured\n const globalPlaintext = templateConfig.plaintext\n const sfcPlaintext = rendered.plaintext\n\n if (globalPlaintext || sfcPlaintext) {\n const globalCfg = typeof globalPlaintext === 'object' ? globalPlaintext : {}\n const stripOptions = defu(sfcPlaintext?.options, globalCfg.options)\n const plaintext = createPlaintext(stripForPlaintext(html), stripOptions)\n const ptExtension = sfcPlaintext?.extension ?? globalCfg.extension ?? 'txt'\n\n let ptOutputPath: string\n\n if (sfcPlaintext?.destination) {\n ptOutputPath = resolveOutputPath(templatePath, resolve(sfcPlaintext.destination), ptExtension, contentBase)\n } else if (sfcOutputPath) {\n const parsed = parsePath(outputFilePath)\n ptOutputPath = join(parsed.dir, `${parsed.name}.${ptExtension}`)\n } else if (globalCfg.destination) {\n ptOutputPath = resolveOutputPath(templatePath, resolve(globalCfg.destination), ptExtension, contentBase)\n } else {\n ptOutputPath = resolveOutputPath(templatePath, outputPath, ptExtension, contentBase)\n }\n\n mkdirSync(dirname(ptOutputPath), { recursive: true })\n writeFileSync(ptOutputPath, plaintext)\n files.push(ptOutputPath)\n }\n } finally {\n _setCurrentTemplate(undefined)\n events.clearSfcHandlers()\n }\n\n return { files, sfcAfterBuildCount }\n}\n\n/**\n * Extract the static (non-glob) prefix from content patterns.\n *\n * For example, `['/abs/path/emails/**\\/*.vue']` → `'/abs/path/emails'`\n *\n * Used to strip the content base from template paths so the output preserves\n * only the subdirectory structure.\n *\n * With multiple positive patterns (multi-root setups), returns their common\n * ancestor directory so templates from every root keep a clean relative path.\n */\nexport function computeContentBase(patterns: string[]): string {\n const positives = patterns.filter(p => !p.startsWith('!'))\n const sources = positives.length > 0 ? positives : patterns\n\n const bases = sources.map((pattern) => {\n // Split on first glob character (* { ? [) and take the directory part\n const staticPart = pattern.split(/[*{?[]/)[0]\n // Ensure we have a clean directory path (not a partial segment)\n return resolve(staticPart.endsWith('/') ? staticPart : dirname(staticPart))\n })\n\n return bases.reduce(commonPath)\n}\n\n/** Longest common directory path shared by two absolute paths. */\nfunction commonPath(a: string, b: string): string {\n const aSegments = a.split(sep)\n const bSegments = b.split(sep)\n const shared: string[] = []\n\n for (let i = 0; i < Math.min(aSegments.length, bSegments.length); i++) {\n if (aSegments[i] !== bSegments[i]) break\n shared.push(aSegments[i])\n }\n\n return shared.join(sep) || sep\n}\n\nexport function resolveOutputPath(templatePath: string, outputDir: string, extension: string, contentBase: string): string {\n const name = basename(templatePath).replace(/\\.(vue|md)$/, '')\n const absTemplate = resolve(templatePath)\n const rel = relative(contentBase, dirname(absTemplate))\n\n return join(outputDir, rel, `${name}.${extension}`)\n}\n"],"mappings":"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"}
|
|
@@ -188,6 +188,16 @@ async function createRenderer(options = {}) {
|
|
|
188
188
|
*/
|
|
189
189
|
const maizzleConfig = {
|
|
190
190
|
configFile: false,
|
|
191
|
+
/**
|
|
192
|
+
* Without an explicit root, Vite roots this SSR server at
|
|
193
|
+
* process.cwd() and its watcher recursively watches the entire host
|
|
194
|
+
* project — on large projects this exhausts inotify watch limits.
|
|
195
|
+
* The renderer only needs its watcher for component dirs (unplugin
|
|
196
|
+
* d.ts regeneration); template invalidation is driven externally via
|
|
197
|
+
* invalidateAll(). Root at the Maizzle root instead; component dirs
|
|
198
|
+
* outside it are re-added to the watcher after createServer below.
|
|
199
|
+
*/
|
|
200
|
+
root: resolve(root),
|
|
191
201
|
plugins: [
|
|
192
202
|
rawExtract(),
|
|
193
203
|
codeBlockExtract(),
|
|
@@ -352,6 +362,12 @@ async function createRenderer(options = {}) {
|
|
|
352
362
|
const finalConfig = userViteConfig ? mergeConfig(userViteConfig, maizzleConfig) : maizzleConfig;
|
|
353
363
|
const server = await createServer(finalConfig);
|
|
354
364
|
/**
|
|
365
|
+
* With the narrowed root above, component dirs outside the Maizzle root
|
|
366
|
+
* are no longer covered by the root watch — add them explicitly so
|
|
367
|
+
* unplugin still sees add/unlink events.
|
|
368
|
+
*/
|
|
369
|
+
for (const dir of [resolve(root, "components"), ...dirSources.map((s) => s.path)]) server.watcher.add(dir);
|
|
370
|
+
/**
|
|
355
371
|
* Walk the SSR module graph from a template entry and collect every
|
|
356
372
|
* project file it (transitively) imports — components resolved by
|
|
357
373
|
* unplugin appear as real static imports, so built-ins and userland
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createRenderer.js","names":["relPath","merge"],"sources":["../../src/render/createRenderer.ts"],"sourcesContent":["import { dirname, isAbsolute, relative as relPath, resolve } from 'node:path'\nimport { mkdirSync, writeFileSync, existsSync, rmSync } from 'node:fs'\nimport { fileURLToPath } from 'node:url'\nimport { isLaravel } from '../utils/detect.ts'\nimport { rowSourceLocation } from './plugins/rowSourceLocation.ts'\nimport { rawExtract } from './plugins/rawExtract.ts'\nimport { codeBlockExtract } from './plugins/codeBlockExtract.ts'\nimport { markdownExtract } from './plugins/markdownExtract.ts'\nimport { createServer, mergeConfig, normalizePath, type InlineConfig, type Plugin } from 'vite'\nimport vue from '@vitejs/plugin-vue'\nimport Markdown from 'unplugin-vue-markdown/vite'\nimport AutoImport from 'unplugin-auto-import/vite'\nimport Components from 'unplugin-vue-components/vite'\nimport { unheadVueComposablesImports } from '@unhead/vue'\nimport { defu as merge } from 'defu'\nimport { glob, globSync } from 'tinyglobby'\nimport { createSSRApp } from 'vue'\nimport { renderToString } from 'vue/server-renderer'\nimport { createHead } from '@unhead/vue/server'\nimport { MaizzleConfigKey } from '../composables/useConfig.ts'\nimport { RenderContextKey } from '../composables/renderContext.ts'\nimport { componentNameFromPath, type NormalizedComponentSource } from '../utils/componentSources.ts'\nimport { shikiToCodeBlock } from '../components/utils.ts'\nimport type { Component, InjectionKey } from 'vue'\nimport type { MaizzleConfig, MarkdownConfig, VueConfig } from '../types/index.ts'\nimport type { MarkdownExit } from 'markdown-exit'\nimport type { RenderContext } from '../composables/renderContext.ts'\n\nconst __dirname = dirname(fileURLToPath(import.meta.url))\n\nconst vuePkgDir = dirname(fileURLToPath(import.meta.resolve('vue/package.json')))\nconst vueServerRendererPkgDir = dirname(fileURLToPath(import.meta.resolve('@vue/server-renderer/package.json')))\nconst unheadVuePkgDir = resolve(dirname(fileURLToPath(import.meta.resolve('@unhead/vue'))), '..')\nconst vueRouterPkgDir = dirname(fileURLToPath(import.meta.resolve('vue-router/package.json')))\n\nexport interface RenderedTemplate {\n html: string\n doctype?: string\n templateConfig: MaizzleConfig\n sfcEventHandlers: RenderContext['sfcEventHandlers']\n plaintext?: RenderContext['plaintext']\n outputPath?: RenderContext['outputPath']\n tailwindBlocks?: RenderContext['tailwindBlocks']\n /**\n * Absolute paths of every project file in the template's module\n * import closure (the template itself, its components, imported\n * modules). Undefined for virtual/pre-compiled renders where no\n * file entry exists.\n */\n sourceFiles?: string[]\n}\n\nexport interface Renderer {\n render(input: string | Component, config: MaizzleConfig, opts?: { source?: string; props?: Record<string, any> }): Promise<RenderedTemplate>\n invalidate(filePath: string): Promise<void>\n invalidateAll(): Promise<void>\n close(): Promise<void>\n}\n\nexport interface CreateRendererOptions {\n /** Generate .d.ts files for auto-imports and components (default: false) */\n dts?: boolean\n /** Options passed to unplugin-vue-markdown */\n markdown?: MarkdownConfig\n /** Root directory for resolving user component dirs and .d.ts output */\n root?: string\n /**\n * Additional component sources to register for auto-import. Already\n * normalized — pass through `normalizeComponentSources()` first.\n */\n componentDirs?: NormalizedComponentSource[]\n /** User Vite config options to merge into the internal SSR server */\n vite?: InlineConfig\n /**\n * Extra tags to treat as native custom elements (in addition to the\n * built-in `amp-*`), so the compiler skips component resolution for them.\n */\n customElements?: VueConfig['customElements']\n}\n\n/**\n * Build a predicate from the user's `vue.customElements` option. Accepts an\n * exact tag name, a `RegExp`, an array of either, or a predicate function.\n */\nfunction toCustomElementPredicate(\n value: VueConfig['customElements'],\n): (tag: string) => boolean {\n if (typeof value === 'function') return value\n if (value == null) return () => false\n\n const patterns = Array.isArray(value) ? value : [value]\n const exact = new Set<string>()\n const regexes: RegExp[] = []\n for (const pattern of patterns) {\n if (pattern instanceof RegExp) {\n /**\n * Strip `g`/`y` flags: `test()` on a global/sticky regex advances\n * `lastIndex`, so reusing the user's instance across tags would\n * match intermittently. Clone without them (and don't mutate the\n * user's regex) — for a tag test these flags carry no useful meaning.\n */\n regexes.push(new RegExp(pattern.source, pattern.flags.replace(/[gy]/g, '')))\n }\n else exact.add(pattern)\n }\n\n return (tag: string) => exact.has(tag) || regexes.some(re => re.test(tag))\n}\n\n/**\n * Lightweight Vite SSR loader for rendering Vue SFC email templates.\n *\n * Uses only Vue + unplugin for component/auto-import resolution.\n * Tailwind CSS compilation is handled by the transformer pipeline.\n */\nexport async function createRenderer(\n options: CreateRendererOptions = {},\n): Promise<Renderer> {\n const { dts = false, markdown: markdownOptionsRaw, root = process.cwd(), componentDirs = [], vite: userViteConfig, customElements } = options\n const isUserCustomElement = toCustomElementPredicate(customElements)\n const { shikiTheme = 'github-light', markdownSetup: userMarkdownSetup, ...restMarkdownConfig } = markdownOptionsRaw ?? {}\n\n /**\n * Sources without an explicit prefix get registered via unplugin's `dirs`\n * (folder name auto-namespaces). Sources with an explicit `prefix` are\n * registered through a custom resolver below so we fully control naming.\n */\n const dirSources = componentDirs.filter(s => s.prefix === undefined)\n const prefixedSources = componentDirs.filter(s => s.prefix !== undefined)\n\n /**\n * Absolute component dirs — used to skip auto-wrapping `.md` files that\n * are imported as reusable components (vs. entry-point email templates).\n */\n const componentDirsAbs = [resolve(root, 'components'), ...componentDirs.map(s => s.path)]\n\n const dtsDir = isLaravel()\n ? resolve(process.cwd(), 'resources/js/types/maizzle')\n : resolve(root, '.maizzle')\n\n /**\n * Built-in framework components live at this path. When a user provides\n * a top-level file with the same (PascalCased) basename, drop the\n * built-in from unplugin's scan so the user's component is the only\n * candidate. This avoids the \"naming conflicts\" warning and the\n * alphabetical-glob ordering pitfall that decides who wins when\n * both are present in `dirs`.\n */\n const frameworkComponentsDir = resolve(__dirname, '../components')\n\n function topLevelBasenamesLower(dir: string): Set<string> {\n if (!existsSync(dir)) return new Set()\n const files = globSync(['*.vue', '*.md'], { cwd: dir, absolute: false })\n return new Set(files.map(f => f.replace(/\\.(vue|md)$/, '').toLowerCase()))\n }\n\n const frameworkFiles = globSync(['*.vue', '*.md'], { cwd: frameworkComponentsDir, absolute: false })\n const frameworkByLower = new Map(\n frameworkFiles.map(f => [f.replace(/\\.(vue|md)$/, '').toLowerCase(), f]),\n )\n\n const shadowedNames = new Set<string>()\n for (const dir of [resolve(root, 'components'), ...dirSources.map(s => s.path)]) {\n for (const lower of topLevelBasenamesLower(dir)) {\n if (frameworkByLower.has(lower)) shadowedNames.add(lower)\n }\n }\n\n const frameworkExcludes = [...shadowedNames]\n .map(lower => `${frameworkComponentsDir}/${frameworkByLower.get(lower)}`)\n\n /**\n * Pre-scanned name → absolute-path map for prefixed sources. Rebuilt\n * on file add/unlink via the watcher hook plugin further down. Drives\n * the runtime resolver and the d.ts we emit for IDE autocompletion.\n */\n const prefixedNameMap = new Map<string, string>()\n\n async function scanPrefixedSources(): Promise<void> {\n prefixedNameMap.clear()\n const seen = new Map<string, string>()\n for (const source of prefixedSources) {\n const files = await glob(['**/*.vue', '**/*.md'], { cwd: source.path, absolute: true })\n for (const file of files) {\n const name = componentNameFromPath({\n filePath: file,\n dirRoot: source.path,\n prefix: source.prefix,\n pathPrefix: source.pathPrefix,\n })\n const existing = seen.get(name)\n if (existing && existing !== file) {\n throw new Error(\n `[maizzle] Component name collision: \"${name}\" resolved from both \"${existing}\" and \"${file}\". `\n + 'Rename one of the files or split them into separate sources with distinct prefixes.',\n )\n }\n seen.set(name, file)\n prefixedNameMap.set(name, file)\n }\n }\n }\n\n await scanPrefixedSources()\n\n const prefixedResolver = (name: string) => prefixedNameMap.get(name)\n\n /**\n * unplugin-vue-components' own d.ts only covers components found via\n * `dirs`; its `types` option emits named-import entries which break\n * for SFC `default` exports. Write a sibling d.ts for prefixed\n * sources so editors get correct autocompletion via TypeScript\n * interface merging on `vue.GlobalComponents`.\n */\n const prefixedDtsPath = resolve(dtsDir, 'prefixed-components.d.ts')\n\n function writePrefixedDts(): void {\n if (!dts) return\n if (prefixedNameMap.size === 0) {\n if (existsSync(prefixedDtsPath)) rmSync(prefixedDtsPath)\n return\n }\n const dtsBase = dirname(prefixedDtsPath)\n mkdirSync(dtsBase, { recursive: true })\n const lines = Array.from(prefixedNameMap.entries())\n .sort(([a], [b]) => a.localeCompare(b))\n .map(([name, file]) => {\n const relativePath = relPath(dtsBase, file).replace(/\\\\/g, '/')\n const importPath = relativePath.startsWith('.') ? relativePath : `./${relativePath}`\n return ` ${name}: typeof import('${importPath}')['default']`\n })\n .join('\\n')\n writeFileSync(\n prefixedDtsPath,\n `/* eslint-disable */\\n// @ts-nocheck\\n// biome-ignore lint: disable\\n// oxlint-disable\\n// Generated by Maizzle for prefixed component sources\\n\\nexport {}\\n\\n/* prettier-ignore */\\ndeclare module 'vue' {\\n export interface GlobalComponents {\\n${lines}\\n }\\n}\\n`,\n )\n }\n\n writePrefixedDts()\n\n /**\n * Watches prefixed source dirs and rebuilds {@link prefixedNameMap} when\n * files are added/removed. Vite's watcher already covers `dirSources`\n * via unplugin-vue-components' own filesystem hooks.\n */\n const prefixedSourceWatcher: Plugin | null = prefixedSources.length > 0\n ? {\n name: 'maizzle:prefixed-component-watcher',\n configureServer(server) {\n for (const source of prefixedSources) {\n server.watcher.add(source.path)\n }\n const refresh = async (file: string) => {\n if (!prefixedSources.some(s => file.startsWith(`${s.path}/`))) return\n if (!/\\.(vue|md)$/.test(file)) return\n await scanPrefixedSources()\n writePrefixedDts()\n }\n server.watcher.on('add', refresh)\n server.watcher.on('unlink', refresh)\n },\n }\n : null\n\n const VIRTUAL_SFC_ID = 'virtual:maizzle-sfc.vue'\n let virtualSfcSource = ''\n\n /**\n * Per-render source overrides keyed by absolute template path. Lets the\n * build's beforeRender event rewrite a template's source before compile\n * while keeping the real file id — so relative imports, asset URLs and\n * component resolution still resolve against the actual file location\n * (which the virtual-SFC path can't do).\n */\n const sourceOverrides = new Map<string, string>()\n\n /**\n * Never load the host project's vite.config.ts here. Doing so pulls\n * every host plugin (Nitro, TanStack Start, the Maizzle plugin\n * itself, …) into this isolated SSR pipeline, where they override\n * env factories, re-trigger configureServer hooks, and break\n * Vite's hot channel wiring. Users who need extra Vite plugins\n * for SSR pass them explicitly via the `vite` option.\n */\n const maizzleConfig: InlineConfig = {\n configFile: false,\n plugins: [\n rawExtract(),\n codeBlockExtract(),\n markdownExtract(),\n rowSourceLocation(),\n {\n name: 'maizzle:virtual-sfc',\n resolveId(id) {\n if (id === VIRTUAL_SFC_ID) return id\n },\n load(id) {\n if (id === VIRTUAL_SFC_ID) return virtualSfcSource\n },\n },\n {\n name: 'maizzle:source-override',\n load(id) {\n const override = sourceOverrides.get(id.split('?')[0])\n if (override !== undefined) return override\n },\n },\n vue({\n include: [/\\.vue$/, /\\.md$/],\n template: {\n transformAssetUrls: false,\n compilerOptions: {\n /**\n * Keep template whitespace intact — the default `condense`\n * mode collapses/strips whitespace between tags,\n * which can alter plaintext output.\n */\n whitespace: 'preserve',\n /**\n * AMP4Email tags (<amp-carousel>, <amp-img>, <amp-list> ...)\n * render verbatim — skip the component resolver. Users who\n * want to wrap an amp tag in a Vue component should register\n * it under a PascalCase name (e.g. `components/AmpCarousel.vue`\n * → `<AmpCarousel>`).\n *\n * User-defined tags (config `vue.customElements`, e.g. VML `v:*`)\n * extend this — they render verbatim for the same reason.\n */\n isCustomElement: (tag: string) => tag.startsWith('amp-') || isUserCustomElement(tag),\n },\n },\n }),\n Markdown(merge(restMarkdownConfig, {\n headEnabled: true,\n wrapperDiv: false,\n wrapperClasses: 'prose',\n wrapperComponent: (id: string, raw: string) => {\n const fm = raw.match(/^---\\r?\\n([\\s\\S]*?)\\r?\\n---/)?.[1]\n const layout = fm?.match(/^[ \\t]*layout[ \\t]*:[ \\t]*['\"]?([A-Za-z][\\w-]*|false|none)['\"]?[ \\t]*$/m)?.[1]\n if (layout === 'false' || layout === 'none') return null\n if (layout) return layout\n /**\n * No `layout:` set — default to the built-in `MarkdownLayout`\n * for entry-template `.md` files. Skip for `.md` files inside\n * component dirs, which are reusable fragments imported into\n * other templates.\n */\n const inComponentDir = componentDirsAbs.some(d => id === d || id.startsWith(`${d}/`))\n return inComponentDir ? null : 'MarkdownLayout'\n },\n markdownOptions: {\n async highlight(code: string, lang: string) {\n const { codeToHtml } = await import('shiki')\n try {\n return await codeToHtml(code, { lang, theme: shikiTheme })\n } catch {\n return ''\n }\n },\n },\n /**\n * Run the user's `markdownSetup` first (defu would otherwise drop the\n * built-in one when both are functions), then always install the\n * email-safe code-block wrapping on top — mirroring the `<Markdown>`\n * component so `.md` templates and the component behave identically.\n */\n async markdownSetup(md: MarkdownExit) {\n // `md` is cast because unplugin-vue-markdown bundles its own\n // markdown-exit copy, so its `MarkdownExit` is nominally distinct\n // from ours despite being structurally identical.\n await userMarkdownSetup?.(md as unknown as Parameters<NonNullable<typeof userMarkdownSetup>>[0])\n\n const defaultFence = md.renderer.rules.fence!\n md.renderer.rules.fence = (...args) =>\n Promise.resolve(defaultFence(...args)).then(shikiToCodeBlock)\n\n const defaultCodeBlock = md.renderer.rules.code_block!\n md.renderer.rules.code_block = (...args) => shikiToCodeBlock(defaultCodeBlock(...args) as string)\n },\n })),\n AutoImport({\n dirs: [\n resolve(__dirname, '../composables'),\n resolve(__dirname, '../filters'),\n ],\n imports: ['vue', unheadVueComposablesImports],\n /**\n * unplugin-auto-import's default `include` doesn't match `.md`, so\n * auto-imports (Vue, unhead and Maizzle composables/filters) were\n * never injected into Markdown templates — `useConfig()` and friends\n * threw at runtime. Extend the default list with `.md` (and its\n * `?vue` script sub-requests) to mirror the `.md` coverage the\n * Components plugin already declares below.\n */\n include: [/\\.[jt]sx?$/, /\\.vue$/, /\\.vue\\?vue/, /\\.md$/, /\\.md\\?vue/],\n dts: dts ? resolve(dtsDir, 'auto-imports.d.ts') : false,\n }),\n Components({\n extensions: ['vue', 'md'],\n include: [/\\.vue$/, /\\.vue\\?vue/, /\\.md$/],\n dirs: [\n frameworkComponentsDir,\n resolve(root, 'components'),\n ...dirSources.map(s => s.path),\n ],\n /**\n * Drop built-in component files whose name the user has shadowed.\n * This makes the user's version the only match — no \"naming\n * conflicts\" warning, no glob-ordering games.\n */\n globsExclude: frameworkExcludes,\n directoryAsNamespace: true,\n collapseSamePrefixes: true,\n resolvers: prefixedSources.length > 0 ? [prefixedResolver] : undefined,\n dts: dts ? resolve(dtsDir, 'components.d.ts') : false,\n }),\n ...(prefixedSourceWatcher ? [prefixedSourceWatcher] : []),\n ],\n resolve: {\n alias: {\n 'vue/server-renderer': resolve(vueServerRendererPkgDir, 'dist/server-renderer.esm-bundler.js'),\n 'vue': resolve(vuePkgDir, 'dist/vue.runtime.esm-bundler.js'),\n 'vue-router': vueRouterPkgDir,\n '@unhead/vue/server': resolve(unheadVuePkgDir, 'dist/server.mjs'),\n '@unhead/vue': resolve(unheadVuePkgDir, 'dist/index.mjs'),\n },\n },\n server: {\n middlewareMode: true,\n hmr: false,\n /**\n * Watcher is required so unplugin-vue-components and unplugin-auto-import\n * detect added/removed component files and rewrite their .d.ts on the fly.\n * (We only render via SSR — HMR is off, but chokidar still drives plugins.)\n */\n fs: {\n allow: [process.cwd(), root, ...componentDirs.map(s => s.path), vuePkgDir, vueServerRendererPkgDir, unheadVuePkgDir, vueRouterPkgDir],\n },\n },\n appType: 'custom',\n logLevel: 'silent',\n optimizeDeps: {\n noDiscovery: true,\n },\n }\n\n /**\n * Merge user's vite config (from config.vite) under Maizzle's config.\n * mergeConfig(a, b) → b overrides a for scalars, arrays concatenate.\n * This ensures Maizzle's critical settings (middlewareMode, appType,\n * etc.) always win, while user plugins and other options remain.\n */\n const finalConfig = userViteConfig\n ? mergeConfig(userViteConfig, maizzleConfig)\n : maizzleConfig\n\n const server = await createServer(finalConfig)\n\n /**\n * Walk the SSR module graph from a template entry and collect every\n * project file it (transitively) imports — components resolved by\n * unplugin appear as real static imports, so built-ins and userland\n * components are all reachable here. node_modules deps are skipped.\n */\n function collectSourceFiles(entryPath: string): string[] | undefined {\n const mods = server.moduleGraph.getModulesByFile(normalizePath(entryPath))\n if (!mods || mods.size === 0) return undefined\n const builtinsDir = normalizePath(frameworkComponentsDir)\n const files = new Set<string>()\n const visited = new Set<unknown>()\n const queue = [...mods]\n while (queue.length) {\n const m = queue.pop() as any\n if (!m || visited.has(m)) continue\n visited.add(m)\n const file = m.file ? normalizePath(m.file) : undefined\n /**\n * Prune node_modules subtrees (their imports can't be project\n * files), but keep the framework's own built-in components\n * (in node_modules when installed from npm).\n */\n if (file && file.includes('/node_modules/') && !file.startsWith(`${builtinsDir}/`)) continue\n if (file && isAbsolute(file)) files.add(file)\n /**\n * Traversal is tracked per module node, not per file, so virtual\n * modules (no file) and query variants of an already-seen file\n * still contribute their imports.\n */\n for (const dep of [...(m.ssrImportedModules ?? []), ...(m.importedModules ?? [])]) queue.push(dep)\n }\n return [...files]\n }\n\n return {\n async render(input: string | Component, config: MaizzleConfig, opts?: { source?: string; props?: Record<string, any> }): Promise<RenderedTemplate> {\n let component: Component\n let configKey: InjectionKey<MaizzleConfig>\n let contextKey: InjectionKey<RenderContext>\n\n if (typeof input === 'string') {\n /**\n * String input goes through Vite — must use ssrLoadModule for\n * injection keys so they share the same module instance as SFC.\n */\n const configModule = await server.ssrLoadModule(resolve(__dirname, '../composables/useConfig'))\n const contextModule = await server.ssrLoadModule(resolve(__dirname, '../composables/renderContext'))\n configKey = configModule.MaizzleConfigKey\n contextKey = contextModule.RenderContextKey\n\n if (input.includes('<template') || input.includes('<script')) {\n virtualSfcSource = input\n const mod = server.moduleGraph.getModuleById(VIRTUAL_SFC_ID)\n if (mod) server.moduleGraph.invalidateModule(mod)\n component = (await server.ssrLoadModule(VIRTUAL_SFC_ID)).default\n } else {\n /**\n * A beforeRender handler may have rewritten the source. Register it\n * under the real path id and invalidate so ssrLoadModule compiles\n * the override; clear + invalidate afterwards so the override never\n * leaks into a later render of the same path.\n */\n const hasOverride = opts?.source !== undefined\n if (hasOverride) {\n sourceOverrides.set(input, opts!.source!)\n const mod = await server.moduleGraph.getModuleByUrl(input)\n if (mod) server.moduleGraph.invalidateModule(mod)\n }\n try {\n component = (await server.ssrLoadModule(input)).default\n } finally {\n if (hasOverride) {\n sourceOverrides.delete(input)\n const mod = await server.moduleGraph.getModuleByUrl(input)\n if (mod) server.moduleGraph.invalidateModule(mod)\n }\n }\n }\n } else {\n // Pre-compiled component — use directly imported keys\n component = input\n configKey = MaizzleConfigKey\n contextKey = RenderContextKey\n }\n\n const renderContext: RenderContext = {\n doctype: undefined,\n sfcConfig: undefined,\n sfcEventHandlers: [],\n }\n\n const head = createHead({ disableDefaults: true })\n const app = createSSRApp(component, opts?.props)\n app.use(head)\n\n // Register user Vue plugins, directives, and global properties\n if (config.vue) {\n const plugins = typeof config.vue.plugins === 'function'\n ? config.vue.plugins()\n : config.vue.plugins ?? []\n for (const plugin of plugins) {\n app.use(plugin)\n }\n for (const [name, directive] of Object.entries(config.vue.directives ?? {})) {\n app.directive(name, directive)\n }\n Object.assign(app.config.globalProperties, config.vue.globalProperties)\n }\n\n app.provide(configKey, config)\n app.provide(contextKey, renderContext)\n\n const ssrContext: Record<string, any> = {}\n let html: string = await renderToString(app, ssrContext)\n\n const { headTags, bodyTags, bodyTagsOpen, htmlAttrs, bodyAttrs } = head.render()\n\n // Inject head entries into the rendered HTML\n if (htmlAttrs) {\n html = html.replace(/<html([^>]*)>/, `<html$1 ${htmlAttrs}>`)\n }\n if (headTags) {\n html = html.replace('</head>', `${headTags}\\n</head>`)\n }\n if (bodyAttrs) {\n html = html.replace(/<body([^>]*)>/, `<body$1 ${bodyAttrs}>`)\n }\n if (bodyTagsOpen) {\n html = html.replace(/<body([^>]*)>/, `<body$1>\\n${bodyTagsOpen}`)\n }\n if (bodyTags) {\n html = html.replace('</body>', `${bodyTags}\\n</body>`)\n }\n\n /**\n * Strip Vue SSR fragment markers + teleport anchor comments. These\n * are rendering hygiene, not transformer concerns — must run\n * regardless of `useTransformers` state. Fragment markers contain\n * `-->`, which would prematurely terminate MSO conditional\n * comments downstream — including in the DOM round-trip below,\n * whose parser would otherwise close `<!--[if mso]>` at a\n * marker's `-->` and mangle the conditional on re-serialize.\n */\n const stripSsrMarkers = (str: string) => str\n .replaceAll('<!--[-->', '')\n .replaceAll('<!--]-->', '')\n .replaceAll('<!--teleport start anchor-->', '')\n .replaceAll('<!--teleport anchor-->', '')\n .replaceAll('<!--teleport start-->', '')\n .replaceAll('<!--teleport end-->', '')\n\n html = stripSsrMarkers(html)\n\n // Inject SSR teleport content into their target elements\n const hasTeleports = ssrContext.teleports && Object.keys(ssrContext.teleports).length > 0\n const hasFonts = (renderContext.fonts?.length ?? 0) > 0\n\n if (hasTeleports || hasFonts) {\n const { parse: parseDom, serialize: serializeDom, walk } = await import('../utils/ast/index.ts')\n let dom = parseDom(html)\n\n if (hasTeleports) {\n for (const [rawTarget, content] of Object.entries(ssrContext.teleports) as [string, string][]) {\n if (!content) continue\n\n const prepend = rawTarget.endsWith(':start')\n const target = prepend ? rawTarget.slice(0, -6) : rawTarget\n const targetChildren = parseDom(stripSsrMarkers(content))\n\n walk(dom, (node) => {\n const el = node as import('domhandler').Element\n\n if (!el.name) return\n\n const matched\n = target === el.name\n || (target.startsWith('#') && el.attribs?.id === target.slice(1))\n || (target.startsWith('.') && el.attribs?.class?.split(/\\s+/).includes(target.slice(1)))\n\n if (matched) {\n for (const child of targetChildren) {\n child.parent = el as any\n }\n\n el.children = prepend\n ? [...targetChildren, ...(el.children || [])] as any\n : [...(el.children || []), ...targetChildren] as any\n }\n })\n }\n }\n\n if (hasFonts) {\n const { injectFonts } = await import('./injectFonts.ts')\n injectFonts(dom, renderContext.fonts!, parseDom, walk)\n }\n\n html = serializeDom(dom)\n }\n\n // Inject preheader text from usePreheader() composable\n if (renderContext.preheader) {\n const { text, fillerCount } = renderContext.preheader\n const filler = '\\u2007\\uFEFF\\u034F '.repeat(fillerCount)\n const previewHtml = `<div style=\"display:none\">${text}${filler}\\u00A0</div>`\n html = html.replace(/<body([^>]*)>/, `<body$1>${previewHtml}`)\n }\n\n const sourceFiles = typeof input === 'string' && !input.includes('<template') && !input.includes('<script')\n ? collectSourceFiles(input)\n : undefined\n\n return {\n html,\n doctype: renderContext.doctype,\n sourceFiles,\n /**\n * Layer sfcConfig over config — sfcConfig is a partial override\n * emitted by composables (defineConfig, useTransformers, etc.).\n * A naive replacement (`sfcConfig ?? config`) drops defaults\n * from the resolved config when the SFC only sets a single\n * key, since the composables' inject() of globalConfig can\n * return `{}` in dev when ssrLoadModule and the SFC's\n * auto-imported module resolve to different module\n * instances (different Symbols).\n */\n templateConfig: renderContext.sfcConfig ? merge(renderContext.sfcConfig, config) : config,\n sfcEventHandlers: renderContext.sfcEventHandlers,\n plaintext: renderContext.plaintext,\n outputPath: renderContext.outputPath,\n tailwindBlocks: renderContext.tailwindBlocks,\n }\n },\n\n async invalidate(filePath: string): Promise<void> {\n const mod = await server.moduleGraph.getModuleByUrl(filePath)\n if (mod) {\n server.moduleGraph.invalidateModule(mod)\n }\n },\n\n async invalidateAll(): Promise<void> {\n for (const mod of server.moduleGraph.idToModuleMap.values()) {\n server.moduleGraph.invalidateModule(mod)\n }\n },\n\n async close(): Promise<void> {\n await server.close()\n /**\n * unplugin-auto-import schedules a 500ms-throttled, fire-and-forget\n * d.ts write on its first scan. server.close() doesn't drain that\n * pending write, so callers tearing down the working dir right\n * after close (tests, ephemeral build pipelines) can race the\n * mkdir against a missing parent directory. Wait one throttle\n * window past close so the lingering write resolves while\n * the dir still exists.\n */\n if (dts) {\n await new Promise(resolve => setTimeout(resolve, 600))\n }\n },\n }\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"createRenderer.js","names":["relPath","merge"],"sources":["../../src/render/createRenderer.ts"],"sourcesContent":["import { dirname, isAbsolute, relative as relPath, resolve } from 'node:path'\nimport { mkdirSync, writeFileSync, existsSync, rmSync } from 'node:fs'\nimport { fileURLToPath } from 'node:url'\nimport { isLaravel } from '../utils/detect.ts'\nimport { rowSourceLocation } from './plugins/rowSourceLocation.ts'\nimport { rawExtract } from './plugins/rawExtract.ts'\nimport { codeBlockExtract } from './plugins/codeBlockExtract.ts'\nimport { markdownExtract } from './plugins/markdownExtract.ts'\nimport { createServer, mergeConfig, normalizePath, type InlineConfig, type Plugin } from 'vite'\nimport vue from '@vitejs/plugin-vue'\nimport Markdown from 'unplugin-vue-markdown/vite'\nimport AutoImport from 'unplugin-auto-import/vite'\nimport Components from 'unplugin-vue-components/vite'\nimport { unheadVueComposablesImports } from '@unhead/vue'\nimport { defu as merge } from 'defu'\nimport { glob, globSync } from 'tinyglobby'\nimport { createSSRApp } from 'vue'\nimport { renderToString } from 'vue/server-renderer'\nimport { createHead } from '@unhead/vue/server'\nimport { MaizzleConfigKey } from '../composables/useConfig.ts'\nimport { RenderContextKey } from '../composables/renderContext.ts'\nimport { componentNameFromPath, type NormalizedComponentSource } from '../utils/componentSources.ts'\nimport { shikiToCodeBlock } from '../components/utils.ts'\nimport type { Component, InjectionKey } from 'vue'\nimport type { MaizzleConfig, MarkdownConfig, VueConfig } from '../types/index.ts'\nimport type { MarkdownExit } from 'markdown-exit'\nimport type { RenderContext } from '../composables/renderContext.ts'\n\nconst __dirname = dirname(fileURLToPath(import.meta.url))\n\nconst vuePkgDir = dirname(fileURLToPath(import.meta.resolve('vue/package.json')))\nconst vueServerRendererPkgDir = dirname(fileURLToPath(import.meta.resolve('@vue/server-renderer/package.json')))\nconst unheadVuePkgDir = resolve(dirname(fileURLToPath(import.meta.resolve('@unhead/vue'))), '..')\nconst vueRouterPkgDir = dirname(fileURLToPath(import.meta.resolve('vue-router/package.json')))\n\nexport interface RenderedTemplate {\n html: string\n doctype?: string\n templateConfig: MaizzleConfig\n sfcEventHandlers: RenderContext['sfcEventHandlers']\n plaintext?: RenderContext['plaintext']\n outputPath?: RenderContext['outputPath']\n tailwindBlocks?: RenderContext['tailwindBlocks']\n /**\n * Absolute paths of every project file in the template's module\n * import closure (the template itself, its components, imported\n * modules). Undefined for virtual/pre-compiled renders where no\n * file entry exists.\n */\n sourceFiles?: string[]\n}\n\nexport interface Renderer {\n render(input: string | Component, config: MaizzleConfig, opts?: { source?: string; props?: Record<string, any> }): Promise<RenderedTemplate>\n invalidate(filePath: string): Promise<void>\n invalidateAll(): Promise<void>\n close(): Promise<void>\n}\n\nexport interface CreateRendererOptions {\n /** Generate .d.ts files for auto-imports and components (default: false) */\n dts?: boolean\n /** Options passed to unplugin-vue-markdown */\n markdown?: MarkdownConfig\n /** Root directory for resolving user component dirs and .d.ts output */\n root?: string\n /**\n * Additional component sources to register for auto-import. Already\n * normalized — pass through `normalizeComponentSources()` first.\n */\n componentDirs?: NormalizedComponentSource[]\n /** User Vite config options to merge into the internal SSR server */\n vite?: InlineConfig\n /**\n * Extra tags to treat as native custom elements (in addition to the\n * built-in `amp-*`), so the compiler skips component resolution for them.\n */\n customElements?: VueConfig['customElements']\n}\n\n/**\n * Build a predicate from the user's `vue.customElements` option. Accepts an\n * exact tag name, a `RegExp`, an array of either, or a predicate function.\n */\nfunction toCustomElementPredicate(\n value: VueConfig['customElements'],\n): (tag: string) => boolean {\n if (typeof value === 'function') return value\n if (value == null) return () => false\n\n const patterns = Array.isArray(value) ? value : [value]\n const exact = new Set<string>()\n const regexes: RegExp[] = []\n for (const pattern of patterns) {\n if (pattern instanceof RegExp) {\n /**\n * Strip `g`/`y` flags: `test()` on a global/sticky regex advances\n * `lastIndex`, so reusing the user's instance across tags would\n * match intermittently. Clone without them (and don't mutate the\n * user's regex) — for a tag test these flags carry no useful meaning.\n */\n regexes.push(new RegExp(pattern.source, pattern.flags.replace(/[gy]/g, '')))\n }\n else exact.add(pattern)\n }\n\n return (tag: string) => exact.has(tag) || regexes.some(re => re.test(tag))\n}\n\n/**\n * Lightweight Vite SSR loader for rendering Vue SFC email templates.\n *\n * Uses only Vue + unplugin for component/auto-import resolution.\n * Tailwind CSS compilation is handled by the transformer pipeline.\n */\nexport async function createRenderer(\n options: CreateRendererOptions = {},\n): Promise<Renderer> {\n const { dts = false, markdown: markdownOptionsRaw, root = process.cwd(), componentDirs = [], vite: userViteConfig, customElements } = options\n const isUserCustomElement = toCustomElementPredicate(customElements)\n const { shikiTheme = 'github-light', markdownSetup: userMarkdownSetup, ...restMarkdownConfig } = markdownOptionsRaw ?? {}\n\n /**\n * Sources without an explicit prefix get registered via unplugin's `dirs`\n * (folder name auto-namespaces). Sources with an explicit `prefix` are\n * registered through a custom resolver below so we fully control naming.\n */\n const dirSources = componentDirs.filter(s => s.prefix === undefined)\n const prefixedSources = componentDirs.filter(s => s.prefix !== undefined)\n\n /**\n * Absolute component dirs — used to skip auto-wrapping `.md` files that\n * are imported as reusable components (vs. entry-point email templates).\n */\n const componentDirsAbs = [resolve(root, 'components'), ...componentDirs.map(s => s.path)]\n\n const dtsDir = isLaravel()\n ? resolve(process.cwd(), 'resources/js/types/maizzle')\n : resolve(root, '.maizzle')\n\n /**\n * Built-in framework components live at this path. When a user provides\n * a top-level file with the same (PascalCased) basename, drop the\n * built-in from unplugin's scan so the user's component is the only\n * candidate. This avoids the \"naming conflicts\" warning and the\n * alphabetical-glob ordering pitfall that decides who wins when\n * both are present in `dirs`.\n */\n const frameworkComponentsDir = resolve(__dirname, '../components')\n\n function topLevelBasenamesLower(dir: string): Set<string> {\n if (!existsSync(dir)) return new Set()\n const files = globSync(['*.vue', '*.md'], { cwd: dir, absolute: false })\n return new Set(files.map(f => f.replace(/\\.(vue|md)$/, '').toLowerCase()))\n }\n\n const frameworkFiles = globSync(['*.vue', '*.md'], { cwd: frameworkComponentsDir, absolute: false })\n const frameworkByLower = new Map(\n frameworkFiles.map(f => [f.replace(/\\.(vue|md)$/, '').toLowerCase(), f]),\n )\n\n const shadowedNames = new Set<string>()\n for (const dir of [resolve(root, 'components'), ...dirSources.map(s => s.path)]) {\n for (const lower of topLevelBasenamesLower(dir)) {\n if (frameworkByLower.has(lower)) shadowedNames.add(lower)\n }\n }\n\n const frameworkExcludes = [...shadowedNames]\n .map(lower => `${frameworkComponentsDir}/${frameworkByLower.get(lower)}`)\n\n /**\n * Pre-scanned name → absolute-path map for prefixed sources. Rebuilt\n * on file add/unlink via the watcher hook plugin further down. Drives\n * the runtime resolver and the d.ts we emit for IDE autocompletion.\n */\n const prefixedNameMap = new Map<string, string>()\n\n async function scanPrefixedSources(): Promise<void> {\n prefixedNameMap.clear()\n const seen = new Map<string, string>()\n for (const source of prefixedSources) {\n const files = await glob(['**/*.vue', '**/*.md'], { cwd: source.path, absolute: true })\n for (const file of files) {\n const name = componentNameFromPath({\n filePath: file,\n dirRoot: source.path,\n prefix: source.prefix,\n pathPrefix: source.pathPrefix,\n })\n const existing = seen.get(name)\n if (existing && existing !== file) {\n throw new Error(\n `[maizzle] Component name collision: \"${name}\" resolved from both \"${existing}\" and \"${file}\". `\n + 'Rename one of the files or split them into separate sources with distinct prefixes.',\n )\n }\n seen.set(name, file)\n prefixedNameMap.set(name, file)\n }\n }\n }\n\n await scanPrefixedSources()\n\n const prefixedResolver = (name: string) => prefixedNameMap.get(name)\n\n /**\n * unplugin-vue-components' own d.ts only covers components found via\n * `dirs`; its `types` option emits named-import entries which break\n * for SFC `default` exports. Write a sibling d.ts for prefixed\n * sources so editors get correct autocompletion via TypeScript\n * interface merging on `vue.GlobalComponents`.\n */\n const prefixedDtsPath = resolve(dtsDir, 'prefixed-components.d.ts')\n\n function writePrefixedDts(): void {\n if (!dts) return\n if (prefixedNameMap.size === 0) {\n if (existsSync(prefixedDtsPath)) rmSync(prefixedDtsPath)\n return\n }\n const dtsBase = dirname(prefixedDtsPath)\n mkdirSync(dtsBase, { recursive: true })\n const lines = Array.from(prefixedNameMap.entries())\n .sort(([a], [b]) => a.localeCompare(b))\n .map(([name, file]) => {\n const relativePath = relPath(dtsBase, file).replace(/\\\\/g, '/')\n const importPath = relativePath.startsWith('.') ? relativePath : `./${relativePath}`\n return ` ${name}: typeof import('${importPath}')['default']`\n })\n .join('\\n')\n writeFileSync(\n prefixedDtsPath,\n `/* eslint-disable */\\n// @ts-nocheck\\n// biome-ignore lint: disable\\n// oxlint-disable\\n// Generated by Maizzle for prefixed component sources\\n\\nexport {}\\n\\n/* prettier-ignore */\\ndeclare module 'vue' {\\n export interface GlobalComponents {\\n${lines}\\n }\\n}\\n`,\n )\n }\n\n writePrefixedDts()\n\n /**\n * Watches prefixed source dirs and rebuilds {@link prefixedNameMap} when\n * files are added/removed. Vite's watcher already covers `dirSources`\n * via unplugin-vue-components' own filesystem hooks.\n */\n const prefixedSourceWatcher: Plugin | null = prefixedSources.length > 0\n ? {\n name: 'maizzle:prefixed-component-watcher',\n configureServer(server) {\n for (const source of prefixedSources) {\n server.watcher.add(source.path)\n }\n const refresh = async (file: string) => {\n if (!prefixedSources.some(s => file.startsWith(`${s.path}/`))) return\n if (!/\\.(vue|md)$/.test(file)) return\n await scanPrefixedSources()\n writePrefixedDts()\n }\n server.watcher.on('add', refresh)\n server.watcher.on('unlink', refresh)\n },\n }\n : null\n\n const VIRTUAL_SFC_ID = 'virtual:maizzle-sfc.vue'\n let virtualSfcSource = ''\n\n /**\n * Per-render source overrides keyed by absolute template path. Lets the\n * build's beforeRender event rewrite a template's source before compile\n * while keeping the real file id — so relative imports, asset URLs and\n * component resolution still resolve against the actual file location\n * (which the virtual-SFC path can't do).\n */\n const sourceOverrides = new Map<string, string>()\n\n /**\n * Never load the host project's vite.config.ts here. Doing so pulls\n * every host plugin (Nitro, TanStack Start, the Maizzle plugin\n * itself, …) into this isolated SSR pipeline, where they override\n * env factories, re-trigger configureServer hooks, and break\n * Vite's hot channel wiring. Users who need extra Vite plugins\n * for SSR pass them explicitly via the `vite` option.\n */\n const maizzleConfig: InlineConfig = {\n configFile: false,\n /**\n * Without an explicit root, Vite roots this SSR server at\n * process.cwd() and its watcher recursively watches the entire host\n * project — on large projects this exhausts inotify watch limits.\n * The renderer only needs its watcher for component dirs (unplugin\n * d.ts regeneration); template invalidation is driven externally via\n * invalidateAll(). Root at the Maizzle root instead; component dirs\n * outside it are re-added to the watcher after createServer below.\n */\n root: resolve(root),\n plugins: [\n rawExtract(),\n codeBlockExtract(),\n markdownExtract(),\n rowSourceLocation(),\n {\n name: 'maizzle:virtual-sfc',\n resolveId(id) {\n if (id === VIRTUAL_SFC_ID) return id\n },\n load(id) {\n if (id === VIRTUAL_SFC_ID) return virtualSfcSource\n },\n },\n {\n name: 'maizzle:source-override',\n load(id) {\n const override = sourceOverrides.get(id.split('?')[0])\n if (override !== undefined) return override\n },\n },\n vue({\n include: [/\\.vue$/, /\\.md$/],\n template: {\n transformAssetUrls: false,\n compilerOptions: {\n /**\n * Keep template whitespace intact — the default `condense`\n * mode collapses/strips whitespace between tags,\n * which can alter plaintext output.\n */\n whitespace: 'preserve',\n /**\n * AMP4Email tags (<amp-carousel>, <amp-img>, <amp-list> ...)\n * render verbatim — skip the component resolver. Users who\n * want to wrap an amp tag in a Vue component should register\n * it under a PascalCase name (e.g. `components/AmpCarousel.vue`\n * → `<AmpCarousel>`).\n *\n * User-defined tags (config `vue.customElements`, e.g. VML `v:*`)\n * extend this — they render verbatim for the same reason.\n */\n isCustomElement: (tag: string) => tag.startsWith('amp-') || isUserCustomElement(tag),\n },\n },\n }),\n Markdown(merge(restMarkdownConfig, {\n headEnabled: true,\n wrapperDiv: false,\n wrapperClasses: 'prose',\n wrapperComponent: (id: string, raw: string) => {\n const fm = raw.match(/^---\\r?\\n([\\s\\S]*?)\\r?\\n---/)?.[1]\n const layout = fm?.match(/^[ \\t]*layout[ \\t]*:[ \\t]*['\"]?([A-Za-z][\\w-]*|false|none)['\"]?[ \\t]*$/m)?.[1]\n if (layout === 'false' || layout === 'none') return null\n if (layout) return layout\n /**\n * No `layout:` set — default to the built-in `MarkdownLayout`\n * for entry-template `.md` files. Skip for `.md` files inside\n * component dirs, which are reusable fragments imported into\n * other templates.\n */\n const inComponentDir = componentDirsAbs.some(d => id === d || id.startsWith(`${d}/`))\n return inComponentDir ? null : 'MarkdownLayout'\n },\n markdownOptions: {\n async highlight(code: string, lang: string) {\n const { codeToHtml } = await import('shiki')\n try {\n return await codeToHtml(code, { lang, theme: shikiTheme })\n } catch {\n return ''\n }\n },\n },\n /**\n * Run the user's `markdownSetup` first (defu would otherwise drop the\n * built-in one when both are functions), then always install the\n * email-safe code-block wrapping on top — mirroring the `<Markdown>`\n * component so `.md` templates and the component behave identically.\n */\n async markdownSetup(md: MarkdownExit) {\n // `md` is cast because unplugin-vue-markdown bundles its own\n // markdown-exit copy, so its `MarkdownExit` is nominally distinct\n // from ours despite being structurally identical.\n await userMarkdownSetup?.(md as unknown as Parameters<NonNullable<typeof userMarkdownSetup>>[0])\n\n const defaultFence = md.renderer.rules.fence!\n md.renderer.rules.fence = (...args) =>\n Promise.resolve(defaultFence(...args)).then(shikiToCodeBlock)\n\n const defaultCodeBlock = md.renderer.rules.code_block!\n md.renderer.rules.code_block = (...args) => shikiToCodeBlock(defaultCodeBlock(...args) as string)\n },\n })),\n AutoImport({\n dirs: [\n resolve(__dirname, '../composables'),\n resolve(__dirname, '../filters'),\n ],\n imports: ['vue', unheadVueComposablesImports],\n /**\n * unplugin-auto-import's default `include` doesn't match `.md`, so\n * auto-imports (Vue, unhead and Maizzle composables/filters) were\n * never injected into Markdown templates — `useConfig()` and friends\n * threw at runtime. Extend the default list with `.md` (and its\n * `?vue` script sub-requests) to mirror the `.md` coverage the\n * Components plugin already declares below.\n */\n include: [/\\.[jt]sx?$/, /\\.vue$/, /\\.vue\\?vue/, /\\.md$/, /\\.md\\?vue/],\n dts: dts ? resolve(dtsDir, 'auto-imports.d.ts') : false,\n }),\n Components({\n extensions: ['vue', 'md'],\n include: [/\\.vue$/, /\\.vue\\?vue/, /\\.md$/],\n dirs: [\n frameworkComponentsDir,\n resolve(root, 'components'),\n ...dirSources.map(s => s.path),\n ],\n /**\n * Drop built-in component files whose name the user has shadowed.\n * This makes the user's version the only match — no \"naming\n * conflicts\" warning, no glob-ordering games.\n */\n globsExclude: frameworkExcludes,\n directoryAsNamespace: true,\n collapseSamePrefixes: true,\n resolvers: prefixedSources.length > 0 ? [prefixedResolver] : undefined,\n dts: dts ? resolve(dtsDir, 'components.d.ts') : false,\n }),\n ...(prefixedSourceWatcher ? [prefixedSourceWatcher] : []),\n ],\n resolve: {\n alias: {\n 'vue/server-renderer': resolve(vueServerRendererPkgDir, 'dist/server-renderer.esm-bundler.js'),\n 'vue': resolve(vuePkgDir, 'dist/vue.runtime.esm-bundler.js'),\n 'vue-router': vueRouterPkgDir,\n '@unhead/vue/server': resolve(unheadVuePkgDir, 'dist/server.mjs'),\n '@unhead/vue': resolve(unheadVuePkgDir, 'dist/index.mjs'),\n },\n },\n server: {\n middlewareMode: true,\n hmr: false,\n /**\n * Watcher is required so unplugin-vue-components and unplugin-auto-import\n * detect added/removed component files and rewrite their .d.ts on the fly.\n * (We only render via SSR — HMR is off, but chokidar still drives plugins.)\n */\n fs: {\n allow: [process.cwd(), root, ...componentDirs.map(s => s.path), vuePkgDir, vueServerRendererPkgDir, unheadVuePkgDir, vueRouterPkgDir],\n },\n },\n appType: 'custom',\n logLevel: 'silent',\n optimizeDeps: {\n noDiscovery: true,\n },\n }\n\n /**\n * Merge user's vite config (from config.vite) under Maizzle's config.\n * mergeConfig(a, b) → b overrides a for scalars, arrays concatenate.\n * This ensures Maizzle's critical settings (middlewareMode, appType,\n * etc.) always win, while user plugins and other options remain.\n */\n const finalConfig = userViteConfig\n ? mergeConfig(userViteConfig, maizzleConfig)\n : maizzleConfig\n\n const server = await createServer(finalConfig)\n\n /**\n * With the narrowed root above, component dirs outside the Maizzle root\n * are no longer covered by the root watch — add them explicitly so\n * unplugin still sees add/unlink events.\n */\n for (const dir of [resolve(root, 'components'), ...dirSources.map(s => s.path)]) {\n server.watcher.add(dir)\n }\n\n /**\n * Walk the SSR module graph from a template entry and collect every\n * project file it (transitively) imports — components resolved by\n * unplugin appear as real static imports, so built-ins and userland\n * components are all reachable here. node_modules deps are skipped.\n */\n function collectSourceFiles(entryPath: string): string[] | undefined {\n const mods = server.moduleGraph.getModulesByFile(normalizePath(entryPath))\n if (!mods || mods.size === 0) return undefined\n const builtinsDir = normalizePath(frameworkComponentsDir)\n const files = new Set<string>()\n const visited = new Set<unknown>()\n const queue = [...mods]\n while (queue.length) {\n const m = queue.pop() as any\n if (!m || visited.has(m)) continue\n visited.add(m)\n const file = m.file ? normalizePath(m.file) : undefined\n /**\n * Prune node_modules subtrees (their imports can't be project\n * files), but keep the framework's own built-in components\n * (in node_modules when installed from npm).\n */\n if (file && file.includes('/node_modules/') && !file.startsWith(`${builtinsDir}/`)) continue\n if (file && isAbsolute(file)) files.add(file)\n /**\n * Traversal is tracked per module node, not per file, so virtual\n * modules (no file) and query variants of an already-seen file\n * still contribute their imports.\n */\n for (const dep of [...(m.ssrImportedModules ?? []), ...(m.importedModules ?? [])]) queue.push(dep)\n }\n return [...files]\n }\n\n return {\n async render(input: string | Component, config: MaizzleConfig, opts?: { source?: string; props?: Record<string, any> }): Promise<RenderedTemplate> {\n let component: Component\n let configKey: InjectionKey<MaizzleConfig>\n let contextKey: InjectionKey<RenderContext>\n\n if (typeof input === 'string') {\n /**\n * String input goes through Vite — must use ssrLoadModule for\n * injection keys so they share the same module instance as SFC.\n */\n const configModule = await server.ssrLoadModule(resolve(__dirname, '../composables/useConfig'))\n const contextModule = await server.ssrLoadModule(resolve(__dirname, '../composables/renderContext'))\n configKey = configModule.MaizzleConfigKey\n contextKey = contextModule.RenderContextKey\n\n if (input.includes('<template') || input.includes('<script')) {\n virtualSfcSource = input\n const mod = server.moduleGraph.getModuleById(VIRTUAL_SFC_ID)\n if (mod) server.moduleGraph.invalidateModule(mod)\n component = (await server.ssrLoadModule(VIRTUAL_SFC_ID)).default\n } else {\n /**\n * A beforeRender handler may have rewritten the source. Register it\n * under the real path id and invalidate so ssrLoadModule compiles\n * the override; clear + invalidate afterwards so the override never\n * leaks into a later render of the same path.\n */\n const hasOverride = opts?.source !== undefined\n if (hasOverride) {\n sourceOverrides.set(input, opts!.source!)\n const mod = await server.moduleGraph.getModuleByUrl(input)\n if (mod) server.moduleGraph.invalidateModule(mod)\n }\n try {\n component = (await server.ssrLoadModule(input)).default\n } finally {\n if (hasOverride) {\n sourceOverrides.delete(input)\n const mod = await server.moduleGraph.getModuleByUrl(input)\n if (mod) server.moduleGraph.invalidateModule(mod)\n }\n }\n }\n } else {\n // Pre-compiled component — use directly imported keys\n component = input\n configKey = MaizzleConfigKey\n contextKey = RenderContextKey\n }\n\n const renderContext: RenderContext = {\n doctype: undefined,\n sfcConfig: undefined,\n sfcEventHandlers: [],\n }\n\n const head = createHead({ disableDefaults: true })\n const app = createSSRApp(component, opts?.props)\n app.use(head)\n\n // Register user Vue plugins, directives, and global properties\n if (config.vue) {\n const plugins = typeof config.vue.plugins === 'function'\n ? config.vue.plugins()\n : config.vue.plugins ?? []\n for (const plugin of plugins) {\n app.use(plugin)\n }\n for (const [name, directive] of Object.entries(config.vue.directives ?? {})) {\n app.directive(name, directive)\n }\n Object.assign(app.config.globalProperties, config.vue.globalProperties)\n }\n\n app.provide(configKey, config)\n app.provide(contextKey, renderContext)\n\n const ssrContext: Record<string, any> = {}\n let html: string = await renderToString(app, ssrContext)\n\n const { headTags, bodyTags, bodyTagsOpen, htmlAttrs, bodyAttrs } = head.render()\n\n // Inject head entries into the rendered HTML\n if (htmlAttrs) {\n html = html.replace(/<html([^>]*)>/, `<html$1 ${htmlAttrs}>`)\n }\n if (headTags) {\n html = html.replace('</head>', `${headTags}\\n</head>`)\n }\n if (bodyAttrs) {\n html = html.replace(/<body([^>]*)>/, `<body$1 ${bodyAttrs}>`)\n }\n if (bodyTagsOpen) {\n html = html.replace(/<body([^>]*)>/, `<body$1>\\n${bodyTagsOpen}`)\n }\n if (bodyTags) {\n html = html.replace('</body>', `${bodyTags}\\n</body>`)\n }\n\n /**\n * Strip Vue SSR fragment markers + teleport anchor comments. These\n * are rendering hygiene, not transformer concerns — must run\n * regardless of `useTransformers` state. Fragment markers contain\n * `-->`, which would prematurely terminate MSO conditional\n * comments downstream — including in the DOM round-trip below,\n * whose parser would otherwise close `<!--[if mso]>` at a\n * marker's `-->` and mangle the conditional on re-serialize.\n */\n const stripSsrMarkers = (str: string) => str\n .replaceAll('<!--[-->', '')\n .replaceAll('<!--]-->', '')\n .replaceAll('<!--teleport start anchor-->', '')\n .replaceAll('<!--teleport anchor-->', '')\n .replaceAll('<!--teleport start-->', '')\n .replaceAll('<!--teleport end-->', '')\n\n html = stripSsrMarkers(html)\n\n // Inject SSR teleport content into their target elements\n const hasTeleports = ssrContext.teleports && Object.keys(ssrContext.teleports).length > 0\n const hasFonts = (renderContext.fonts?.length ?? 0) > 0\n\n if (hasTeleports || hasFonts) {\n const { parse: parseDom, serialize: serializeDom, walk } = await import('../utils/ast/index.ts')\n let dom = parseDom(html)\n\n if (hasTeleports) {\n for (const [rawTarget, content] of Object.entries(ssrContext.teleports) as [string, string][]) {\n if (!content) continue\n\n const prepend = rawTarget.endsWith(':start')\n const target = prepend ? rawTarget.slice(0, -6) : rawTarget\n const targetChildren = parseDom(stripSsrMarkers(content))\n\n walk(dom, (node) => {\n const el = node as import('domhandler').Element\n\n if (!el.name) return\n\n const matched\n = target === el.name\n || (target.startsWith('#') && el.attribs?.id === target.slice(1))\n || (target.startsWith('.') && el.attribs?.class?.split(/\\s+/).includes(target.slice(1)))\n\n if (matched) {\n for (const child of targetChildren) {\n child.parent = el as any\n }\n\n el.children = prepend\n ? [...targetChildren, ...(el.children || [])] as any\n : [...(el.children || []), ...targetChildren] as any\n }\n })\n }\n }\n\n if (hasFonts) {\n const { injectFonts } = await import('./injectFonts.ts')\n injectFonts(dom, renderContext.fonts!, parseDom, walk)\n }\n\n html = serializeDom(dom)\n }\n\n // Inject preheader text from usePreheader() composable\n if (renderContext.preheader) {\n const { text, fillerCount } = renderContext.preheader\n const filler = '\\u2007\\uFEFF\\u034F '.repeat(fillerCount)\n const previewHtml = `<div style=\"display:none\">${text}${filler}\\u00A0</div>`\n html = html.replace(/<body([^>]*)>/, `<body$1>${previewHtml}`)\n }\n\n const sourceFiles = typeof input === 'string' && !input.includes('<template') && !input.includes('<script')\n ? collectSourceFiles(input)\n : undefined\n\n return {\n html,\n doctype: renderContext.doctype,\n sourceFiles,\n /**\n * Layer sfcConfig over config — sfcConfig is a partial override\n * emitted by composables (defineConfig, useTransformers, etc.).\n * A naive replacement (`sfcConfig ?? config`) drops defaults\n * from the resolved config when the SFC only sets a single\n * key, since the composables' inject() of globalConfig can\n * return `{}` in dev when ssrLoadModule and the SFC's\n * auto-imported module resolve to different module\n * instances (different Symbols).\n */\n templateConfig: renderContext.sfcConfig ? merge(renderContext.sfcConfig, config) : config,\n sfcEventHandlers: renderContext.sfcEventHandlers,\n plaintext: renderContext.plaintext,\n outputPath: renderContext.outputPath,\n tailwindBlocks: renderContext.tailwindBlocks,\n }\n },\n\n async invalidate(filePath: string): Promise<void> {\n const mod = await server.moduleGraph.getModuleByUrl(filePath)\n if (mod) {\n server.moduleGraph.invalidateModule(mod)\n }\n },\n\n async invalidateAll(): Promise<void> {\n for (const mod of server.moduleGraph.idToModuleMap.values()) {\n server.moduleGraph.invalidateModule(mod)\n }\n },\n\n async close(): Promise<void> {\n await server.close()\n /**\n * unplugin-auto-import schedules a 500ms-throttled, fire-and-forget\n * d.ts write on its first scan. server.close() doesn't drain that\n * pending write, so callers tearing down the working dir right\n * after close (tests, ephemeral build pipelines) can race the\n * mkdir against a missing parent directory. Wait one throttle\n * window past close so the lingering write resolves while\n * the dir still exists.\n */\n if (dts) {\n await new Promise(resolve => setTimeout(resolve, 600))\n }\n },\n }\n}\n"],"mappings":"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"}
|
package/dist/render/index.js
CHANGED
|
@@ -36,7 +36,7 @@ async function render(template, config) {
|
|
|
36
36
|
const rendered = await renderer.render(isFile ? resolve(template) : template, templateConfig, { props });
|
|
37
37
|
let html = rendered.html;
|
|
38
38
|
const doctype = rendered.doctype ?? rendered.templateConfig.doctype ?? "<!DOCTYPE html>";
|
|
39
|
-
|
|
39
|
+
html = await runTransformers(html, rendered.templateConfig, isFile ? resolve(template) : void 0, doctype, rendered.tailwindBlocks);
|
|
40
40
|
if (doctype) html = `${doctype}\n${html}`;
|
|
41
41
|
const globalPlaintext = rendered.templateConfig.plaintext;
|
|
42
42
|
const sfcPlaintext = rendered.plaintext;
|
package/dist/render/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../../src/render/index.ts"],"sourcesContent":["import { resolve, extname } from 'pathe'\nimport { resolveConfigObject } from '../config/index.ts'\nimport { runTransformers } from '../transformers/index.ts'\nimport { createPlaintext } from '../plaintext.ts'\nimport { stripForHtml, stripForPlaintext } from '../utils/output-markers.ts'\nimport defu from 'defu'\nimport type { Component } from 'vue'\nimport type { MaizzleConfig } from '../types/index.ts'\nimport { createRenderer } from './createRenderer.ts'\nimport { getActiveRenderer } from './active.ts'\nimport { normalizeComponentSources } from '../utils/componentSources.ts'\n\nexport type { Renderer, RenderedTemplate, CreateRendererOptions } from './createRenderer.ts'\nexport { createRenderer } from './createRenderer.ts'\n\nexport interface RenderResult {\n html: string\n config: MaizzleConfig\n plaintext?: string\n}\n\n/**\n * Render a Vue SFC email template to a fully-transformed HTML string.\n * Accepts a file path or a raw SFC source string.\n */\nexport async function render(\n template: string | Component,\n config?: Partial<MaizzleConfig>,\n): Promise<RenderResult> {\n if (template == null) {\n throw new Error(\n `render() received ${template}. If you used \\`import X from './x.vue'\\`, Node cannot load .vue files natively — pass the path string instead: render('./x.vue').`,\n )\n }\n if (typeof template !== 'string' && typeof template !== 'object' && typeof template !== 'function') {\n throw new TypeError(\n `render() expected a file path or SFC source string, got ${typeof template}.`,\n )\n }\n\n const resolvedConfig = resolveConfigObject(config)\n const { props, ...templateConfig } = resolvedConfig\n\n /**\n * Reuse a renderer started by the Vite plugin when one is active.\n * Spinning up a fresh Vite SSR server inside a host Vite dev process\n * (e.g. TanStack Start) collides on env wiring and throws\n * \"outsideEmitter undefined\".\n */\n const active = getActiveRenderer()\n const renderer = active ?? await createRenderer({\n markdown: resolvedConfig.markdown,\n root: resolvedConfig.root,\n componentDirs: normalizeComponentSources(resolvedConfig.components?.source, process.cwd()),\n vite: resolvedConfig.vite,\n customElements: resolvedConfig.vue?.customElements,\n })\n\n try {\n const isFile = typeof template === 'string'\n && ['.vue', '.md'].includes(extname(template))\n && !template.includes('\\n')\n\n const rendered = await renderer.render(isFile ? resolve(template) : template, templateConfig, { props })\n let html = rendered.html\n\n const doctype = rendered.doctype ?? rendered.templateConfig.doctype ?? '<!DOCTYPE html>'\n\n
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../../src/render/index.ts"],"sourcesContent":["import { resolve, extname } from 'pathe'\nimport { resolveConfigObject } from '../config/index.ts'\nimport { runTransformers } from '../transformers/index.ts'\nimport { createPlaintext } from '../plaintext.ts'\nimport { stripForHtml, stripForPlaintext } from '../utils/output-markers.ts'\nimport defu from 'defu'\nimport type { Component } from 'vue'\nimport type { MaizzleConfig } from '../types/index.ts'\nimport { createRenderer } from './createRenderer.ts'\nimport { getActiveRenderer } from './active.ts'\nimport { normalizeComponentSources } from '../utils/componentSources.ts'\n\nexport type { Renderer, RenderedTemplate, CreateRendererOptions } from './createRenderer.ts'\nexport { createRenderer } from './createRenderer.ts'\n\nexport interface RenderResult {\n html: string\n config: MaizzleConfig\n plaintext?: string\n}\n\n/**\n * Render a Vue SFC email template to a fully-transformed HTML string.\n * Accepts a file path or a raw SFC source string.\n */\nexport async function render(\n template: string | Component,\n config?: Partial<MaizzleConfig>,\n): Promise<RenderResult> {\n if (template == null) {\n throw new Error(\n `render() received ${template}. If you used \\`import X from './x.vue'\\`, Node cannot load .vue files natively — pass the path string instead: render('./x.vue').`,\n )\n }\n if (typeof template !== 'string' && typeof template !== 'object' && typeof template !== 'function') {\n throw new TypeError(\n `render() expected a file path or SFC source string, got ${typeof template}.`,\n )\n }\n\n const resolvedConfig = resolveConfigObject(config)\n const { props, ...templateConfig } = resolvedConfig\n\n /**\n * Reuse a renderer started by the Vite plugin when one is active.\n * Spinning up a fresh Vite SSR server inside a host Vite dev process\n * (e.g. TanStack Start) collides on env wiring and throws\n * \"outsideEmitter undefined\".\n */\n const active = getActiveRenderer()\n const renderer = active ?? await createRenderer({\n markdown: resolvedConfig.markdown,\n root: resolvedConfig.root,\n componentDirs: normalizeComponentSources(resolvedConfig.components?.source, process.cwd()),\n vite: resolvedConfig.vite,\n customElements: resolvedConfig.vue?.customElements,\n })\n\n try {\n const isFile = typeof template === 'string'\n && ['.vue', '.md'].includes(extname(template))\n && !template.includes('\\n')\n\n const rendered = await renderer.render(isFile ? resolve(template) : template, templateConfig, { props })\n let html = rendered.html\n\n const doctype = rendered.doctype ?? rendered.templateConfig.doctype ?? '<!DOCTYPE html>'\n\n html = await runTransformers(html, rendered.templateConfig, isFile ? resolve(template) : undefined, doctype, rendered.tailwindBlocks)\n if (doctype) html = `${doctype}\\n${html}`\n\n const globalPlaintext = rendered.templateConfig.plaintext\n const sfcPlaintext = rendered.plaintext\n\n let plaintextResult: string | undefined\n\n if (globalPlaintext || sfcPlaintext) {\n const globalCfg = typeof globalPlaintext === 'object' ? globalPlaintext : {}\n const stripOptions = defu(sfcPlaintext?.options, globalCfg.options)\n plaintextResult = createPlaintext(stripForPlaintext(html), stripOptions)\n }\n\n return { html: stripForHtml(html), config: rendered.templateConfig, plaintext: plaintextResult }\n } finally {\n if (!active) await renderer.close()\n }\n}\n"],"mappings":";;;;;;;;;;;;;;AAyBA,eAAsB,OACpB,UACA,QACuB;CACvB,IAAI,YAAY,MACd,MAAM,IAAI,MACR,qBAAqB,SAAS,mIAChC;CAEF,IAAI,OAAO,aAAa,YAAY,OAAO,aAAa,YAAY,OAAO,aAAa,YACtF,MAAM,IAAI,UACR,2DAA2D,OAAO,SAAS,EAC7E;CAGF,MAAM,iBAAiB,oBAAoB,MAAM;CACjD,MAAM,EAAE,OAAO,GAAG,mBAAmB;;;;;;;CAQrC,MAAM,SAAS,kBAAkB;CACjC,MAAM,WAAW,UAAU,MAAM,eAAe;EAC9C,UAAU,eAAe;EACzB,MAAM,eAAe;EACrB,eAAe,0BAA0B,eAAe,YAAY,QAAQ,QAAQ,IAAI,CAAC;EACzF,MAAM,eAAe;EACrB,gBAAgB,eAAe,KAAK;CACtC,CAAC;CAED,IAAI;EACF,MAAM,SAAS,OAAO,aAAa,YAC9B,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,QAAQ,QAAQ,CAAC,KAC1C,CAAC,SAAS,SAAS,IAAI;EAE5B,MAAM,WAAW,MAAM,SAAS,OAAO,SAAS,QAAQ,QAAQ,IAAI,UAAU,gBAAgB,EAAE,MAAM,CAAC;EACvG,IAAI,OAAO,SAAS;EAEpB,MAAM,UAAU,SAAS,WAAW,SAAS,eAAe,WAAW;EAEvE,OAAO,MAAM,gBAAgB,MAAM,SAAS,gBAAgB,SAAS,QAAQ,QAAQ,IAAI,KAAA,GAAW,SAAS,SAAS,cAAc;EACpI,IAAI,SAAS,OAAO,GAAG,QAAQ,IAAI;EAEnC,MAAM,kBAAkB,SAAS,eAAe;EAChD,MAAM,eAAe,SAAS;EAE9B,IAAI;EAEJ,IAAI,mBAAmB,cAAc;GACnC,MAAM,YAAY,OAAO,oBAAoB,WAAW,kBAAkB,CAAC;GAC3E,MAAM,eAAe,KAAK,cAAc,SAAS,UAAU,OAAO;GAClE,kBAAkB,gBAAgB,kBAAkB,IAAI,GAAG,YAAY;EACzE;EAEA,OAAO;GAAE,MAAM,aAAa,IAAI;GAAG,QAAQ,SAAS;GAAgB,WAAW;EAAgB;CACjG,UAAU;EACR,IAAI,CAAC,QAAQ,MAAM,SAAS,MAAM;CACpC;AACF"}
|
package/dist/serve.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"serve.d.ts","names":[],"sources":["../src/serve.ts"],"mappings":";;;;UA0DiB;EACf,SAAS,QAAQ;;EAEjB;;EAEA;;EAEA;;;;;;;;;;;iBAYoB,MAAM,UAAS,eAAiB,QAAA;
|
|
1
|
+
{"version":3,"file":"serve.d.ts","names":[],"sources":["../src/serve.ts"],"mappings":";;;;UA0DiB;EACf,SAAS,QAAQ;;EAEjB;;EAEA;;EAEA;;;;;;;;;;;iBAYoB,MAAM,UAAS,eAAiB,QAAA;iBAgtBtC,YAAY,QAAQ,eAAe"}
|
package/dist/serve.js
CHANGED
|
@@ -11,7 +11,7 @@ import { setActiveRenderer } from "./render/active.js";
|
|
|
11
11
|
import { serveLint } from "./server/linter.js";
|
|
12
12
|
import { serveCompatibility } from "./server/compatibility.js";
|
|
13
13
|
import { sendEmail } from "./server/email.js";
|
|
14
|
-
import { createWatchedFileMatcher } from "./utils/watchPaths.js";
|
|
14
|
+
import { createWatchedFileMatcher, deriveWatchRoots } from "./utils/watchPaths.js";
|
|
15
15
|
import { createRequire } from "node:module";
|
|
16
16
|
import { readFileSync } from "node:fs";
|
|
17
17
|
import { basename, dirname, parse, resolve } from "node:path";
|
|
@@ -80,6 +80,27 @@ async function serve(options = {}) {
|
|
|
80
80
|
await events.fireBeforeCreate({ config });
|
|
81
81
|
const server = await createServer({
|
|
82
82
|
configFile: false,
|
|
83
|
+
/**
|
|
84
|
+
* Root at the dev UI directory, not process.cwd(). With the host
|
|
85
|
+
* project as Vite root, the watcher recursively watches the entire
|
|
86
|
+
* host tree (vendor dirs, build output, …) — on large projects this
|
|
87
|
+
* exhausts inotify watch limits — and the host's own
|
|
88
|
+
* `server.watch.ignored` cannot reach this server. The UI is served
|
|
89
|
+
* via middleware + /@fs/ URLs and never needed the cwd root.
|
|
90
|
+
* `appType: 'custom'` keeps Vite from serving devUIDir/index.html
|
|
91
|
+
* itself, which would bypass the config-injecting middleware.
|
|
92
|
+
* The paths Maizzle actually reacts to are added explicitly in
|
|
93
|
+
* maizzleDevPlugin's configureServer.
|
|
94
|
+
*/
|
|
95
|
+
root: devUIDir,
|
|
96
|
+
appType: "custom",
|
|
97
|
+
/**
|
|
98
|
+
* Vite derives `publicDir` from `root`, so keep serving the project's
|
|
99
|
+
* `public/` directory: templates reference images as `/logo.png`
|
|
100
|
+
* (the default `static.source` copies `public/**` on build) and
|
|
101
|
+
* the preview iframe resolves those against this server.
|
|
102
|
+
*/
|
|
103
|
+
publicDir: resolve(process.cwd(), "public"),
|
|
83
104
|
plugins: [
|
|
84
105
|
vue(),
|
|
85
106
|
tailwindcss(),
|
|
@@ -197,10 +218,37 @@ function maizzleDevPlugin(config, renderer, events, configInput) {
|
|
|
197
218
|
"tailwind.config.ts",
|
|
198
219
|
"locales/**"
|
|
199
220
|
];
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
221
|
+
/**
|
|
222
|
+
* (Re)establish file watching for a resolved config: the matcher used
|
|
223
|
+
* by the change handler below, and — with the dev UI directory as Vite
|
|
224
|
+
* root, the host cwd is no longer watched wholesale — the directories
|
|
225
|
+
* the watch globs and the template content live in (see
|
|
226
|
+
* deriveWatchRoots). Only derived roots are added to the watcher: the
|
|
227
|
+
* server runs with Vite's default `disableGlobbing`, so raw glob
|
|
228
|
+
* patterns would be treated as literal paths, and plain file paths
|
|
229
|
+
* survive derivation as themselves. Runs once here and again after a
|
|
230
|
+
* config reload, so content, components.source, root, and server.watch
|
|
231
|
+
* edits take effect without a server restart. Roots a reload leaves
|
|
232
|
+
* behind stay watched until restart — superfluous but harmless.
|
|
233
|
+
*
|
|
234
|
+
* Match against cwd, not config.root: the watched paths (maizzle/tailwind
|
|
235
|
+
* configs, locales) are project-root relative, and `watcher.add`
|
|
236
|
+
* resolves them against cwd too. Using config.root would break matching
|
|
237
|
+
* when root points at a subdirectory (e.g. the Vite-plugin setup).
|
|
238
|
+
*/
|
|
239
|
+
const applyWatchPaths = (cfg) => {
|
|
240
|
+
const watchPaths = [...defaultWatchPaths, ...cfg.server?.watch ?? []];
|
|
241
|
+
const watchRoots = deriveWatchRoots({
|
|
242
|
+
content: cfg.content ?? ["emails/**/*.vue"],
|
|
243
|
+
componentDirs: normalizeComponentSources(cfg.components?.source, process.cwd()).map((s) => s.path),
|
|
244
|
+
root: cfg.root,
|
|
245
|
+
watchPaths,
|
|
246
|
+
cwd: process.cwd()
|
|
247
|
+
});
|
|
248
|
+
for (const watchRoot of watchRoots) server.watcher.add(watchRoot);
|
|
249
|
+
return createWatchedFileMatcher(watchPaths, process.cwd());
|
|
250
|
+
};
|
|
251
|
+
let isWatchedFile = applyWatchPaths(config);
|
|
204
252
|
/**
|
|
205
253
|
* Serialize watcher work onto one chain. The change handler closes and
|
|
206
254
|
* recreates the renderer across awaits; without serialization a second
|
|
@@ -249,6 +297,7 @@ function maizzleDevPlugin(config, renderer, events, configInput) {
|
|
|
249
297
|
customElements: config.vue?.customElements
|
|
250
298
|
});
|
|
251
299
|
setActiveRenderer(renderer);
|
|
300
|
+
isWatchedFile = applyWatchPaths(config);
|
|
252
301
|
/**
|
|
253
302
|
* Push UI-relevant config bits so the dev UI reacts to live edits
|
|
254
303
|
* without a page reload. Uses the same shape as the initial
|
|
@@ -379,7 +428,7 @@ function getRendered(absolutePath, config, renderer, events) {
|
|
|
379
428
|
html: rendered.html
|
|
380
429
|
});
|
|
381
430
|
const doctype = rendered.doctype ?? templateConfig.doctype ?? "<!DOCTYPE html>";
|
|
382
|
-
|
|
431
|
+
html = await runTransformers(html, templateConfig, absolutePath, doctype, rendered.tailwindBlocks, rendered.sourceFiles);
|
|
383
432
|
return {
|
|
384
433
|
rawHtml: await events.fireAfterTransform({
|
|
385
434
|
config: templateConfig,
|