From 5f305e53ae8e23fc2fb385184986460f32636d89 Mon Sep 17 00:00:00 2001 From: qlin Date: Wed, 17 Jul 2024 10:18:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20vuex=20=E6=8F=92?= =?UTF-8?q?=E4=BB=B6=E6=B2=A1=E6=9C=89=20store=20=E7=9B=AE=E5=BD=95?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98=20(#245)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-vuex/src/helper.js | 30 +++++++++++++++----------- 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/packages/fes-plugin-vuex/src/helper.js b/packages/fes-plugin-vuex/src/helper.js index 5b60915b..6b28e1f4 100644 --- a/packages/fes-plugin-vuex/src/helper.js +++ b/packages/fes-plugin-vuex/src/helper.js @@ -1,12 +1,15 @@ +import { existsSync, readFileSync, readdirSync, statSync } from 'node:fs'; +import { join } from 'node:path'; import { parser, winPath } from '@fesjs/utils'; -import { readdirSync, readFileSync, statSync } from 'fs'; -import { join } from 'path'; /** * 获取文件夹所有JS文件路径 * @param {string} dir */ function getDirFilePaths(dir) { + if (!existsSync(dir)) { + return []; + } const dirs = readdirSync(dir); let pathList = []; for (const name of dirs) { @@ -14,7 +17,8 @@ function getDirFilePaths(dir) { const info = statSync(path); if (info.isDirectory()) { pathList = pathList.concat(getDirFilePaths(path)); - } else if (path.endsWith('.js')) { + } + else if (path.endsWith('.js')) { pathList.push(path); } } @@ -29,8 +33,8 @@ function pathToHump(path, root) { return path .replace(root, '') .replace('.js', '') - .replace(RegExp('(/|\\.|-|_)\\S', 'g'), (text) => text[1].toUpperCase()) - .replace(/\S/, (text) => text.toLowerCase()); + .replace(RegExp('(/|\\.|-|_)\\S', 'g'), text => text[1].toUpperCase()) + .replace(/\S/, text => text.toLowerCase()); } /** @@ -45,7 +49,7 @@ function getModelTypes(ast, name, namespace = '') { getters: {}, }; let namespaced = false; - if (ast.type !== 'ObjectExpression') return types; + if (ast.type !== 'ObjectExpression') { return types; } ast.properties.forEach((node) => { if (node.key.name === 'namespaced' && node.value.value) { namespaced = true; @@ -56,7 +60,6 @@ function getModelTypes(ast, name, namespace = '') { if (namespaced) { type = types[node.key.name][name]; if (!type) { - // eslint-disable-next-line no-multi-assign type = types[node.key.name][name] = {}; } } @@ -77,7 +80,8 @@ function getModelTypes(ast, name, namespace = '') { ...subTypes[key], ...types[key][name], }; - } else { + } + else { types[key] = { ...subTypes[key], ...types[key], @@ -112,8 +116,9 @@ function parseModel(paths = [], root) { sourceType: 'module', plugins: ['jsx', 'typescript'], }); - ast = ast.program.body.filter((body) => body.type === 'ExportDefaultDeclaration')[0]; - } catch (err) { } + ast = ast.program.body.filter(body => body.type === 'ExportDefaultDeclaration')[0]; + } + catch (err) { } if (ast) { const { mutations, actions, getters } = getModelTypes(ast.declaration, moduleName); MUTATION_TYPES = { @@ -155,9 +160,10 @@ export function parseStore(root) { const modelPaths = []; const pluginPaths = []; paths.forEach((path) => { - if (path.indexOf('plugin') > -1) { + if (path.includes('plugin')) { pluginPaths.push(path); - } else { + } + else { modelPaths.push(path); } });