mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 09:50:58 +08:00
a5dd21e94a
* docs: refactor config * docs(build): support dev without pre build * docs: disable sourcemap
87 lines
2.9 KiB
TypeScript
87 lines
2.9 KiB
TypeScript
import path from 'path'
|
|
import fs from 'fs'
|
|
import { parse } from '@vue/compiler-sfc'
|
|
import MarkdownIt from 'markdown-it'
|
|
import mdContainer from 'markdown-it-container'
|
|
import { highlight } from 'vitepress/dist/node/markdown/plugins/highlight'
|
|
import { docRoot } from '../utils/paths'
|
|
import type Token from 'markdown-it/lib/token'
|
|
import type Renderer from 'markdown-it/lib/renderer'
|
|
|
|
const localMd = MarkdownIt()
|
|
const scriptSetupRE = /<\s*script[^>]*\bsetup\b[^>]*/
|
|
|
|
interface ContainerOpts {
|
|
marker?: string | undefined
|
|
validate?(params: string): boolean
|
|
render?(
|
|
tokens: Token[],
|
|
index: number,
|
|
options: any,
|
|
env: any,
|
|
self: Renderer
|
|
): string
|
|
}
|
|
|
|
export const mdPlugin = (md: MarkdownIt) => {
|
|
md.use(mdContainer, 'demo', {
|
|
validate(params) {
|
|
return !!params.trim().match(/^demo\s*(.*)$/)
|
|
},
|
|
|
|
render(tokens, idx) {
|
|
const data = (md as any).__data
|
|
const hoistedTags: string[] = data.hoistedTags || (data.hoistedTags = [])
|
|
|
|
const m = tokens[idx].info.trim().match(/^demo\s*(.*)$/)
|
|
if (tokens[idx].nesting === 1 /* means the tag is opening */) {
|
|
const description = m && m.length > 1 ? m[1] : ''
|
|
const sourceFileToken = tokens[idx + 2]
|
|
let source = ''
|
|
const sourceFile = sourceFileToken.children?.[0].content ?? ''
|
|
|
|
if (sourceFileToken.type === 'inline') {
|
|
source = fs.readFileSync(
|
|
path.resolve(docRoot, 'examples', `${sourceFile}.vue`),
|
|
'utf-8'
|
|
)
|
|
const existingScriptIndex = hoistedTags.findIndex((tag) => {
|
|
return scriptSetupRE.test(tag)
|
|
})
|
|
if (existingScriptIndex === -1) {
|
|
hoistedTags.push(`
|
|
<script setup>
|
|
const demos = import.meta.globEager('../../examples/${
|
|
sourceFile.split('/')[0]
|
|
}/*.vue')
|
|
</script>`)
|
|
}
|
|
}
|
|
if (!source) throw new Error(`Incorrect source file: ${sourceFile}`)
|
|
|
|
const { html, js, css, cssPreProcessor, jsPreProcessor } =
|
|
generateCodePenSnippet(source)
|
|
return `<Demo :demos="demos" source="${encodeURIComponent(
|
|
highlight(source, 'vue')
|
|
)}" path="${sourceFile}" html="${html}" js="${js}" css="${css}" css-pre-processor="${cssPreProcessor}" js-pre-processor="${jsPreProcessor}" raw-source="${encodeURIComponent(
|
|
source
|
|
)}" description="${encodeURIComponent(localMd.render(description))}">`
|
|
} else {
|
|
return '</Demo>'
|
|
}
|
|
},
|
|
} as ContainerOpts)
|
|
}
|
|
|
|
function generateCodePenSnippet(source: string) {
|
|
const { template, script, styles } = parse(source).descriptor
|
|
const css = styles.pop()
|
|
return {
|
|
html: encodeURIComponent(template?.content ?? ''),
|
|
js: encodeURIComponent((script || { content: '' }).content),
|
|
css: encodeURIComponent(css?.content || ''),
|
|
cssPreProcessor: css?.lang || 'none',
|
|
jsPreProcessor: script?.lang || 'none',
|
|
}
|
|
}
|