fix: js 语法错误导致 dev 退出 (#149)

This commit is contained in:
qlin 2022-09-27 09:56:12 +08:00 committed by GitHub
parent c1ea990535
commit 04189feb2f
3 changed files with 65 additions and 52 deletions

View File

@ -112,10 +112,15 @@ export const genModels = (imports, absSrcPath) => {
const checkDuplicates = list => new Set(list).size !== list.length;
const raw = contents.map((ele, index) => {
const ast = parser.parse(ele.content, {
sourceType: 'module',
plugins: ['jsx', 'typescript']
});
let ast;
try {
ast = parser.parse(ele.content, {
sourceType: 'module',
plugins: ['jsx', 'typescript']
});
} catch (err) {
return null;
}
const use = [];
@ -136,7 +141,7 @@ export const genModels = (imports, absSrcPath) => {
});
return { namespace: ele.namespace, use, importName: `model${index}` };
});
}).filter(Boolean);
const models = sort(raw);
@ -149,45 +154,46 @@ export const genModels = (imports, absSrcPath) => {
};
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 identifierName = '';
traverse(ast, {
enter(p) {
if (p.isExportDefaultDeclaration()) {
const { type } = p.node.declaration;
try {
if (
type === 'ArrowFunctionExpression'
try {
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 identifierName = '';
traverse(ast, {
enter(p) {
if (p.isExportDefaultDeclaration()) {
const { type } = p.node.declaration;
try {
if (
type === 'ArrowFunctionExpression'
|| type === 'FunctionDeclaration'
) {
valid = true;
} else if (type === 'Identifier') {
identifierName = p.node.declaration.name;
) {
valid = true;
} else if (type === 'Identifier') {
identifierName = p.node.declaration.name;
}
} catch (e) {
console.error(e);
}
} catch (e) {
console.error(e);
}
}
}
});
});
try {
if (identifierName) {
ast.program.body.forEach((ele) => {
if (ele.type === 'FunctionDeclaration') {

View File

@ -105,11 +105,14 @@ function parseModel(paths = [], root) {
importModules.push(`import ${moduleName} from '${path}'`);
modules.push(moduleName);
const content = readFileSync(path).toString('utf-8');
let ast = parser.parse(content, {
sourceType: 'module',
plugins: ['jsx', 'typescript']
});
ast = ast.program.body.filter(body => body.type === 'ExportDefaultDeclaration')[0];
let ast;
try {
ast = parser.parse(content, {
sourceType: 'module',
plugins: ['jsx', 'typescript']
});
ast = ast.program.body.filter(body => body.type === 'ExportDefaultDeclaration')[0];
} catch (err) {}
if (ast) {
const { mutations, actions, getters } = getModelTypes(ast.declaration, moduleName);
MUTATION_TYPES = {

View File

@ -69,16 +69,20 @@ const getRoutePath = function (parentRoutePath, fileName, isFile = true) {
};
function getRouteMeta(content) {
const ast = parser.parse(content, {
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 argument = generator(defineRouteExpression.expression.arguments[0]);
return JSON.parse(argument.code.replace(/'/g, '"').replace(/(\S+):/g, (global, m1) => `"${m1}":`));
try {
const ast = parser.parse(content, {
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 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 = {};