@@ -8,13 +8,14 @@ import {
8
8
type Statement ,
9
9
type StringLiteral ,
10
10
assertExportDefaultDeclaration ,
11
- assertIdentifier ,
12
11
isBlockStatement ,
13
12
isCallExpression ,
14
13
isExportDefaultDeclaration ,
14
+ isExpression ,
15
15
isIdentifier ,
16
16
isIfStatement ,
17
17
isImportDeclaration ,
18
+ isImportDefaultSpecifier ,
18
19
isImportSpecifier ,
19
20
isMemberExpression ,
20
21
isObjectExpression ,
@@ -211,14 +212,13 @@ function parseVueComponentName(filename: string) {
211
212
212
213
if ( ! exportDefaultDecliaration ) return name
213
214
214
- // 获取vue的defineComponent导入变量名
215
+ // 获取vue的defineComponent导入变量名和plugin-vue:export-helper默认导入的本地变量名
215
216
let defineComponentLocalName : string | null = null
217
+ let exportHelperLocalName : string | null = null
216
218
217
219
for ( const node of ast . body ) {
218
- if (
219
- isImportDeclaration ( node ) &&
220
- isStringLiteral ( node . source , { value : 'vue' } )
221
- ) {
220
+ if ( ! isImportDeclaration ( node ) ) continue
221
+ if ( isStringLiteral ( node . source , { value : 'vue' } ) ) {
222
222
const importSpecifer = node . specifiers . find (
223
223
( specifer ) =>
224
224
isImportSpecifier ( specifer ) &&
@@ -227,20 +227,37 @@ function parseVueComponentName(filename: string) {
227
227
if ( isImportSpecifier ( importSpecifer ) ) {
228
228
defineComponentLocalName = importSpecifer . local . name
229
229
}
230
+ } else if (
231
+ isStringLiteral ( node . source , { value : 'plugin-vue:export-helper' } )
232
+ ) {
233
+ const importSpecifer = node . specifiers . find ( ( specifer ) =>
234
+ isImportDefaultSpecifier ( specifer )
235
+ )
236
+ if ( isImportDefaultSpecifier ( importSpecifer ) ) {
237
+ exportHelperLocalName = importSpecifer . local . name
238
+ }
230
239
}
231
240
}
232
241
242
+ let { declaration } = exportDefaultDecliaration
243
+ // 如果默认导出调用plugin-vue:export-helper默认导入的方法则取方法的第一个参数
244
+ if (
245
+ exportHelperLocalName &&
246
+ isCallExpression ( declaration ) &&
247
+ isIdentifier ( declaration . callee , { name : exportHelperLocalName } ) &&
248
+ isExpression ( declaration . arguments [ 0 ] )
249
+ ) {
250
+ declaration = declaration . arguments [ 0 ]
251
+ }
252
+
233
253
// 获取组件定义对象
234
254
let defineComponentDeclaration : ObjectExpression | null = null
235
255
236
- let { declaration } = exportDefaultDecliaration
237
-
238
- // 如果默认导出了变量则尝试查找该变量
256
+ // 如果declaration是变量则尝试查找该变量
239
257
if ( isIdentifier ( declaration ) ) {
240
258
const { name } = declaration
241
259
for ( const node of ast . body ) {
242
260
if ( isVariableDeclaration ( node ) ) {
243
- assertIdentifier ( declaration )
244
261
const declarator = node . declarations . find ( ( declarator ) =>
245
262
isIdentifier ( declarator . id , { name } )
246
263
)
@@ -274,7 +291,7 @@ function parseVueComponentName(filename: string) {
274
291
/ ( _ _ ) ? n a m e / . test ( prop . key . name ) &&
275
292
isStringLiteral ( prop . value )
276
293
) {
277
- return prop . value . value
294
+ return prop . value . value || name
278
295
}
279
296
}
280
297
return name
0 commit comments