tftsr-devops_investigation/src/App.tsx
Shaun Arman 8839075805 feat: initial implementation of TFTSR IT Triage & RCA application
Implements Phases 1-8 of the TFTSR implementation plan.

Rust backend (Tauri 2.x, src-tauri/):
- Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama
- PII detection engine: 11 regex patterns with overlap resolution
- SQLCipher AES-256 encrypted database with 10 versioned migrations
- 28 Tauri IPC commands for triage, analysis, document, and system ops
- Ollama: hardware probe, model recommendations, pull/delete with events
- RCA and blameless post-mortem Markdown document generators
- PDF export via printpdf
- Audit log: SHA-256 hash of every external data send
- Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2)

Frontend (React 18 + TypeScript + Vite, src/):
- 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings
- 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives
- 3 Zustand stores: session, settings (persisted), history
- Type-safe tauriCommands.ts matching Rust backend types exactly
- 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs)

DevOps:
- .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push
- .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload

Verified:
- cargo check: zero errors
- tsc --noEmit: zero errors
- vitest run: 13/13 unit tests passing

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-03-14 22:36:25 -05:00

142 lines
5.2 KiB
TypeScript

import React, { useState } from "react";
import { Routes, Route, NavLink, useLocation } from "react-router-dom";
import {
Home,
Plus,
Clock,
Cpu,
Bot,
Shield,
Link,
ChevronLeft,
ChevronRight,
} from "lucide-react";
import { useSettingsStore } from "@/stores/settingsStore";
import Dashboard from "@/pages/Dashboard";
import NewIssue from "@/pages/NewIssue";
import LogUpload from "@/pages/LogUpload";
import Triage from "@/pages/Triage";
import Resolution from "@/pages/Resolution";
import RCA from "@/pages/RCA";
import Postmortem from "@/pages/Postmortem";
import History from "@/pages/History";
import AIProviders from "@/pages/Settings/AIProviders";
import Ollama from "@/pages/Settings/Ollama";
import Integrations from "@/pages/Settings/Integrations";
import Security from "@/pages/Settings/Security";
const navItems = [
{ to: "/", icon: Home, label: "Dashboard" },
{ to: "/new-issue", icon: Plus, label: "New Issue" },
{ to: "/history", icon: Clock, label: "History" },
];
const settingsItems = [
{ to: "/settings/providers", icon: Cpu, label: "AI Providers" },
{ to: "/settings/ollama", icon: Bot, label: "Ollama" },
{ to: "/settings/integrations", icon: Link, label: "Integrations" },
{ to: "/settings/security", icon: Shield, label: "Security" },
];
export default function App() {
const [collapsed, setCollapsed] = useState(false);
const theme = useSettingsStore((s) => s.theme);
const location = useLocation();
return (
<div className={theme === "dark" ? "dark" : ""}>
<div className="grid h-screen" style={{ gridTemplateColumns: collapsed ? "64px 1fr" : "240px 1fr" }}>
{/* Sidebar */}
<aside className="bg-card border-r flex flex-col h-screen overflow-y-auto">
{/* Logo */}
<div className="flex items-center justify-between px-4 py-4 border-b">
{!collapsed && (
<span className="text-lg font-bold text-foreground tracking-tight">
TFTSR
</span>
)}
<button
onClick={() => setCollapsed((c) => !c)}
className="p-1 rounded hover:bg-accent text-muted-foreground"
>
{collapsed ? <ChevronRight className="w-4 h-4" /> : <ChevronLeft className="w-4 h-4" />}
</button>
</div>
{/* Main nav */}
<nav className="flex-1 px-2 py-3 space-y-1">
{navItems.map((item) => (
<NavLink
key={item.to}
to={item.to}
end={item.to === "/"}
className={({ isActive }) =>
`flex items-center gap-3 px-3 py-2 rounded-md text-sm font-medium transition-colors ${
isActive
? "bg-primary text-primary-foreground"
: "text-muted-foreground hover:bg-accent hover:text-accent-foreground"
}`
}
>
<item.icon className="w-4 h-4 shrink-0" />
{!collapsed && <span>{item.label}</span>}
</NavLink>
))}
{/* Settings section */}
<div className="pt-4">
{!collapsed && (
<p className="px-3 text-xs font-semibold text-muted-foreground uppercase tracking-wider mb-2">
Settings
</p>
)}
{settingsItems.map((item) => (
<NavLink
key={item.to}
to={item.to}
className={({ isActive }) =>
`flex items-center gap-3 px-3 py-2 rounded-md text-sm font-medium transition-colors ${
isActive
? "bg-primary text-primary-foreground"
: "text-muted-foreground hover:bg-accent hover:text-accent-foreground"
}`
}
>
<item.icon className="w-4 h-4 shrink-0" />
{!collapsed && <span>{item.label}</span>}
</NavLink>
))}
</div>
</nav>
{/* Version */}
{!collapsed && (
<div className="px-4 py-3 border-t text-xs text-muted-foreground">
v0.1.0
</div>
)}
</aside>
{/* Main content */}
<main className="overflow-y-auto bg-background">
<Routes>
<Route path="/" element={<Dashboard />} />
<Route path="/new-issue" element={<NewIssue />} />
<Route path="/issue/:id/logs" element={<LogUpload />} />
<Route path="/issue/:id/triage" element={<Triage />} />
<Route path="/issue/:id/resolution" element={<Resolution />} />
<Route path="/issue/:id/rca" element={<RCA />} />
<Route path="/issue/:id/postmortem" element={<Postmortem />} />
<Route path="/history" element={<History />} />
<Route path="/settings/providers" element={<AIProviders />} />
<Route path="/settings/ollama" element={<Ollama />} />
<Route path="/settings/integrations" element={<Integrations />} />
<Route path="/settings/security" element={<Security />} />
</Routes>
</main>
</div>
</div>
);
}