mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 13:00:39 +00:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import type { ComponentChildren } from 'preact';
|
|
import { t } from '@/lib/i18n';
|
|
|
|
interface ConfirmDialogProps {
|
|
open: boolean;
|
|
title: string;
|
|
message: string;
|
|
showIcon?: boolean;
|
|
confirmText?: string;
|
|
cancelText?: string;
|
|
danger?: boolean;
|
|
hideCancel?: boolean;
|
|
confirmDisabled?: boolean;
|
|
cancelDisabled?: boolean;
|
|
onConfirm: () => void;
|
|
onCancel: () => void;
|
|
children?: ComponentChildren;
|
|
afterActions?: ComponentChildren;
|
|
}
|
|
|
|
export default function ConfirmDialog(props: ConfirmDialogProps) {
|
|
if (!props.open) return null;
|
|
return (
|
|
<div className="dialog-mask">
|
|
<form
|
|
className="dialog-card"
|
|
onSubmit={(e) => {
|
|
e.preventDefault();
|
|
if (props.confirmDisabled) return;
|
|
props.onConfirm();
|
|
}}
|
|
>
|
|
<h3 className="dialog-title">{props.title}</h3>
|
|
<div className="dialog-message">{props.message}</div>
|
|
{props.children}
|
|
<button
|
|
type="submit"
|
|
className={`btn ${props.danger ? 'btn-danger' : 'btn-primary'} dialog-btn`}
|
|
disabled={props.confirmDisabled}
|
|
>
|
|
{props.confirmText || t('txt_yes')}
|
|
</button>
|
|
{!props.hideCancel && (
|
|
<button
|
|
type="button"
|
|
className="btn btn-secondary dialog-btn"
|
|
disabled={props.cancelDisabled}
|
|
onClick={() => {
|
|
if (props.cancelDisabled) return;
|
|
props.onCancel();
|
|
}}
|
|
>
|
|
{props.cancelText || t('txt_no')}
|
|
</button>
|
|
)}
|
|
{props.afterActions}
|
|
</form>
|
|
</div>
|
|
);
|
|
}
|