Files
web/src/portal/AuditLogViewer.tsx
T
groombook-engineer[bot] 45ed3587ba feat: extract groombook/web from monorepo
- Copy apps/web/ with all src, components, pages, portal
- Inline packages/types/ as local packages/types module
- Add tsconfig path aliases for @groombook/types
- Port Dockerfile and CI workflow
- Image name: ghcr.io/groombook/web

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-05-02 21:38:42 +00:00

108 lines
4.3 KiB
TypeScript

import { useState, useEffect } from "react";
import { X, Filter, Loader } from "lucide-react";
import type { ImpersonationAuditLog } from "@groombook/types";
interface Props {
sessionId: string;
onClose: () => void;
}
export function AuditLogViewer({ sessionId, onClose }: Props) {
const [auditLog, setAuditLog] = useState<ImpersonationAuditLog[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [filterAction, setFilterAction] = useState<string>("all");
useEffect(() => {
setLoading(true);
setError(null);
fetch(`/api/impersonation/sessions/${sessionId}/audit-log`)
.then((r) => {
if (!r.ok) throw new Error(`Failed to load audit log (${r.status})`);
return r.json() as Promise<ImpersonationAuditLog[]>;
})
.then((logs) => {
// API returns newest-first; reverse for chronological display
setAuditLog([...logs].reverse());
setLoading(false);
})
.catch((err: unknown) => {
setError(err instanceof Error ? err.message : "Failed to load audit log");
setLoading(false);
});
}, [sessionId]);
const actionTypes = ["all", ...new Set(auditLog.map((e) => e.action))];
const filtered = filterAction === "all" ? auditLog : auditLog.filter((e) => e.action === filterAction);
return (
<div className="fixed inset-0 bg-black/50 z-50 flex items-center justify-center p-4">
<div className="bg-white rounded-2xl shadow-xl max-w-2xl w-full max-h-[80vh] flex flex-col">
<div className="flex items-center justify-between px-6 py-4 border-b border-stone-200">
<h2 className="font-semibold text-stone-800">Impersonation Audit Log</h2>
<button onClick={onClose} className="p-1.5 hover:bg-stone-100 rounded-lg">
<X size={18} className="text-stone-500" />
</button>
</div>
{!loading && !error && (
<div className="px-6 py-3 border-b border-stone-100 flex items-center gap-2">
<Filter size={14} className="text-stone-400" />
<select
value={filterAction}
onChange={(e) => setFilterAction(e.target.value)}
className="text-sm border border-stone-200 rounded-lg px-2 py-1"
>
{actionTypes.map((a) => (
<option key={a} value={a}>
{a === "all" ? "All actions" : a.replace(/_/g, " ")}
</option>
))}
</select>
<span className="text-xs text-stone-400 ml-auto">{filtered.length} entries</span>
</div>
)}
<div className="flex-1 overflow-y-auto px-6 py-3">
{loading && (
<div className="flex items-center justify-center gap-2 py-8 text-stone-400">
<Loader size={16} className="animate-spin" />
<span className="text-sm">Loading audit log</span>
</div>
)}
{error && (
<p className="text-sm text-red-500 text-center py-8">{error}</p>
)}
{!loading && !error && filtered.length === 0 && (
<p className="text-sm text-stone-400 text-center py-8">No audit entries</p>
)}
{!loading && !error && filtered.length > 0 && (
<div className="space-y-3">
{filtered.map((entry) => (
<div key={entry.id} className="flex gap-3 text-sm">
<div className="text-xs text-stone-400 whitespace-nowrap pt-0.5 w-20 shrink-0">
{new Date(entry.createdAt).toLocaleTimeString()}
</div>
<div>
<span className="inline-block px-2 py-0.5 bg-stone-100 text-stone-600 rounded text-xs font-medium mb-0.5">
{entry.action.replace(/_/g, " ")}
</span>
{entry.pageVisited && (
<p className="text-stone-700">{entry.pageVisited}</p>
)}
{entry.metadata && Object.keys(entry.metadata).length > 0 && (
<p className="text-stone-500 text-xs">
{JSON.stringify(entry.metadata)}
</p>
)}
</div>
</div>
))}
</div>
)}
</div>
</div>
</div>
);
}