Merge pull request #83 from WeBankFinTech/router-jsx

feat: 路由生成支持 .jsx 后缀
This commit is contained in:
harrywan 2021-12-15 19:44:34 +08:00 committed by GitHub
commit 305a0faf4d
4 changed files with 30 additions and 1 deletions

View File

@ -4,8 +4,11 @@ import {
} from 'path'; } from 'path';
import { lodash } from '@fesjs/utils'; import { lodash } from '@fesjs/utils';
import { parse } from '@vue/compiler-sfc'; import { parse } from '@vue/compiler-sfc';
import { Logger } from '@fesjs/compiler';
import { runtimePath } from '../../../utils/constants'; import { runtimePath } from '../../../utils/constants';
const logger = new Logger('fes:router');
// pages // pages
// ├── index.vue # 根路由页面 路径 / // ├── index.vue # 根路由页面 路径 /
// ├── *.vue # 模糊匹配 路径 * // ├── *.vue # 模糊匹配 路径 *
@ -18,7 +21,7 @@ import { runtimePath } from '../../../utils/constants';
const isProcessFile = function (path) { const isProcessFile = function (path) {
const ext = extname(path); const ext = extname(path);
return statSync(path).isFile() && ['.vue'].includes(ext); return statSync(path).isFile() && ['.vue', '.jsx'].includes(ext);
}; };
const isProcessDirectory = function (path, item) { const isProcessDirectory = function (path, item) {
@ -68,6 +71,8 @@ const getRoutePath = function (parentRoutePath, fileName) {
return posix.join(parentRoutePath, fileName); return posix.join(parentRoutePath, fileName);
}; };
let cacheGenRoutes = {};
// TODO 约定 layout 目录作为布局文件夹, // TODO 约定 layout 目录作为布局文件夹,
const genRoutes = function (parentRoutes, path, parentRoutePath, config) { const genRoutes = function (parentRoutes, path, parentRoutePath, config) {
const dirList = readdirSync(path); const dirList = readdirSync(path);
@ -91,6 +96,12 @@ const genRoutes = function (parentRoutes, path, parentRoutePath, config) {
const fileName = basename(item, ext); const fileName = basename(item, ext);
// 路由的path // 路由的path
const routePath = getRoutePath(parentRoutePath, fileName); const routePath = getRoutePath(parentRoutePath, fileName);
if (cacheGenRoutes[routePath]) {
logger.warn(`[WARNING]: The file path: ${routePath}(.jsx/.vue) conflict in routerwill only use ${routePath}.jsxplease remove one of.`);
return;
}
cacheGenRoutes[routePath] = true;
// 路由名称 // 路由名称
const routeName = getRouteName(parentRoutePath, fileName); const routeName = getRouteName(parentRoutePath, fileName);
const componentPath = getComponentPath(parentRoutePath, fileName, config); const componentPath = getComponentPath(parentRoutePath, fileName, config);
@ -172,6 +183,7 @@ const getRoutes = function ({ config, absPagesPath }) {
if (configRoutes && configRoutes.length > 0) return configRoutes; if (configRoutes && configRoutes.length > 0) return configRoutes;
const routes = []; const routes = [];
cacheGenRoutes = {};
genRoutes(routes, absPagesPath, '/', config); genRoutes(routes, absPagesPath, '/', config);
rank(routes); rank(routes);
return routes; return routes;

View File

@ -0,0 +1,7 @@
import { defineComponent } from 'vue';
export default defineComponent({
setup() {
return () => <div>hello jsx</div>;
}
});

View File

@ -0,0 +1,3 @@
<template>
<div>hello vue</div>
</template>

View File

@ -0,0 +1,7 @@
import { defineComponent } from 'vue';
export default defineComponent({
setup() {
return () => <div>hello jsx</div>;
}
});