8493a6a764
Aegis CI / lint-and-test (push) Has been cancelled
Snyk Security Scan / Python vulnerabilities (backend) (push) Has been cancelled
Snyk Security Scan / npm vulnerabilities (frontend) (push) Has been cancelled
Snyk Security Scan / Docker image vulnerabilities (backend) (push) Has been cancelled
Route and nav link removed (not the page/component files, kept as a base to resume later) — navigating to /reports now falls through to the catch-all redirect to /dashboard for every role, including admin. fix(campaigns): show all non-campaign tests when adding to a campaign The 'Existing Test' picker only ever queried state=draft, but the backend places no restriction on a test's own state when adding it to a campaign (only the campaign's own status matters) — tests already in progress or completed were invisible here for no real reason.
160 lines
8.5 KiB
TypeScript
160 lines
8.5 KiB
TypeScript
import React, { Suspense } from "react";
|
|
import { Routes, Route, Navigate } from "react-router-dom";
|
|
import LoadingSpinner from "./components/LoadingSpinner";
|
|
import Layout from "./components/Layout";
|
|
import ProtectedRoute from "./components/ProtectedRoute";
|
|
|
|
/* ── Eagerly loaded (core pages) ──────────────────────────────────── */
|
|
import LoginPage from "./pages/LoginPage";
|
|
import DashboardPage from "./pages/DashboardPage";
|
|
|
|
/* ── Lazy loaded (V1-V3 pages) ────────────────────────────────────── */
|
|
const MatrixPage = React.lazy(() => import("./pages/MatrixPage"));
|
|
const ExecutiveDashboardPage = React.lazy(() => import("./pages/ExecutiveDashboardPage"));
|
|
const CompliancePage = React.lazy(() => import("./pages/CompliancePage"));
|
|
const TechniqueDetailPage = React.lazy(() => import("./pages/TechniqueDetailPage"));
|
|
const TestsPage = React.lazy(() => import("./pages/TestsPage"));
|
|
const TestCreatePage = React.lazy(() => import("./pages/TestCreatePage"));
|
|
const TestDetailPage = React.lazy(() => import("./pages/TestDetailPage"));
|
|
const TestCatalogPage = React.lazy(() => import("./pages/TestCatalogPage"));
|
|
const ValidatedTestsPage = React.lazy(() => import("./pages/ValidatedTestsPage"));
|
|
const ReviewQueuePage = React.lazy(() => import("./pages/ReviewQueuePage"));
|
|
const ImportRTPage = React.lazy(() => import("./pages/ImportRTPage"));
|
|
// Reports is unfinished — hidden platform-wide (route + nav link removed
|
|
// below) until it's ready. Left unimported/unrouted rather than deleted.
|
|
// const ReportsPage = React.lazy(() => import("./pages/ReportsPage"));
|
|
const SystemPage = React.lazy(() => import("./pages/SystemPage"));
|
|
const UsersPage = React.lazy(() => import("./pages/UsersPage"));
|
|
const AuditLogPage = React.lazy(() => import("./pages/AuditLogPage"));
|
|
const DataSourcesPage = React.lazy(() => import("./pages/DataSourcesPage"));
|
|
const ThreatActorsPage = React.lazy(() => import("./pages/ThreatActorsPage"));
|
|
const ThreatActorDetailPage = React.lazy(() => import("./pages/ThreatActorDetailPage"));
|
|
const CampaignsPage = React.lazy(() => import("./pages/CampaignsPage"));
|
|
const CampaignDetailPage = React.lazy(() => import("./pages/CampaignDetailPage"));
|
|
const ComparisonPage = React.lazy(() => import("./pages/ComparisonPage"));
|
|
const SettingsPage = React.lazy(() => import("./pages/SettingsPage"));
|
|
|
|
export default function App() {
|
|
return (
|
|
<Routes>
|
|
{/* Public */}
|
|
<Route path="/login" element={<LoginPage />} />
|
|
|
|
{/* Protected — wrapped in shared Layout */}
|
|
<Route
|
|
element={
|
|
<ProtectedRoute>
|
|
<Layout />
|
|
</ProtectedRoute>
|
|
}
|
|
>
|
|
{/* ── Core ─────────────────────────────────────────────── */}
|
|
<Route path="/dashboard" element={<DashboardPage />} />
|
|
|
|
{/* Techniques was merged into the Coverage Matrix's "Coverage" layer + List view */}
|
|
<Route path="/techniques" element={<Navigate to="/matrix" replace />} />
|
|
<Route path="/techniques/:mitreId" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><TechniqueDetailPage /></Suspense>} />
|
|
|
|
<Route path="/matrix" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><MatrixPage /></Suspense>} />
|
|
<Route
|
|
path="/techniques/review-queue"
|
|
element={
|
|
<ProtectedRoute roles={["admin", "red_lead", "blue_lead"]}>
|
|
<Suspense fallback={<LoadingSpinner text="Loading…" />}><ReviewQueuePage /></Suspense>
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
|
|
{/* ── Executive Dashboard (leads + admin + viewer) ──────── */}
|
|
<Route
|
|
path="/executive-dashboard"
|
|
element={
|
|
<ProtectedRoute roles={["admin", "red_lead", "blue_lead", "viewer"]}>
|
|
<Suspense fallback={<LoadingSpinner text="Loading…" />}><ExecutiveDashboardPage /></Suspense>
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
|
|
{/* ── Tests ────────────────────────────────────────────── */}
|
|
<Route path="/tests" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><TestsPage /></Suspense>} />
|
|
<Route path="/tests/new" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><TestCreatePage /></Suspense>} />
|
|
<Route path="/tests/validated" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><ValidatedTestsPage /></Suspense>} />
|
|
<Route
|
|
path="/tests/import-rt"
|
|
element={
|
|
<ProtectedRoute roles={["admin", "red_lead"]}>
|
|
<Suspense fallback={<LoadingSpinner text="Loading…" />}><ImportRTPage /></Suspense>
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route path="/tests/:testId" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><TestDetailPage /></Suspense>} />
|
|
<Route path="/test-catalog" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><TestCatalogPage /></Suspense>} />
|
|
<Route path="/test-catalog/:templateId/use" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><TestCatalogPage /></Suspense>} />
|
|
|
|
{/* ── Campaigns ────────────────────────────────────────── */}
|
|
<Route path="/campaigns" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><CampaignsPage /></Suspense>} />
|
|
<Route path="/campaigns/:campaignId" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><CampaignDetailPage /></Suspense>} />
|
|
|
|
{/* ── Threat Actors ────────────────────────────────────── */}
|
|
<Route path="/threat-actors" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><ThreatActorsPage /></Suspense>} />
|
|
<Route path="/threat-actors/:actorId" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><ThreatActorDetailPage /></Suspense>} />
|
|
|
|
{/* ── Compliance ───────────────────────────────────────── */}
|
|
<Route path="/compliance" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><CompliancePage /></Suspense>} />
|
|
|
|
{/* ── Comparison (leads + admin + viewer) ──────────────── */}
|
|
<Route
|
|
path="/comparison"
|
|
element={
|
|
<ProtectedRoute roles={["admin", "red_lead", "blue_lead", "viewer"]}>
|
|
<Suspense fallback={<LoadingSpinner text="Loading…" />}><ComparisonPage /></Suspense>
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
|
|
{/* ── Reports (hidden — unfinished, see import comment above) ── */}
|
|
|
|
{/* ── Settings (all authenticated users) ───────────────── */}
|
|
<Route path="/settings" element={<Suspense fallback={<LoadingSpinner text="Loading…" />}><SettingsPage /></Suspense>} />
|
|
|
|
{/* ── System (admin only) ──────────────────────────────── */}
|
|
<Route
|
|
path="/system"
|
|
element={
|
|
<ProtectedRoute roles={["admin"]}>
|
|
<Suspense fallback={<LoadingSpinner text="Loading…" />}><SystemPage /></Suspense>
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/users"
|
|
element={
|
|
<ProtectedRoute roles={["admin"]}>
|
|
<Suspense fallback={<LoadingSpinner text="Loading…" />}><UsersPage /></Suspense>
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/audit"
|
|
element={
|
|
<ProtectedRoute roles={["admin"]}>
|
|
<Suspense fallback={<LoadingSpinner text="Loading…" />}><AuditLogPage /></Suspense>
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/data-sources"
|
|
element={
|
|
<ProtectedRoute roles={["admin"]}>
|
|
<Suspense fallback={<LoadingSpinner text="Loading…" />}><DataSourcesPage /></Suspense>
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
</Route>
|
|
|
|
{/* Catch-all → dashboard */}
|
|
<Route path="*" element={<Navigate to="/dashboard" replace />} />
|
|
</Routes>
|
|
);
|
|
}
|