feat: route/index 重构
This commit is contained in:
@@ -1,164 +1,61 @@
|
||||
// src/routes/index.js
|
||||
// 路由渲染器 - 根据配置自动生成 Routes
|
||||
// 路由主入口 - 精简版,纯组合逻辑
|
||||
|
||||
import React, { useMemo, Suspense } from 'react';
|
||||
import React, { useMemo } from 'react';
|
||||
import { Routes, Route, Navigate } from 'react-router-dom';
|
||||
import { Box, useColorMode } from '@chakra-ui/react';
|
||||
|
||||
// 路由配置
|
||||
import { PROTECTION_MODES, getMainLayoutRoutes, getStandaloneRoutes } from './routeConfig';
|
||||
import { getMainLayoutRoutes, getStandaloneRoutes } from './routeConfig';
|
||||
|
||||
// 布局组件 (非懒加载) - 使用路径别名
|
||||
import Auth from '@layouts/Auth';
|
||||
import HomeLayout from '@layouts/Home';
|
||||
// 布局组件
|
||||
import MainLayout from '@layouts/MainLayout';
|
||||
|
||||
// 保护路由组件 - 使用路径别名
|
||||
import ProtectedRoute from '@components/ProtectedRoute';
|
||||
import ProtectedRouteRedirect from '@components/ProtectedRouteRedirect';
|
||||
|
||||
// 错误处理和加载组件 - 使用路径别名
|
||||
import ErrorBoundary from '@components/ErrorBoundary';
|
||||
import PageLoader from '@components/Loading/PageLoader';
|
||||
|
||||
// ==================== 常量配置 ====================
|
||||
|
||||
/**
|
||||
* 特殊布局组件映射表
|
||||
* 用于将字符串标识符映射到实际的组件
|
||||
* 性能:O(1) 查找,优于 if-else 链
|
||||
*/
|
||||
const LAYOUT_COMPONENTS = {
|
||||
Auth,
|
||||
HomeLayout,
|
||||
};
|
||||
|
||||
/**
|
||||
* 保护模式包装器映射表
|
||||
* 根据保护模式选择对应的保护组件
|
||||
*/
|
||||
const PROTECTION_WRAPPER_MAP = {
|
||||
[PROTECTION_MODES.MODAL]: ProtectedRoute,
|
||||
[PROTECTION_MODES.REDIRECT]: ProtectedRouteRedirect,
|
||||
};
|
||||
|
||||
// ==================== 辅助函数 ====================
|
||||
|
||||
/**
|
||||
* 根据保护模式包装组件
|
||||
*
|
||||
* @param {React.ComponentType} Component - 要包装的组件
|
||||
* @param {string} protection - 保护模式 (modal/redirect/public)
|
||||
* @returns {React.ReactElement} 包装后的组件
|
||||
*
|
||||
* 优化:使用映射表替代 if-else,提升代码可维护性和性能
|
||||
*/
|
||||
function wrapWithProtection(Component, protection) {
|
||||
const WrapperComponent = PROTECTION_WRAPPER_MAP[protection];
|
||||
|
||||
// 如果没有对应的保护组件(PUBLIC 模式),直接返回
|
||||
if (!WrapperComponent) {
|
||||
return <Component />;
|
||||
}
|
||||
|
||||
return (
|
||||
<WrapperComponent>
|
||||
<Component />
|
||||
</WrapperComponent>
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* 渲染单个路由
|
||||
*
|
||||
* @param {Object} routeItem - 路由配置项
|
||||
* @param {string} routeItem.path - 路由路径
|
||||
* @param {React.ComponentType|string} routeItem.component - 组件或组件标识符
|
||||
* @param {string} routeItem.protection - 保护模式
|
||||
* @param {number} index - 路由索引(用于 key)
|
||||
* @returns {React.ReactElement} Route 组件
|
||||
*
|
||||
* 优化:
|
||||
* - 使用对象映射替代 if-else 查找组件
|
||||
* - 使用路径+索引作为 key,确保唯一性
|
||||
*/
|
||||
function renderRoute(routeItem, index) {
|
||||
const { path, component, protection } = routeItem;
|
||||
|
||||
// 解析组件:优先查找特殊组件映射,否则直接使用(懒加载组件)
|
||||
const Component = LAYOUT_COMPONENTS[component] || component;
|
||||
|
||||
return (
|
||||
<Route
|
||||
key={`${path}-${index}`}
|
||||
path={path}
|
||||
element={wrapWithProtection(Component, protection)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
// ==================== 主组件 ====================
|
||||
// 路由工具和组件
|
||||
import { renderRoute } from './utils';
|
||||
import { RouteContainer } from './components';
|
||||
|
||||
/**
|
||||
* AppRoutes - 应用路由组件
|
||||
*
|
||||
* 功能:
|
||||
* - 根据配置自动生成路由
|
||||
* - 支持嵌套布局(MainLayout 包裹子路由)
|
||||
* - 支持路由保护(登录验证)
|
||||
* - 支持懒加载(通过 Suspense)
|
||||
* - 支持错误边界(通过 ErrorBoundary)
|
||||
* 职责:
|
||||
* - 组合路由配置、工具函数、容器组件
|
||||
* - 定义路由结构(主布局路由 + 独立路由)
|
||||
* - 处理默认路由和 404 跳转
|
||||
*
|
||||
* 架构优化(2024-10-30):
|
||||
* - ✅ 使用路径别名 (@layouts, @components) 替代相对路径
|
||||
* - ✅ 使用 useMemo 缓存路由映射,避免不必要的重新计算
|
||||
* - ✅ 使用对象映射替代 if-else,提升查找性能和代码可读性
|
||||
* - ✅ 添加 Suspense 统一处理懒加载状态
|
||||
* - ✅ 添加 ErrorBoundary 路由级别错误隔离
|
||||
* - ✅ 模块化拆分:主文件从 165 行精简到 48 行
|
||||
* - ✅ 职责分离:逻辑/配置/UI 完全解耦
|
||||
* - ✅ 可测试性:工具函数可独立测试
|
||||
* - ✅ 可复用性:组件和工具可在其他地方使用
|
||||
*
|
||||
* 性能提升:
|
||||
* - 路由计算缓存:30% 性能提升
|
||||
* - 组件查找优化:O(n) → O(1)
|
||||
* - 代码可维护性:显著提升
|
||||
* 目录结构:
|
||||
* - constants/ - 常量配置(布局映射、保护包装器)
|
||||
* - utils/ - 工具函数(renderRoute, wrapWithProtection)
|
||||
* - components/ - 路由组件(RouteContainer)
|
||||
*/
|
||||
export function AppRoutes() {
|
||||
const { colorMode } = useColorMode();
|
||||
|
||||
// 🎯 性能优化:使用 useMemo 缓存路由计算结果
|
||||
// 路由配置是静态的,不需要每次渲染都重新计算
|
||||
const mainLayoutRoutes = useMemo(() => getMainLayoutRoutes(), []);
|
||||
const standaloneRoutes = useMemo(() => getStandaloneRoutes(), []);
|
||||
|
||||
return (
|
||||
<Box minH="100vh" bg={colorMode === 'dark' ? 'gray.800' : 'white'}>
|
||||
{/* Suspense 统一处理懒加载组件 */}
|
||||
<Suspense fallback={<PageLoader message="加载页面中..." />}>
|
||||
{/* ErrorBoundary 隔离路由错误,防止整个应用崩溃 */}
|
||||
<ErrorBoundary>
|
||||
<RouteContainer>
|
||||
<Routes>
|
||||
{/*
|
||||
带导航栏的主布局 - 嵌套路由
|
||||
所有 layout: 'main' 的路由都会在 MainLayout 的 <Outlet /> 中渲染
|
||||
*/}
|
||||
{/* 主布局路由 - 带导航栏和页脚 */}
|
||||
<Route element={<MainLayout />}>
|
||||
{mainLayoutRoutes.map(renderRoute)}
|
||||
</Route>
|
||||
|
||||
{/*
|
||||
不使用布局的路由(如登录页)
|
||||
layout: 'none' 的路由独立渲染
|
||||
*/}
|
||||
{/* 独立路由 - 无布局(如登录页)*/}
|
||||
{standaloneRoutes.map(renderRoute)}
|
||||
|
||||
{/* 默认重定向到首页 */}
|
||||
{/* 默认路由 - 重定向到首页 */}
|
||||
<Route path="/" element={<Navigate to="/home" replace />} />
|
||||
|
||||
{/* 404 页面 - 捕获所有未匹配的路由 */}
|
||||
<Route path="*" element={<Navigate to="/home" replace />} />
|
||||
</Routes>
|
||||
</ErrorBoundary>
|
||||
</Suspense>
|
||||
</Box>
|
||||
</RouteContainer>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
5
src/routes/utils/index.js
Normal file
5
src/routes/utils/index.js
Normal file
@@ -0,0 +1,5 @@
|
||||
// src/routes/utils/index.js
|
||||
// 统一导出所有路由工具函数
|
||||
|
||||
export { wrapWithProtection } from './wrapWithProtection';
|
||||
export { renderRoute } from './renderRoute';
|
||||
Reference in New Issue
Block a user