Ops-dashboard/app/audit/[flow_run_id]/page.tsx

125 lines
4.9 KiB
TypeScript

import Link from 'next/link'
import { notFound, redirect } from 'next/navigation'
import { getCurrentUser } from '@/lib/session'
import { prisma } from '@/lib/prisma'
export const dynamic = 'force-dynamic'
type Props = {
params: Promise<{ flow_run_id: string }>
}
const STATUS_STYLES: Record<string, string> = {
pending: 'bg-zinc-100 text-zinc-600 dark:bg-zinc-800 dark:text-zinc-400',
running: 'bg-amber-100 text-amber-700 dark:bg-amber-900/30 dark:text-amber-400',
success: 'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400',
failed: 'bg-red-100 text-red-700 dark:bg-red-900/30 dark:text-red-400',
cancelled: 'bg-zinc-100 text-zinc-600 dark:bg-zinc-800 dark:text-zinc-400',
}
export default async function AuditDetailPage({ params }: Props) {
const user = await getCurrentUser()
if (!user) redirect('/login')
const { flow_run_id } = await params
const run = await prisma.flowRun.findUnique({
where: { id: flow_run_id },
include: { steps: { orderBy: { step_index: 'asc' } } },
})
if (!run || run.user_id !== user.id) notFound()
const durationMs =
run.ended_at && run.started_at
? run.ended_at.getTime() - run.started_at.getTime()
: null
return (
<div className="min-h-screen bg-background p-6">
<div className="mx-auto max-w-4xl space-y-6">
<div className="flex items-center gap-3">
<Link href="/audit" className="text-sm text-muted-foreground hover:text-foreground">
Audit Log
</Link>
<span className="text-muted-foreground">/</span>
<h1 className="text-xl font-semibold tracking-tight font-mono">{run.flow_key}</h1>
</div>
<div className="rounded-lg border border-border p-4 space-y-3 text-sm">
<div className="grid grid-cols-2 sm:grid-cols-4 gap-4">
<div>
<div className="text-xs text-muted-foreground mb-1">Status</div>
<span
className={
'inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium ' +
(STATUS_STYLES[run.status] ?? '')
}
>
{run.status}
</span>
</div>
<div>
<div className="text-xs text-muted-foreground mb-1">Exit code</div>
<span className="font-mono text-xs">{run.exit_code != null ? run.exit_code : '—'}</span>
</div>
<div>
<div className="text-xs text-muted-foreground mb-1">Started</div>
<span className="text-xs">{run.started_at.toLocaleString()}</span>
</div>
<div>
<div className="text-xs text-muted-foreground mb-1">Duration</div>
<span className="text-xs">{durationMs != null ? `${(durationMs / 1000).toFixed(1)}s` : '—'}</span>
</div>
</div>
</div>
{run.steps.map((step) => {
const args = step.args_json ? (JSON.parse(step.args_json) as string[]) : []
return (
<div key={step.id} className="space-y-3">
<div className="flex items-center gap-2">
<span className="text-xs text-muted-foreground">Step {step.step_index + 1}</span>
<span className="font-mono text-sm font-medium">{step.command_key}</span>
{args.length > 0 && (
<span className="font-mono text-xs text-muted-foreground">{args.join(' ')}</span>
)}
</div>
{(step.stdout || step.stderr) && (
<div className="rounded-lg border border-border bg-zinc-950 font-mono text-xs overflow-hidden">
<div className="max-h-96 overflow-y-auto p-3 space-y-0">
{step.stdout && (
<pre className="whitespace-pre-wrap break-all leading-5 text-zinc-100">
{step.stdout}
</pre>
)}
{step.stderr && (
<pre className="whitespace-pre-wrap break-all leading-5 text-red-400">
{step.stderr}
</pre>
)}
</div>
<div className="border-t border-border px-3 py-1.5 text-xs text-muted-foreground">
exit {step.exit_code != null ? step.exit_code : '—'}
{step.ended_at && step.started_at && (
<span className="ml-3">
{((step.ended_at.getTime() - step.started_at.getTime()) / 1000).toFixed(1)}s
</span>
)}
</div>
</div>
)}
{!step.stdout && !step.stderr && (
<div className="rounded-lg border border-border p-4 text-xs text-muted-foreground">
No output recorded.
</div>
)}
</div>
)
})}
</div>
</div>
)
}