Files
Claude-Code-Workflow/ccw/frontend/src/router.tsx
catlog22 fb4f6e718e feat: Implement DeepWiki documentation generation tools
- Added `__init__.py` in `codexlens/tools` for documentation generation.
- Created `deepwiki_generator.py` to handle symbol extraction and markdown generation.
- Introduced `MockMarkdownGenerator` for testing purposes.
- Implemented `DeepWikiGenerator` class for managing documentation generation and file processing.
- Added unit tests for `DeepWikiStore` to ensure proper functionality and error handling.
- Created tests for DeepWiki TypeScript types matching.
2026-03-05 18:30:56 +08:00

275 lines
10 KiB
TypeScript

// ========================================
// Router Configuration
// ========================================
// React Router v6 configuration with code splitting for optimal bundle size
import { createBrowserRouter, RouteObject, Navigate } from 'react-router-dom';
import { lazy, Suspense } from 'react';
import { AppShell } from '@/components/layout';
import { ChunkErrorBoundary } from '@/components/ChunkErrorBoundary';
import { PageSkeleton } from '@/components/PageSkeleton';
// Import HomePage directly (no lazy - needed immediately)
import { HomePage } from '@/pages/HomePage';
// Lazy load all other route components for code splitting
const SessionsPage = lazy(() => import('@/pages/SessionsPage').then(m => ({ default: m.SessionsPage })));
const FixSessionPage = lazy(() => import('@/pages/FixSessionPage').then(m => ({ default: m.FixSessionPage })));
const ProjectOverviewPage = lazy(() => import('@/pages/ProjectOverviewPage').then(m => ({ default: m.ProjectOverviewPage })));
const SessionDetailPage = lazy(() => import('@/pages/SessionDetailPage').then(m => ({ default: m.SessionDetailPage })));
const HistoryPage = lazy(() => import('@/pages/HistoryPage').then(m => ({ default: m.HistoryPage })));
const OrchestratorPage = lazy(() => import('@/pages/orchestrator/OrchestratorPage').then(m => ({ default: m.OrchestratorPage })));
const IssueHubPage = lazy(() => import('@/pages/IssueHubPage').then(m => ({ default: m.IssueHubPage })));
const SkillsManagerPage = lazy(() => import('@/pages/SkillsManagerPage').then(m => ({ default: m.SkillsManagerPage })));
const CommandsManagerPage = lazy(() => import('@/pages/CommandsManagerPage').then(m => ({ default: m.CommandsManagerPage })));
const MemoryPage = lazy(() => import('@/pages/MemoryPage').then(m => ({ default: m.MemoryPage })));
const SettingsPage = lazy(() => import('@/pages/SettingsPage').then(m => ({ default: m.SettingsPage })));
const NotFoundPage = lazy(() => import('@/pages/NotFoundPage').then(m => ({ default: m.NotFoundPage })));
const LiteTasksPage = lazy(() => import('@/pages/LiteTasksPage').then(m => ({ default: m.LiteTasksPage })));
const ReviewSessionPage = lazy(() => import('@/pages/ReviewSessionPage').then(m => ({ default: m.ReviewSessionPage })));
const McpManagerPage = lazy(() => import('@/pages/McpManagerPage').then(m => ({ default: m.McpManagerPage })));
const EndpointsPage = lazy(() => import('@/pages/EndpointsPage').then(m => ({ default: m.EndpointsPage })));
const InstallationsPage = lazy(() => import('@/pages/InstallationsPage').then(m => ({ default: m.InstallationsPage })));
const HookManagerPage = lazy(() => import('@/pages/HookManagerPage').then(m => ({ default: m.HookManagerPage })));
const RulesManagerPage = lazy(() => import('@/pages/RulesManagerPage').then(m => ({ default: m.RulesManagerPage })));
const PromptHistoryPage = lazy(() => import('@/pages/PromptHistoryPage').then(m => ({ default: m.PromptHistoryPage })));
const ExplorerPage = lazy(() => import('@/pages/ExplorerPage').then(m => ({ default: m.ExplorerPage })));
const GraphExplorerPage = lazy(() => import('@/pages/GraphExplorerPage').then(m => ({ default: m.GraphExplorerPage })));
const CodexLensManagerPage = lazy(() => import('@/pages/CodexLensManagerPage').then(m => ({ default: m.CodexLensManagerPage })));
const ApiSettingsPage = lazy(() => import('@/pages/ApiSettingsPage').then(m => ({ default: m.ApiSettingsPage })));
const CliViewerPage = lazy(() => import('@/pages/CliViewerPage').then(m => ({ default: m.CliViewerPage })));
const CliSessionSharePage = lazy(() => import('@/pages/CliSessionSharePage').then(m => ({ default: m.CliSessionSharePage })));
const TeamPage = lazy(() => import('@/pages/TeamPage').then(m => ({ default: m.TeamPage })));
const TerminalDashboardPage = lazy(() => import('@/pages/TerminalDashboardPage').then(m => ({ default: m.TerminalDashboardPage })));
const AnalysisPage = lazy(() => import('@/pages/AnalysisPage').then(m => ({ default: m.AnalysisPage })));
const SpecsSettingsPage = lazy(() => import('@/pages/SpecsSettingsPage').then(m => ({ default: m.SpecsSettingsPage })));
const DeepWikiPage = lazy(() => import('@/pages/DeepWikiPage').then(m => ({ default: m.DeepWikiPage })));
/**
* Helper to wrap lazy-loaded components with error boundary and suspense
* Catches chunk load failures and provides retry mechanism
*/
function withErrorHandling(element: React.ReactElement) {
return (
<ChunkErrorBoundary>
<Suspense fallback={<PageSkeleton />}>
{element}
</Suspense>
</ChunkErrorBoundary>
);
}
/**
* Route configuration for the dashboard
* All routes are wrapped in AppShell layout with Suspense for code splitting
*/
const routes: RouteObject[] = [
{
path: 'cli-sessions/share',
element: withErrorHandling(<CliSessionSharePage />),
},
{
path: '/',
element: <AppShell />,
children: [
{
index: true,
element: <HomePage />,
},
{
path: 'sessions',
element: withErrorHandling(<SessionsPage />),
},
{
path: 'sessions/:sessionId',
element: withErrorHandling(<SessionDetailPage />),
},
{
path: 'sessions/:sessionId/fix',
element: withErrorHandling(<FixSessionPage />),
},
{
path: 'sessions/:sessionId/review',
element: withErrorHandling(<ReviewSessionPage />),
},
{
path: 'lite-tasks',
element: withErrorHandling(<LiteTasksPage />),
},
// /lite-tasks/:sessionId route removed - now using TaskDrawer
{
path: 'project',
element: withErrorHandling(<ProjectOverviewPage />),
},
{
path: 'history',
element: withErrorHandling(<HistoryPage />),
},
{
path: 'orchestrator',
element: withErrorHandling(<OrchestratorPage />),
},
{
path: 'loops',
element: <Navigate to="/terminal-dashboard" replace />,
},
{
path: 'cli-viewer',
element: withErrorHandling(<CliViewerPage />),
},
{
path: 'issues',
element: withErrorHandling(<IssueHubPage />),
},
// Legacy routes - redirect to hub with tab parameter
{
path: 'issues/queue',
element: <Navigate to="/issues?tab=queue" replace />,
},
{
path: 'issues/discovery',
element: <Navigate to="/issues?tab=discovery" replace />,
},
{
path: 'skills',
element: withErrorHandling(<SkillsManagerPage />),
},
{
path: 'commands',
element: withErrorHandling(<CommandsManagerPage />),
},
{
path: 'memory',
element: withErrorHandling(<MemoryPage />),
},
{
path: 'prompts',
element: withErrorHandling(<PromptHistoryPage />),
},
{
path: 'settings',
element: withErrorHandling(<SettingsPage />),
},
{
path: 'settings/mcp',
element: withErrorHandling(<McpManagerPage />),
},
{
path: 'settings/endpoints',
element: withErrorHandling(<EndpointsPage />),
},
{
path: 'settings/installations',
element: withErrorHandling(<InstallationsPage />),
},
{
path: 'settings/rules',
element: withErrorHandling(<RulesManagerPage />),
},
{
path: 'settings/specs',
element: withErrorHandling(<SpecsSettingsPage />),
},
{
path: 'settings/codexlens',
element: withErrorHandling(<CodexLensManagerPage />),
},
{
path: 'api-settings',
element: withErrorHandling(<ApiSettingsPage />),
},
{
path: 'hooks',
element: withErrorHandling(<HookManagerPage />),
},
{
path: 'explorer',
element: withErrorHandling(<ExplorerPage />),
},
{
path: 'graph',
element: withErrorHandling(<GraphExplorerPage />),
},
{
path: 'teams',
element: withErrorHandling(<TeamPage />),
},
{
path: 'analysis',
element: withErrorHandling(<AnalysisPage />),
},
{
path: 'deepwiki',
element: withErrorHandling(<DeepWikiPage />),
},
{
path: 'terminal-dashboard',
element: withErrorHandling(<TerminalDashboardPage />),
},
{
path: 'skill-hub',
element: <Navigate to="/skills?tab=hub" replace />,
},
// Catch-all route for 404
{
path: '*',
element: withErrorHandling(<NotFoundPage />),
},
],
},
];
/**
* Create the browser router instance
* Uses basename from Vite's BASE_URL environment variable
*/
const basename = import.meta.env.BASE_URL?.replace(/\/$/, '') || '';
export const router = createBrowserRouter(routes, {
basename,
});
/**
* Export route paths for type-safe navigation
*/
export const ROUTES = {
HOME: '/',
SESSIONS: '/sessions',
SESSION_DETAIL: '/sessions/:sessionId',
FIX_SESSION: '/sessions/:sessionId/fix',
REVIEW_SESSION: '/sessions/:sessionId/review',
LITE_TASKS: '/lite-tasks',
// LITE_TASK_DETAIL removed - now using TaskDrawer
PROJECT: '/project',
HISTORY: '/history',
ORCHESTRATOR: '/orchestrator',
/** @deprecated Redirects to /terminal-dashboard */
LOOPS: '/loops',
CLI_VIEWER: '/cli-viewer',
ISSUES: '/issues',
// Legacy issue routes - use ISSUES with ?tab parameter instead
ISSUE_QUEUE: '/issues?tab=queue',
ISSUE_DISCOVERY: '/issues?tab=discovery',
SKILLS: '/skills',
COMMANDS: '/commands',
MEMORY: '/memory',
PROMPT_HISTORY: '/prompts',
SETTINGS: '/settings',
HOOKS_MANAGER: '/hooks',
MCP_MANAGER: '/settings/mcp',
ENDPOINTS: '/settings/endpoints',
INSTALLATIONS: '/settings/installations',
SETTINGS_RULES: '/settings/rules',
CODEXLENS_MANAGER: '/settings/codexlens',
API_SETTINGS: '/api-settings',
EXPLORER: '/explorer',
GRAPH: '/graph',
TEAMS: '/teams',
TERMINAL_DASHBOARD: '/terminal-dashboard',
SKILL_HUB: '/skill-hub',
ANALYSIS: '/analysis',
DEEPWIKI: '/deepwiki',
} as const;
export type RoutePath = (typeof ROUTES)[keyof typeof ROUTES];