fix: 修复 vuex 插件没有 store 目录报错问题 (#245)

This commit is contained in:
qlin 2024-07-17 10:18:08 +08:00 committed by GitHub
parent 53830bca5f
commit 8b7a41fbb4

View File

@ -1,12 +1,15 @@
import { existsSync, readFileSync, readdirSync, statSync } from 'node:fs';
import { join } from 'node:path';
import { parser, winPath } from '@fesjs/utils'; import { parser, winPath } from '@fesjs/utils';
import { readdirSync, readFileSync, statSync } from 'fs';
import { join } from 'path';
/** /**
* 获取文件夹所有JS文件路径 * 获取文件夹所有JS文件路径
* @param {string} dir * @param {string} dir
*/ */
function getDirFilePaths(dir) { function getDirFilePaths(dir) {
if (!existsSync(dir)) {
return [];
}
const dirs = readdirSync(dir); const dirs = readdirSync(dir);
let pathList = []; let pathList = [];
for (const name of dirs) { for (const name of dirs) {
@ -14,7 +17,8 @@ function getDirFilePaths(dir) {
const info = statSync(path); const info = statSync(path);
if (info.isDirectory()) { if (info.isDirectory()) {
pathList = pathList.concat(getDirFilePaths(path)); pathList = pathList.concat(getDirFilePaths(path));
} else if (path.endsWith('.js')) { }
else if (path.endsWith('.js')) {
pathList.push(path); pathList.push(path);
} }
} }
@ -29,8 +33,8 @@ function pathToHump(path, root) {
return path return path
.replace(root, '') .replace(root, '')
.replace('.js', '') .replace('.js', '')
.replace(RegExp('(/|\\.|-|_)\\S', 'g'), (text) => text[1].toUpperCase()) .replace(RegExp('(/|\\.|-|_)\\S', 'g'), text => text[1].toUpperCase())
.replace(/\S/, (text) => text.toLowerCase()); .replace(/\S/, text => text.toLowerCase());
} }
/** /**
@ -45,7 +49,7 @@ function getModelTypes(ast, name, namespace = '') {
getters: {}, getters: {},
}; };
let namespaced = false; let namespaced = false;
if (ast.type !== 'ObjectExpression') return types; if (ast.type !== 'ObjectExpression') { return types; }
ast.properties.forEach((node) => { ast.properties.forEach((node) => {
if (node.key.name === 'namespaced' && node.value.value) { if (node.key.name === 'namespaced' && node.value.value) {
namespaced = true; namespaced = true;
@ -56,7 +60,6 @@ function getModelTypes(ast, name, namespace = '') {
if (namespaced) { if (namespaced) {
type = types[node.key.name][name]; type = types[node.key.name][name];
if (!type) { if (!type) {
// eslint-disable-next-line no-multi-assign
type = types[node.key.name][name] = {}; type = types[node.key.name][name] = {};
} }
} }
@ -77,7 +80,8 @@ function getModelTypes(ast, name, namespace = '') {
...subTypes[key], ...subTypes[key],
...types[key][name], ...types[key][name],
}; };
} else { }
else {
types[key] = { types[key] = {
...subTypes[key], ...subTypes[key],
...types[key], ...types[key],
@ -112,8 +116,9 @@ function parseModel(paths = [], root) {
sourceType: 'module', sourceType: 'module',
plugins: ['jsx', 'typescript'], plugins: ['jsx', 'typescript'],
}); });
ast = ast.program.body.filter((body) => body.type === 'ExportDefaultDeclaration')[0]; ast = ast.program.body.filter(body => body.type === 'ExportDefaultDeclaration')[0];
} catch (err) { } }
catch (err) { }
if (ast) { if (ast) {
const { mutations, actions, getters } = getModelTypes(ast.declaration, moduleName); const { mutations, actions, getters } = getModelTypes(ast.declaration, moduleName);
MUTATION_TYPES = { MUTATION_TYPES = {
@ -155,9 +160,10 @@ export function parseStore(root) {
const modelPaths = []; const modelPaths = [];
const pluginPaths = []; const pluginPaths = [];
paths.forEach((path) => { paths.forEach((path) => {
if (path.indexOf('plugin') > -1) { if (path.includes('plugin')) {
pluginPaths.push(path); pluginPaths.push(path);
} else { }
else {
modelPaths.push(path); modelPaths.push(path);
} }
}); });