mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: js 语法错误导致 dev 退出 (#149)
This commit is contained in:
parent
c1ea990535
commit
04189feb2f
@ -112,10 +112,15 @@ export const genModels = (imports, absSrcPath) => {
|
|||||||
const checkDuplicates = list => new Set(list).size !== list.length;
|
const checkDuplicates = list => new Set(list).size !== list.length;
|
||||||
|
|
||||||
const raw = contents.map((ele, index) => {
|
const raw = contents.map((ele, index) => {
|
||||||
const ast = parser.parse(ele.content, {
|
let ast;
|
||||||
sourceType: 'module',
|
try {
|
||||||
plugins: ['jsx', 'typescript']
|
ast = parser.parse(ele.content, {
|
||||||
});
|
sourceType: 'module',
|
||||||
|
plugins: ['jsx', 'typescript']
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
const use = [];
|
const use = [];
|
||||||
|
|
||||||
@ -136,7 +141,7 @@ export const genModels = (imports, absSrcPath) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
return { namespace: ele.namespace, use, importName: `model${index}` };
|
return { namespace: ele.namespace, use, importName: `model${index}` };
|
||||||
});
|
}).filter(Boolean);
|
||||||
|
|
||||||
const models = sort(raw);
|
const models = sort(raw);
|
||||||
|
|
||||||
@ -149,45 +154,46 @@ export const genModels = (imports, absSrcPath) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const isValidHook = (filePath) => {
|
export const isValidHook = (filePath) => {
|
||||||
const content = readFileSync(filePath, { encoding: 'utf-8' }).toString();
|
|
||||||
|
|
||||||
const ast = parser.parse(content, {
|
|
||||||
sourceType: 'module',
|
|
||||||
plugins: [
|
|
||||||
'classProperties',
|
|
||||||
'dynamicImport',
|
|
||||||
'exportDefaultFrom',
|
|
||||||
'exportNamespaceFrom',
|
|
||||||
'functionBind',
|
|
||||||
'nullishCoalescingOperator',
|
|
||||||
'objectRestSpread',
|
|
||||||
'optionalChaining',
|
|
||||||
'decorators-legacy'
|
|
||||||
].filter(Boolean)
|
|
||||||
});
|
|
||||||
let valid = false;
|
let valid = false;
|
||||||
let identifierName = '';
|
try {
|
||||||
traverse(ast, {
|
const content = readFileSync(filePath, { encoding: 'utf-8' }).toString();
|
||||||
enter(p) {
|
|
||||||
if (p.isExportDefaultDeclaration()) {
|
const ast = parser.parse(content, {
|
||||||
const { type } = p.node.declaration;
|
sourceType: 'module',
|
||||||
try {
|
plugins: [
|
||||||
if (
|
'classProperties',
|
||||||
type === 'ArrowFunctionExpression'
|
'dynamicImport',
|
||||||
|
'exportDefaultFrom',
|
||||||
|
'exportNamespaceFrom',
|
||||||
|
'functionBind',
|
||||||
|
'nullishCoalescingOperator',
|
||||||
|
'objectRestSpread',
|
||||||
|
'optionalChaining',
|
||||||
|
'decorators-legacy'
|
||||||
|
].filter(Boolean)
|
||||||
|
});
|
||||||
|
|
||||||
|
let identifierName = '';
|
||||||
|
traverse(ast, {
|
||||||
|
enter(p) {
|
||||||
|
if (p.isExportDefaultDeclaration()) {
|
||||||
|
const { type } = p.node.declaration;
|
||||||
|
try {
|
||||||
|
if (
|
||||||
|
type === 'ArrowFunctionExpression'
|
||||||
|| type === 'FunctionDeclaration'
|
|| type === 'FunctionDeclaration'
|
||||||
) {
|
) {
|
||||||
valid = true;
|
valid = true;
|
||||||
} else if (type === 'Identifier') {
|
} else if (type === 'Identifier') {
|
||||||
identifierName = p.node.declaration.name;
|
identifierName = p.node.declaration.name;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
}
|
}
|
||||||
} catch (e) {
|
|
||||||
console.error(e);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
});
|
|
||||||
|
|
||||||
try {
|
|
||||||
if (identifierName) {
|
if (identifierName) {
|
||||||
ast.program.body.forEach((ele) => {
|
ast.program.body.forEach((ele) => {
|
||||||
if (ele.type === 'FunctionDeclaration') {
|
if (ele.type === 'FunctionDeclaration') {
|
||||||
|
@ -105,11 +105,14 @@ function parseModel(paths = [], root) {
|
|||||||
importModules.push(`import ${moduleName} from '${path}'`);
|
importModules.push(`import ${moduleName} from '${path}'`);
|
||||||
modules.push(moduleName);
|
modules.push(moduleName);
|
||||||
const content = readFileSync(path).toString('utf-8');
|
const content = readFileSync(path).toString('utf-8');
|
||||||
let ast = parser.parse(content, {
|
let ast;
|
||||||
sourceType: 'module',
|
try {
|
||||||
plugins: ['jsx', 'typescript']
|
ast = parser.parse(content, {
|
||||||
});
|
sourceType: 'module',
|
||||||
ast = ast.program.body.filter(body => body.type === 'ExportDefaultDeclaration')[0];
|
plugins: ['jsx', 'typescript']
|
||||||
|
});
|
||||||
|
ast = ast.program.body.filter(body => body.type === 'ExportDefaultDeclaration')[0];
|
||||||
|
} 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 = {
|
||||||
|
@ -69,16 +69,20 @@ const getRoutePath = function (parentRoutePath, fileName, isFile = true) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
function getRouteMeta(content) {
|
function getRouteMeta(content) {
|
||||||
const ast = parser.parse(content, {
|
try {
|
||||||
sourceType: 'module',
|
const ast = parser.parse(content, {
|
||||||
plugins: ['jsx', 'typescript']
|
sourceType: 'module',
|
||||||
});
|
plugins: ['jsx', 'typescript']
|
||||||
const defineRouteExpression = ast.program.body.filter(expression => expression.type === 'ExpressionStatement' && expression.expression.type === 'CallExpression' && expression.expression.callee.name === 'defineRouteMeta')[0];
|
});
|
||||||
if (defineRouteExpression) {
|
const defineRouteExpression = ast.program.body.filter(expression => expression.type === 'ExpressionStatement' && expression.expression.type === 'CallExpression' && expression.expression.callee.name === 'defineRouteMeta')[0];
|
||||||
const argument = generator(defineRouteExpression.expression.arguments[0]);
|
if (defineRouteExpression) {
|
||||||
return JSON.parse(argument.code.replace(/'/g, '"').replace(/(\S+):/g, (global, m1) => `"${m1}":`));
|
const argument = generator(defineRouteExpression.expression.arguments[0]);
|
||||||
|
return JSON.parse(argument.code.replace(/'/g, '"').replace(/(\S+):/g, (global, m1) => `"${m1}":`));
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
} catch (error) {
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let cacheGenRoutes = {};
|
let cacheGenRoutes = {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user