mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 13:00:39 +00:00
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import type { ComponentChildren } from 'preact';
|
|
|
|
interface ConfirmDialogProps {
|
|
open: boolean;
|
|
title: string;
|
|
message: string;
|
|
showIcon?: boolean;
|
|
confirmText?: string;
|
|
cancelText?: string;
|
|
danger?: boolean;
|
|
onConfirm: () => void;
|
|
onCancel: () => void;
|
|
children?: ComponentChildren;
|
|
}
|
|
|
|
export default function ConfirmDialog(props: ConfirmDialogProps) {
|
|
if (!props.open) return null;
|
|
return (
|
|
<div className="dialog-mask">
|
|
<div className="dialog-card">
|
|
<h3 className="dialog-title">{props.title}</h3>
|
|
<div className="dialog-message">{props.message}</div>
|
|
{props.children}
|
|
<button
|
|
type="button"
|
|
className={`btn ${props.danger ? 'btn-danger' : 'btn-primary'} dialog-btn`}
|
|
onClick={props.onConfirm}
|
|
>
|
|
{props.confirmText || 'Yes'}
|
|
</button>
|
|
<button type="button" className="btn btn-secondary dialog-btn" onClick={props.onCancel}>
|
|
{props.cancelText || 'No'}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|