/* Copyright (C) 2025 QuantumNous This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . For commercial licensing, please contact support@quantumnous.com */ import React from 'react'; import { useTranslation } from 'react-i18next'; import { Modal, Button, Input, Typography } from '@douyinfe/semi-ui'; /** * 可复用的两步验证模态框组件 * @param {Object} props * @param {boolean} props.visible - 是否显示模态框 * @param {string} props.code - 验证码值 * @param {boolean} props.loading - 是否正在验证 * @param {Function} props.onCodeChange - 验证码变化回调 * @param {Function} props.onVerify - 验证回调 * @param {Function} props.onCancel - 取消回调 * @param {string} props.title - 模态框标题 * @param {string} props.description - 验证描述文本 * @param {string} props.placeholder - 输入框占位文本 */ const TwoFactorAuthModal = ({ visible, code, loading, onCodeChange, onVerify, onCancel, title, description, placeholder, }) => { const { t } = useTranslation(); const handleKeyDown = (e) => { if (e.key === 'Enter' && code && !loading) { onVerify(); } }; return (
{title || t('安全验证')} } visible={visible} onCancel={onCancel} footer={ <> } width={500} style={{ maxWidth: '90vw' }} >
{/* 安全提示 */}
{t('安全验证')} {description || t('为了保护账户安全,请验证您的两步验证码。')}
{/* 验证码输入 */}
{t('验证身份')} {t( '支持6位TOTP验证码或8位备用码,可到`个人设置-安全设置-两步验证设置`配置或查看。', )}
); }; export default TwoFactorAuthModal;