Ops-dashboard/components/ConfirmDialog.tsx

62 lines
1.9 KiB
TypeScript

'use client'
type Props = {
open: boolean
title?: string
commandPreview: string
onConfirm: () => void
onCancel: () => void
loading?: boolean
}
export default function ConfirmDialog({
open,
title = 'Confirm action',
commandPreview,
onConfirm,
onCancel,
loading = false,
}: Props) {
if (!open) return null
return (
<div className="fixed inset-0 z-50 flex items-center justify-center">
<div
className="absolute inset-0 bg-black/50"
onClick={onCancel}
aria-hidden="true"
/>
<div className="relative z-10 w-full max-w-lg rounded-xl border border-border bg-background p-6 shadow-lg">
<h2 className="text-base font-semibold tracking-tight">{title}</h2>
<p className="mt-1 text-sm text-muted-foreground">
The following command will be executed on the server:
</p>
<pre className="mt-3 overflow-x-auto rounded-lg border border-border bg-muted/50 px-4 py-3 font-mono text-xs text-foreground select-all">
{commandPreview}
</pre>
<p className="mt-3 text-xs text-muted-foreground">
This action cannot be undone. Review the command above before confirming.
</p>
<div className="mt-5 flex justify-end gap-3">
<button
onClick={onCancel}
disabled={loading}
className="rounded-lg border border-border px-4 py-2 text-sm hover:bg-muted/50 disabled:opacity-50 transition-colors"
>
Cancel
</button>
<button
onClick={onConfirm}
disabled={loading}
className="rounded-lg bg-destructive/10 border border-destructive/30 px-4 py-2 text-sm font-medium text-destructive hover:bg-destructive/20 disabled:opacity-50 transition-colors"
>
{loading ? 'Running…' : 'Confirm'}
</button>
</div>
</div>
</div>
)
}