mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +00:00
33 lines
1020 B
TypeScript
33 lines
1020 B
TypeScript
import { resolve, join } from 'path'
|
|
import { promises as fsp } from 'fs'
|
|
import type { Plugin } from 'vite'
|
|
import template from 'lodash.template'
|
|
import genericMessages from '../templates/messages.json'
|
|
|
|
const r = (...path: string[]) => resolve(join(__dirname, '..', ...path))
|
|
|
|
export const DevRenderingPlugin = () => {
|
|
return <Plugin>{
|
|
name: 'dev-rendering',
|
|
async transformIndexHtml (html: string, context) {
|
|
const page = context.originalUrl || '/'
|
|
|
|
if (page === '/') {
|
|
const templateNames = await fsp.readdir(r('templates'))
|
|
const serializedData = JSON.stringify({ templateNames })
|
|
return html.replace('{{ data }}', serializedData)
|
|
}
|
|
|
|
const contents = await fsp.readFile(r(page, 'index.html'), 'utf-8')
|
|
|
|
const messages = JSON.parse(await fsp.readFile(r(page, 'messages.json'), 'utf-8'))
|
|
|
|
return template(contents, {
|
|
interpolate: /{{{?([\s\S]+?)}?}}/g
|
|
})({
|
|
messages: { ...genericMessages, ...messages }
|
|
})
|
|
}
|
|
}
|
|
}
|