forked from posva/unplugin-vue-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerateRouteRecords.ts
179 lines (165 loc) · 4.77 KB
/
generateRouteRecords.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
import { getLang } from '@vue-macros/common'
import type { TreeNode } from '../core/tree'
import { ImportsMap } from '../core/utils'
import { type ResolvedOptions } from '../options'
/**
* Generate the route records for the given node.
*
* @param node - the node to generate the route record for
* @param options - the options to use
* @param importsMap - the imports map to fill and use
* @param indent - the indent level
* @returns the code of the routes as a string
*/
export function generateRouteRecord(
node: TreeNode,
options: ResolvedOptions,
importsMap: ImportsMap,
indent = 0
): string {
if (node.isRoot()) {
return `[
${node
.getSortedChildren()
.map((child) => generateRouteRecord(child, options, importsMap, indent + 1))
.join(',\n')}
]`
}
const definePageDataList: string[] = []
if (node.hasDefinePage) {
for (const [name, filePath] of node.value.components) {
const pageDataImport = `_definePage_${name}_${importsMap.size}`
definePageDataList.push(pageDataImport)
const lang = getLang(filePath)
importsMap.addDefault(
// TODO: apply the language used in the sfc
`${filePath}?definePage&` +
(lang === 'vue' ? 'vue&lang.tsx' : `lang.${lang}`),
pageDataImport
)
}
// extra indent to add `_mergeRouteRecord()`
if (definePageDataList.length > 0) {
indent++
}
}
const startIndent = ' '.repeat(indent * 2)
const indentStr = ' '.repeat((indent + 1) * 2)
// TODO: should meta be defined a different way to allow preserving imports?
// const meta = node.value.overrides.meta
// compute once since it's a getter
const overrides = node.value.overrides
// path
const routeRecord = `${startIndent}{
${indentStr}path: '${node.path}',
${indentStr}${
node.value.components.size
? `name: '${node.name}',`
: `/* internal name: '${node.name}' */`
}
${
// component
indentStr
}${
node.value.components.size
? generateRouteRecordComponent(
node,
indentStr,
options.importMode,
importsMap
)
: '/* no component */'
}
${overrides.props != null ? indentStr + `props: ${overrides.props},\n` : ''}${
overrides.alias != null
? indentStr + `alias: ${JSON.stringify(overrides.alias)},\n`
: ''
}${
// children
indentStr
}${
node.children.size > 0
? `children: [
${node
.getSortedChildren()
.map((child) => generateRouteRecord(child, options, importsMap, indent + 2))
.join(',\n')}
${indentStr}],`
: '/* no children */'
}${formatMeta(node, indentStr)}
${startIndent}}`
if (definePageDataList.length > 0) {
// remove one tab
const mergeCallIndent = startIndent.slice(2)
importsMap.add('unplugin-vue-router/runtime', '_mergeRouteRecord')
return `${mergeCallIndent}_mergeRouteRecord(
${routeRecord},
${definePageDataList.map((s) => startIndent + s).join(',\n')}
${mergeCallIndent})`
}
return routeRecord
}
function generateRouteRecordComponent(
node: TreeNode,
indentStr: string,
importMode: ResolvedOptions['importMode'],
importsMap: ImportsMap
): string {
const files = Array.from(node.value.components)
const isDefaultExport = files.length === 1 && files[0]![0] === 'default'
return isDefaultExport
? `component: ${generatePageImport(files[0]![1], importMode, importsMap)},`
: // files has at least one entry
`components: {
${files
.map(
([key, path]) =>
`${indentStr + ' '}'${key}': ${generatePageImport(
path,
importMode,
importsMap
)}`
)
.join(',\n')}
${indentStr}},`
}
/**
* Generate the import (dynamic or static) for the given filepath. If the filepath is a static import, add it to the importsMap.
*
* @param filepath - the filepath to the file
* @param importMode - the import mode to use
* @param importsMap - the import list to fill
* @returns
*/
function generatePageImport(
filepath: string,
importMode: ResolvedOptions['importMode'],
importsMap: ImportsMap
) {
const mode =
typeof importMode === 'function' ? importMode(filepath) : importMode
if (mode === 'async') {
return `() => import('${filepath}')`
}
// mode === 'sync'
// return the name of the import e.g. `_page_0` for `import _page_0 from '...'`
const existingEntry = importsMap
.getImportList(filepath)
.find((entry) => entry.name === 'default')
if (existingEntry) {
return existingEntry.as
}
const importName = `_page_${importsMap.size}`
importsMap.addDefault(filepath, importName)
return importName
}
function formatMeta(node: TreeNode, indent: string): string {
const meta = node.meta
const formatted =
meta &&
meta
.split('\n')
.map((line) => indent + line)
.join('\n')
return formatted ? '\n' + indent + 'meta: ' + formatted.trimStart() : ''
}