-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathutils.ts
215 lines (197 loc) Β· 5.77 KB
/
utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import { onBeforeUnmount } from 'vue'
export type ExampleData = {
[key: string]: string | Record<string, string>
} & {
'import-map.json'?: string
_hint?: ExampleData
}
function indent(str: string): string {
return str
.split('\n')
.map((l) => (l.trim() ? ` ${l}` : l))
.join('\n')
}
function deindent(str: string, tabsize = 2): string {
return str
.split('\n')
.map((l) => l.replace(tabsize === 1 ? /^\s{2}/ : /^\s{4}/, ''))
.join('\n')
}
function toKebabTags(str: string): string {
return str
.replace(/(<\/?)([A-Z]\w+)(\s|>)/g, (_, open, tagName, end) => {
return (
open + tagName.replace(/\B([A-Z])/g, '-$1').toLowerCase() + end
)
})
.replace(/<([\w-]+)([^/]*?)\s?\/>/g, (_, tagName, attrs) => {
return `<${tagName}${attrs}></${tagName}>`
})
}
function toScriptSetup(src: string, template: string): string {
const exportDefaultIndex = src.indexOf('export default')
const lastReturnIndex = src.lastIndexOf('return {')
let setupCode =
lastReturnIndex > -1
? deindent(
src
.slice(exportDefaultIndex, lastReturnIndex)
.replace(/export default[^]+?setup\([^)]*\)\s*{/, '')
.trim()
)
: ''
const propsStartIndex = src.indexOf(`\n props:`)
if (propsStartIndex > -1) {
const propsEndIndex = src.indexOf(`\n }`, propsStartIndex) + 4
const propsVar =
/\bprops\b/.test(template) || /\bprops\b/.test(src)
? `const props = `
: ``
const propsDef = deindent(
src
.slice(propsStartIndex, propsEndIndex)
.trim()
.replace(/,$/, '')
.replace(/^props: /, `${propsVar}defineProps(`) + ')',
1
)
setupCode = (propsDef + '\n\n' + setupCode).trim()
}
const emitsStartIndex = src.indexOf(`\n emits:`)
if (emitsStartIndex > -1) {
const emitsEndIndex = src.indexOf(`]`, emitsStartIndex) + 1
const emitsDef =
src
.slice(emitsStartIndex, emitsEndIndex)
.trim()
.replace(/,$/, '')
.replace(/^emits: /, `const emit = defineEmits(`) + ')'
setupCode = (emitsDef + '\n\n' + setupCode).trim()
}
const res = src.slice(0, exportDefaultIndex) + setupCode
return (setupCode ? res : res.trim()) + '\n'
}
function forEachComponent(
raw: ExampleData,
files: Record<string, string>,
cb: (filename: string, file: Record<string, string>) => void
) {
for (const filename in raw) {
const content = raw[filename]
if (
filename === 'description.txt' ||
filename === 'description.md' ||
filename === '_hint'
) {
continue
} else if (typeof content === 'string') {
files[filename] = content
} else {
const {
'template.html': template,
'composition.js': composition,
'options.js': options,
'style.css': style
} = content
cb(filename, { template, composition, options, style })
}
}
}
function injectCreateApp(src: string): string {
const importVueRE = /import {(.*?)} from 'vue'/
if (importVueRE.test(src)) {
src = src.replace(importVueRE, `import { createApp,$1} from 'vue'`)
} else {
const newline = src.startsWith(`import`) ? `\n` : `\n\n`
src = `import { createApp } from 'vue'${newline}${src}`
}
return src.replace(
/export default ({[^]*\n})/,
"createApp($1).mount('#app')"
)
}
export function resolveSFCExample(
raw: ExampleData,
preferComposition: boolean
) {
const files: Record<string, string> = {}
forEachComponent(
raw,
files,
(filename, { template, composition, options, style }) => {
const desc = raw['description.txt'] as string
let sfcContent =
desc && filename === 'App' ? `<!--\n${desc.trim()}\n-->\n\n` : ``
if (preferComposition && composition) {
sfcContent += `<script setup>\n${toScriptSetup(
composition,
template
)}<\/script>\n\n`
}
if (!preferComposition && options) {
sfcContent += `<script>\n${options}<\/script>\n\n`
}
sfcContent += `<template>\n${indent(template)}</template>`
if (style) {
sfcContent += `\n\n<style>\n${style}</style>`
}
files[filename + '.vue'] = sfcContent
}
)
return files
}
export function resolveNoBuildExample(
raw: ExampleData,
preferComposition: boolean
) {
const files: Record<string, string> = {}
const desc = raw['description.txt'] as string
let html = desc ? `<!--\n${desc.trim()}\n-->\n\n` : ``
let css = ''
// set it first for ordering
files['index.html'] = html
forEachComponent(
raw,
files,
(filename, { template, composition, options, style }) => {
let js = (preferComposition ? composition : options) || ''
// rewrite imports to *.vue
js = js.replace(
/import (.*) from '(.*)\.vue'/g,
"import $1 from '$2.js'"
)
const _template = indent(toKebabTags(template).trim())
if (style) css += style
if (filename === 'App') {
if (js) {
html += `<script type="module">\n${injectCreateApp(
js
)}<\/script>\n\n`
}
html += `<div id="app">\n${_template}\n</div>`
} else {
// html += `\n\n<template id="${filename}">\n${_template}</template>`
if (js) {
js = js.replace(
/export default \{([^]*)\n\}/,
`export default {$1,\n template: \`\n${_template}\n \`\n}`
)
} else {
js = `export default {\n template: \`\n${_template}\n \`\n}`
}
files[filename + '.js'] = js
}
}
)
files['index.html'] = html
if (css) {
files['style.css'] = css
}
return files
}
export function onHashChange(cb: () => void) {
window.addEventListener('hashchange', cb)
onBeforeUnmount(() => {
window.removeEventListener('hashchange', cb)
})
}