Skip to content

Commit 333e22d

Browse files
committed
chore: 考虑plugin-vue:export-helper
1 parent 60bcea4 commit 333e22d

File tree

2 files changed

+76
-33
lines changed

2 files changed

+76
-33
lines changed

packages/uni-cli-shared/__tests__/usingComponents.spec.ts

+48-22
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,10 @@ export function createApp() {
301301
`const _easycom_test = ()=>import('${inputDir}/components/test/test.vue')`
302302
)
303303
})
304-
test(`recursion`, async () => {
305-
await testLocal(
306-
`
304+
describe(`recursion`, () => {
305+
test('base', async () => {
306+
await testLocal(
307+
`
307308
const _sfc_main = {
308309
};
309310
const __BINDING_COMPONENTS__ = '{"index":{"name":"_component_index","type":"unknown"}}';
@@ -314,14 +315,16 @@ export function createApp() {
314315
import _export_sfc from "plugin-vue:export-helper";
315316
export default /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
316317
`,
317-
{
318-
index: '/pages/index/index',
319-
},
320-
``
321-
)
318+
{
319+
index: '/pages/index/index',
320+
},
321+
``
322+
)
323+
})
322324

323-
await testLocal(
324-
`import { defineComponent as _defineComponent } from "vue";
325+
test('use defineComponent', async () => {
326+
await testLocal(
327+
`import { defineComponent as _defineComponent } from "vue";
325328
const __BINDING_COMPONENTS__ = '{"test":{"name":"test","type":"unknown"}}';
326329
327330
export default /* @__PURE__ */ _defineComponent({
@@ -334,14 +337,16 @@ export function createApp() {
334337
});
335338
import "${inputDir}/pages/index/index.vue?vue&type=style&index=0&lang.css";
336339
`,
337-
{
338-
test: '/pages/index/index',
339-
},
340-
``
341-
)
340+
{
341+
test: '/pages/index/index',
342+
},
343+
``
344+
)
345+
})
342346

343-
await testLocal(
344-
`import { defineComponent as _defineComponent } from "vue";
347+
test('export variable', async () => {
348+
await testLocal(
349+
`import { defineComponent as _defineComponent } from "vue";
345350
const __BINDING_COMPONENTS__ = '{"test":{"name":"test","type":"unknown"}}';
346351
const component = _defineComponent({
347352
__name: "test",
@@ -356,11 +361,32 @@ export function createApp() {
356361
357362
import "${inputDir}/pages/index/index.vue?vue&type=style&index=0&lang.css";
358363
`,
359-
{
360-
test: '/pages/index/index',
361-
},
362-
``
363-
)
364+
{
365+
test: '/pages/index/index',
366+
},
367+
``
368+
)
369+
})
370+
test('use plugin-vue:export-helper', async () => {
371+
await testLocal(
372+
`
373+
const _sfc_main = {
374+
__name: 'Test'
375+
};
376+
const __BINDING_COMPONENTS__ = '{"test":{"name":"_component_test","type":"unknown"}}';
377+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
378+
return {};
379+
}
380+
import "${filename}?vue&type=style&index=0&lang.css";
381+
import _export_sfc from "plugin-vue:export-helper";
382+
export default /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
383+
`,
384+
{
385+
test: '/pages/index/index',
386+
},
387+
``
388+
)
389+
})
364390
})
365391
})
366392
})

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

+28-11
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ import {
88
type Statement,
99
type StringLiteral,
1010
assertExportDefaultDeclaration,
11-
assertIdentifier,
1211
isBlockStatement,
1312
isCallExpression,
1413
isExportDefaultDeclaration,
14+
isExpression,
1515
isIdentifier,
1616
isIfStatement,
1717
isImportDeclaration,
18+
isImportDefaultSpecifier,
1819
isImportSpecifier,
1920
isMemberExpression,
2021
isObjectExpression,
@@ -211,14 +212,13 @@ function parseVueComponentName(filename: string) {
211212

212213
if (!exportDefaultDecliaration) return name
213214

214-
// 获取vue的defineComponent导入变量名
215+
// 获取vue的defineComponent导入变量名和plugin-vue:export-helper默认导入的本地变量名
215216
let defineComponentLocalName: string | null = null
217+
let exportHelperLocalName: string | null = null
216218

217219
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' })) {
222222
const importSpecifer = node.specifiers.find(
223223
(specifer) =>
224224
isImportSpecifier(specifer) &&
@@ -227,20 +227,37 @@ function parseVueComponentName(filename: string) {
227227
if (isImportSpecifier(importSpecifer)) {
228228
defineComponentLocalName = importSpecifer.local.name
229229
}
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+
}
230239
}
231240
}
232241

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+
233253
// 获取组件定义对象
234254
let defineComponentDeclaration: ObjectExpression | null = null
235255

236-
let { declaration } = exportDefaultDecliaration
237-
238-
// 如果默认导出了变量则尝试查找该变量
256+
// 如果declaration是变量则尝试查找该变量
239257
if (isIdentifier(declaration)) {
240258
const { name } = declaration
241259
for (const node of ast.body) {
242260
if (isVariableDeclaration(node)) {
243-
assertIdentifier(declaration)
244261
const declarator = node.declarations.find((declarator) =>
245262
isIdentifier(declarator.id, { name })
246263
)
@@ -274,7 +291,7 @@ function parseVueComponentName(filename: string) {
274291
/(__)?name/.test(prop.key.name) &&
275292
isStringLiteral(prop.value)
276293
) {
277-
return prop.value.value
294+
return prop.value.value || name
278295
}
279296
}
280297
return name

0 commit comments

Comments
 (0)