Skip to content

Commit 6bb5020

Browse files
committed
chore: update
1 parent 09440a2 commit 6bb5020

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

packages/uni-cli-shared/src/mp/usingComponents.ts

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import {
2-
type ExportDefaultDeclaration,
32
type IfStatement,
43
type ImportDeclaration,
54
type Node,
@@ -8,8 +7,10 @@ import {
87
type Program,
98
type Statement,
109
type StringLiteral,
10+
assertExportDefaultDeclaration,
1111
isBlockStatement,
1212
isCallExpression,
13+
isExportDefaultDeclaration,
1314
isIdentifier,
1415
isIfStatement,
1516
isImportDeclaration,
@@ -201,35 +202,35 @@ function parseVueComponentName(filename: string) {
201202

202203
const exportDefaultDecliaration = scriptDescriptors
203204
.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)
207208

208209
if (!exportDefaultDecliaration) return name
209210

210211
let defineComponentDeclaration: ObjectExpression | null = null
211212

212213
const { declaration } = exportDefaultDecliaration
213214

214-
if (declaration.type === 'ObjectExpression') {
215+
if (isObjectExpression(declaration)) {
215216
defineComponentDeclaration = declaration
216217
} else if (
217-
declaration.type === 'CallExpression' &&
218-
declaration.callee.type === 'Identifier' &&
219-
/_*defineComponent/.test(declaration.callee.name)
218+
isCallExpression(declaration) &&
219+
isIdentifier(declaration.callee) &&
220+
/_*defineComponent/.test(declaration.callee.name) &&
221+
isObjectExpression(declaration.arguments[0])
220222
) {
221-
defineComponentDeclaration =
222-
(declaration.arguments[0] as ObjectExpression | undefined) || null
223+
defineComponentDeclaration = declaration.arguments[0]
223224
}
224225

225226
if (!defineComponentDeclaration) return name
226227

227228
for (const prop of defineComponentDeclaration.properties) {
228229
if (
229-
prop.type === 'ObjectProperty' &&
230-
prop.key.type === 'Identifier' &&
230+
isObjectProperty(prop) &&
231+
isIdentifier(prop.key) &&
231232
/(__)?name/.test(prop.key.name) &&
232-
prop.value.type === 'StringLiteral'
233+
isStringLiteral(prop.value)
233234
) {
234235
return prop.value.value
235236
}

0 commit comments

Comments
 (0)