1
1
import {
2
- type ExportDefaultDeclaration ,
3
2
type IfStatement ,
4
3
type ImportDeclaration ,
5
4
type Node ,
@@ -8,8 +7,10 @@ import {
8
7
type Program ,
9
8
type Statement ,
10
9
type StringLiteral ,
10
+ assertExportDefaultDeclaration ,
11
11
isBlockStatement ,
12
12
isCallExpression ,
13
+ isExportDefaultDeclaration ,
13
14
isIdentifier ,
14
15
isIfStatement ,
15
16
isImportDeclaration ,
@@ -201,35 +202,35 @@ function parseVueComponentName(filename: string) {
201
202
202
203
const exportDefaultDecliaration = scriptDescriptors
203
204
. get ( filename )
204
- ?. ast . body . find (
205
- ( v ) => v . type === 'ExportDefaultDeclaration'
206
- ) as ExportDefaultDeclaration | null
205
+ ?. ast . body . find ( ( node ) => isExportDefaultDeclaration ( node ) )
206
+
207
+ assertExportDefaultDeclaration ( exportDefaultDecliaration )
207
208
208
209
if ( ! exportDefaultDecliaration ) return name
209
210
210
211
let defineComponentDeclaration : ObjectExpression | null = null
211
212
212
213
const { declaration } = exportDefaultDecliaration
213
214
214
- if ( declaration . type === 'ObjectExpression' ) {
215
+ if ( isObjectExpression ( declaration ) ) {
215
216
defineComponentDeclaration = declaration
216
217
} else if (
217
- declaration . type === 'CallExpression' &&
218
- declaration . callee . type === 'Identifier' &&
219
- / _ * d e f i n e C o m p o n e n t / . test ( declaration . callee . name )
218
+ isCallExpression ( declaration ) &&
219
+ isIdentifier ( declaration . callee ) &&
220
+ / _ * d e f i n e C o m p o n e n t / . test ( declaration . callee . name ) &&
221
+ isObjectExpression ( declaration . arguments [ 0 ] )
220
222
) {
221
- defineComponentDeclaration =
222
- ( declaration . arguments [ 0 ] as ObjectExpression | undefined ) || null
223
+ defineComponentDeclaration = declaration . arguments [ 0 ]
223
224
}
224
225
225
226
if ( ! defineComponentDeclaration ) return name
226
227
227
228
for ( const prop of defineComponentDeclaration . properties ) {
228
229
if (
229
- prop . type === 'ObjectProperty' &&
230
- prop . key . type === 'Identifier' &&
230
+ isObjectProperty ( prop ) &&
231
+ isIdentifier ( prop . key ) &&
231
232
/ ( _ _ ) ? n a m e / . test ( prop . key . name ) &&
232
- prop . value . type === 'StringLiteral'
233
+ isStringLiteral ( prop . value )
233
234
) {
234
235
return prop . value . value
235
236
}
0 commit comments