All checks were successful
Test / frontend-tests (pull_request) Successful in 1m9s
Test / frontend-typecheck (pull_request) Successful in 1m15s
Test / rust-fmt-check (pull_request) Successful in 2m44s
Test / rust-clippy (pull_request) Successful in 24m22s
Test / rust-tests (pull_request) Successful in 25m43s
- Fix TypeScript lint errors in setup.ts and LogUpload - Remove unused imports and variables - Fix duplicate Separator exports in ui/index.tsx - Apply cargo fmt formatting to Rust code - Update ESLint configuration
110 lines
3.2 KiB
TypeScript
110 lines
3.2 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
import { useParams, useNavigate, Link } from "react-router-dom";
|
|
import { ChevronRight } from "lucide-react";
|
|
import { Button } from "@/components/ui";
|
|
import { DocEditor } from "@/components/DocEditor";
|
|
import { useSettingsStore } from "@/stores/settingsStore";
|
|
import {
|
|
generateRcaCmd,
|
|
updateDocumentCmd,
|
|
exportDocumentCmd,
|
|
type Document_,
|
|
} from "@/lib/tauriCommands";
|
|
|
|
export default function RCA() {
|
|
const { id } = useParams<{ id: string }>();
|
|
const navigate = useNavigate();
|
|
void useSettingsStore((s) => s.getActiveProvider);
|
|
|
|
const [doc, setDoc] = useState<Document_ | null>(null);
|
|
const [content, setContent] = useState("");
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (!id) return;
|
|
const load = async () => {
|
|
setIsLoading(true);
|
|
try {
|
|
const generated = await generateRcaCmd(id);
|
|
setDoc(generated);
|
|
setContent(generated.content_md);
|
|
} catch (err) {
|
|
setError(String(err));
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
load();
|
|
}, [id]);
|
|
|
|
const handleContentChange = async (newContent: string) => {
|
|
setContent(newContent);
|
|
if (doc) {
|
|
try {
|
|
const updated = await updateDocumentCmd(doc.id, newContent);
|
|
setDoc(updated);
|
|
} catch (err) {
|
|
setError(String(err));
|
|
}
|
|
}
|
|
};
|
|
|
|
const handleExport = async (format: "md" | "pdf" | "docx") => {
|
|
if (!doc) return;
|
|
try {
|
|
const path = await exportDocumentCmd(doc.id, doc.title, content, format, "");
|
|
setError(`Document exported to: ${path}`);
|
|
setTimeout(() => setError(null), 5000);
|
|
} catch (err) {
|
|
setError(`Export failed: ${String(err)}`);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="p-6 space-y-4 h-full flex flex-col">
|
|
{/* Breadcrumb */}
|
|
<nav className="flex items-center gap-1 text-sm text-muted-foreground">
|
|
<Link to={`/issue/${id}/triage`} className="hover:text-foreground">
|
|
Triage
|
|
</Link>
|
|
<ChevronRight className="w-3 h-3" />
|
|
<Link to={`/issue/${id}/resolution`} className="hover:text-foreground">
|
|
Resolution
|
|
</Link>
|
|
<ChevronRight className="w-3 h-3" />
|
|
<span className="text-foreground font-medium">RCA</span>
|
|
</nav>
|
|
|
|
<div className="flex items-center justify-between">
|
|
<h1 className="text-3xl font-bold">Root Cause Analysis</h1>
|
|
<Button onClick={() => navigate(`/issue/${id}/postmortem`)}>
|
|
Proceed to Post-Mortem
|
|
<ChevronRight className="w-4 h-4 ml-1" />
|
|
</Button>
|
|
</div>
|
|
|
|
{error && (
|
|
<div className="text-sm text-destructive bg-destructive/10 rounded-md p-3">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
{isLoading ? (
|
|
<div className="flex-1 flex items-center justify-center">
|
|
<p className="text-muted-foreground">Generating RCA document...</p>
|
|
</div>
|
|
) : (
|
|
<div className="flex-1 min-h-0">
|
|
<DocEditor
|
|
content={content}
|
|
onChange={handleContentChange}
|
|
updatedAt={doc?.updated_at?.toString()}
|
|
onExport={handleExport}
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|