| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- import React from 'react';
- import { AlertCircle, X } from 'lucide-react';
- export interface ConfirmDialogProps {
- isOpen: boolean;
- title?: string;
- message: string;
- confirmText?: string;
- cancelText?: string;
- danger?: boolean;
- onConfirm: () => void;
- onCancel: () => void;
- }
- const ConfirmDialog: React.FC<ConfirmDialogProps> = ({
- isOpen,
- title = '确认操作',
- message,
- confirmText = '确定',
- cancelText = '取消',
- danger = false,
- onConfirm,
- onCancel,
- }) => {
- if (!isOpen) return null;
- return (
- <div className="fixed inset-0 z-50 flex items-center justify-center">
- {/* 背景遮罩 */}
- <div
- className="absolute inset-0 bg-black/50 backdrop-blur-sm"
- onClick={onCancel}
- />
-
- {/* 对话框 */}
- <div className="relative bg-white rounded-2xl shadow-2xl max-w-md w-full mx-4 animate-in fade-in zoom-in duration-200">
- {/* 关闭按钮 */}
- <button
- onClick={onCancel}
- className="absolute top-4 right-4 text-gray-400 hover:text-gray-600 transition-colors"
- aria-label="关闭"
- >
- <X className="w-5 h-5" />
- </button>
- {/* 内容 */}
- <div className="p-6">
- <div className="flex items-start space-x-4">
- <div className={`flex-shrink-0 w-10 h-10 rounded-full flex items-center justify-center ${
- danger ? 'bg-red-100' : 'bg-blue-100'
- }`}>
- <AlertCircle className={`w-6 h-6 ${danger ? 'text-red-600' : 'text-blue-600'}`} />
- </div>
-
- <div className="flex-1 pt-1">
- <h3 className="text-lg font-semibold text-gray-900 mb-2">
- {title}
- </h3>
- <p className="text-sm text-gray-600 leading-relaxed whitespace-pre-wrap">
- {message}
- </p>
- </div>
- </div>
- </div>
- {/* 按钮 */}
- <div className="px-6 pb-6 flex items-center justify-end space-x-3">
- <button
- onClick={onCancel}
- className="px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 rounded-lg hover:bg-gray-50 transition-colors"
- >
- {cancelText}
- </button>
- <button
- onClick={onConfirm}
- className={`px-4 py-2 text-sm font-medium text-white rounded-lg transition-colors ${
- danger
- ? 'bg-red-600 hover:bg-red-700'
- : 'bg-blue-600 hover:bg-blue-700'
- }`}
- >
- {confirmText}
- </button>
- </div>
- </div>
- </div>
- );
- };
- export default ConfirmDialog;
|