feat: 页面路径中目录名为@转化为动态路径

This commit is contained in:
wanchun 2022-07-08 14:13:42 +08:00
commit 2aa97202ea
3 changed files with 19 additions and 24 deletions

View File

@ -111,15 +111,15 @@ process.env.FES_ENV = 'prod';
执行 `fes build` 后,产物默认会存放在这里。 执行 `fes build` 后,产物默认会存放在这里。
## public 目录 ### public 目录
此目录下所有文件为静态资源,会被复制到输出路径。 此目录下所有文件为静态资源,会被复制到输出路径。
## index.html ### index.html
默认的 `html` 模板文件,如果删除此 `html` 则会使用内置的 `html` 模板文件。 默认的 `html` 模板文件,如果删除此 `html` 则会使用内置的 `html` 模板文件。
## src 目录 ### src 目录
### .fes 目录 ### .fes 目录

View File

@ -38,18 +38,12 @@ const checkHasLayout = function (path) {
const getRouteName = function (parentRoutePath, fileName) { const getRouteName = function (parentRoutePath, fileName) {
const routeName = posix.join(parentRoutePath, fileName); const routeName = posix.join(parentRoutePath, fileName);
return routeName.slice(1).replace(/\//g, '_').replace(/@/g, '_').replace(/\*/g, 'FUZZYMATCH'); return routeName.slice(1).replace(/\//g, '_').replace(/@/g, '_').replace(/:/g, '_').replace(/\*/g, 'FUZZYMATCH');
}; };
const getPagePathPrefix = (config) => `@/${config.singular ? 'page' : 'pages'}`; const getRoutePath = function (parentRoutePath, fileName, isFile = true) {
const getComponentPath = function (parentRoutePath, fileName, config) {
return posix.join(`${getPagePathPrefix(config)}/`, parentRoutePath, fileName);
};
const getRoutePath = function (parentRoutePath, fileName) {
// /index.vue -> / // /index.vue -> /
if (fileName === 'index') { if (isFile && fileName === 'index') {
fileName = ''; fileName = '';
} }
// /@id.vue -> /:id // /@id.vue -> /:id
@ -83,7 +77,8 @@ function getRouteMeta(content) {
let cacheGenRoutes = {}; let cacheGenRoutes = {};
const genRoutes = function (parentRoutes, path, parentRoutePath, config) { // TODO 约定 layout 目录作为布局文件夹,
const genRoutes = function (parentRoutes, path, parentRoutePath) {
const dirList = readdirSync(path); const dirList = readdirSync(path);
const hasLayout = checkHasLayout(path); const hasLayout = checkHasLayout(path);
const layoutRoute = { const layoutRoute = {
@ -111,7 +106,7 @@ const genRoutes = function (parentRoutes, path, parentRoutePath, config) {
// 路由名称 // 路由名称
const routeName = getRouteName(parentRoutePath, fileName); const routeName = getRouteName(parentRoutePath, fileName);
const componentPath = getComponentPath(parentRoutePath, ext === '.vue' ? `${fileName}${ext}` : fileName, config); const componentPath = posix.join(path, item);
const content = readFileSync(component, 'utf-8'); const content = readFileSync(component, 'utf-8');
let routeMeta = {}; let routeMeta = {};
@ -151,12 +146,12 @@ const genRoutes = function (parentRoutes, path, parentRoutePath, config) {
dirList.forEach((item) => { dirList.forEach((item) => {
if (isProcessDirectory(path, item)) { if (isProcessDirectory(path, item)) {
// 文件或者目录的绝对路径 // 文件或者目录的绝对路径
const component = join(path, item); const nextPath = join(path, item);
const nextParentRouteUrl = posix.join(parentRoutePath, item); const nextParentRouteUrl = getRoutePath(parentRoutePath, item, false);
if (hasLayout) { if (hasLayout) {
genRoutes(layoutRoute.children, component, nextParentRouteUrl, config); genRoutes(layoutRoute.children, nextPath, nextParentRouteUrl);
} else { } else {
genRoutes(parentRoutes, component, nextParentRouteUrl, config); genRoutes(parentRoutes, nextPath, nextParentRouteUrl);
} }
} }
}); });
@ -208,13 +203,13 @@ const getRoutes = function ({ config, absPagesPath }) {
const routes = []; const routes = [];
cacheGenRoutes = {}; cacheGenRoutes = {};
genRoutes(routes, absPagesPath, '/', config); genRoutes(routes, absPagesPath, '/');
rank(routes); rank(routes);
return routes; return routes;
}; };
function genComponentName(component, config) { function genComponentName(component, paths) {
return lodash.camelCase(component.replace(getPagePathPrefix(config), '').replace('.vue', '')); return lodash.camelCase(component.replace(paths.absPagesPath, '').replace('.vue', ''));
} }
function isFunctionComponent(component) { function isFunctionComponent(component) {
@ -225,7 +220,7 @@ function isFunctionComponent(component) {
); );
} }
const getRoutesJSON = function ({ routes, config }) { const getRoutesJSON = function ({ routes, config, paths }) {
// 因为要往 routes 里加无用的信息,所以必须 deep clone 一下,避免污染 // 因为要往 routes 里加无用的信息,所以必须 deep clone 一下,避免污染
const clonedRoutes = lodash.cloneDeep(routes); const clonedRoutes = lodash.cloneDeep(routes);
@ -240,7 +235,7 @@ const getRoutesJSON = function ({ routes, config }) {
// TODO 针对目录进行 chunk 划分import(/* webpackChunkName: "group-user" */ './UserDetails.vue') // TODO 针对目录进行 chunk 划分import(/* webpackChunkName: "group-user" */ './UserDetails.vue')
return `() => import('${value}')`; return `() => import('${value}')`;
} }
const componentName = genComponentName(value, config); const componentName = genComponentName(value, paths);
importList.push(`import ${componentName} from '${value}'`); importList.push(`import ${componentName} from '${value}'`);
return componentName; return componentName;
} }
@ -290,7 +285,7 @@ export default function (api) {
api.registerMethod({ api.registerMethod({
name: 'getRoutesJSON', name: 'getRoutesJSON',
async fn(routes) { async fn(routes) {
return getRoutesJSON({ routes: await (routes || api.getRoutes()), config: api.config }); return getRoutesJSON({ routes: await (routes || api.getRoutes()), config: api.config, paths: api.paths });
}, },
}); });