fix: 修复win下路径问题

This commit is contained in:
wanchun 2022-07-15 10:15:28 +08:00
parent 25a28d6a9c
commit bb3ab04e79

View File

@ -1,8 +1,10 @@
import { readdirSync, statSync, readFileSync } from 'fs'; import { readdirSync, statSync, readFileSync } from 'fs';
import { import {
join, extname, posix, basename join, extname, basename
} from 'path'; } from 'path';
import { lodash, parser, generator } from '@fesjs/utils'; import {
lodash, parser, generator, winPath
} from '@fesjs/utils';
import { parse } from '@vue/compiler-sfc'; import { parse } from '@vue/compiler-sfc';
import { Logger } from '@fesjs/compiler'; import { Logger } from '@fesjs/compiler';
import { runtimePath } from '../../../utils/constants'; import { runtimePath } from '../../../utils/constants';
@ -25,14 +27,14 @@ const isProcessFile = function (path) {
}; };
const isProcessDirectory = function (path, item) { const isProcessDirectory = function (path, item) {
const component = join(path, item); const component = winPath(join(path, item));
return statSync(component).isDirectory() && !['components'].includes(item); return statSync(component).isDirectory() && !['components'].includes(item);
}; };
const checkHasLayout = function (path) { const checkHasLayout = function (path) {
const dirList = readdirSync(path); const dirList = readdirSync(path);
return dirList.some((item) => { return dirList.some((item) => {
if (!isProcessFile(join(path, item))) { if (!isProcessFile(winPath(join(path, item)))) {
return false; return false;
} }
const ext = extname(item); const ext = extname(item);
@ -42,7 +44,7 @@ const checkHasLayout = function (path) {
}; };
const getRouteName = function (parentRoutePath, fileName) { const getRouteName = function (parentRoutePath, fileName) {
const routeName = posix.join(parentRoutePath, fileName); const routeName = winPath(join(parentRoutePath, fileName));
return routeName return routeName
.slice(1) .slice(1)
.replace(/\//g, '_') .replace(/\//g, '_')
@ -63,7 +65,7 @@ const getRoutePath = function (parentRoutePath, fileName, isFile = true) {
if (fileName.includes('*')) { if (fileName.includes('*')) {
fileName = fileName.replace('*', ':pathMatch(.*)'); fileName = fileName.replace('*', ':pathMatch(.*)');
} }
return posix.join(parentRoutePath, fileName); return winPath(join(parentRoutePath, fileName));
}; };
function getRouteMeta(content) { function getRouteMeta(content) {
@ -94,8 +96,8 @@ const genRoutes = function (parentRoutes, path, parentRoutePath) {
} }
dirList.forEach((item) => { dirList.forEach((item) => {
// 文件或者目录的绝对路径 // 文件或者目录的绝对路径
const component = join(path, item); const filePath = winPath(join(path, item));
if (isProcessFile(component)) { if (isProcessFile(filePath)) {
const ext = extname(item); const ext = extname(item);
const fileName = basename(item, ext); const fileName = basename(item, ext);
// 路由的path // 路由的path
@ -108,9 +110,9 @@ const genRoutes = function (parentRoutes, path, parentRoutePath) {
// 路由名称 // 路由名称
const routeName = getRouteName(parentRoutePath, fileName); const routeName = getRouteName(parentRoutePath, fileName);
const componentPath = posix.join(path, item); const componentPath = winPath(filePath);
let content = readFileSync(component, 'utf-8'); let content = readFileSync(filePath, 'utf-8');
let routeMeta = {}; let routeMeta = {};
if (ext === '.vue') { if (ext === '.vue') {
const { descriptor } = parse(content); const { descriptor } = parse(content);
@ -148,7 +150,7 @@ const genRoutes = function (parentRoutes, path, parentRoutePath) {
dirList.forEach((item) => { dirList.forEach((item) => {
if (isProcessDirectory(path, item)) { if (isProcessDirectory(path, item)) {
// 文件或者目录的绝对路径 // 文件或者目录的绝对路径
const nextPath = join(path, item); const nextPath = winPath(join(path, item));
const nextParentRouteUrl = getRoutePath(parentRoutePath, item, false); const nextParentRouteUrl = getRoutePath(parentRoutePath, item, false);
if (hasLayout) { if (hasLayout) {
genRoutes(layoutRoute.children, nextPath, nextParentRouteUrl); genRoutes(layoutRoute.children, nextPath, nextParentRouteUrl);