File size: 9,391 Bytes
4674012 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 |
/*
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 <https://www.gnu.org/licenses/>.
For commercial licensing, please contact support@quantumnous.com
*/
import React, { useEffect, useState, useRef } from 'react';
import { Card, Divider, Steps, Form } from '@douyinfe/semi-ui';
import { API, showError, showNotice } from '../../helpers';
import { useTranslation } from 'react-i18next';
import StepNavigation from './components/StepNavigation';
import DatabaseStep from './components/steps/DatabaseStep';
import AdminStep from './components/steps/AdminStep';
import UsageModeStep from './components/steps/UsageModeStep';
import CompleteStep from './components/steps/CompleteStep';
const SetupWizard = () => {
const { t } = useTranslation();
const [loading, setLoading] = useState(false);
const [setupStatus, setSetupStatus] = useState({
status: false,
root_init: false,
database_type: '',
});
const [currentStep, setCurrentStep] = useState(0);
const formRef = useRef(null);
const [formData, setFormData] = useState({
username: '',
password: '',
confirmPassword: '',
usageMode: 'external',
});
// 确保默认选中“对外运营模式”,并同步到表单
useEffect(() => {
if (formRef.current) {
formRef.current.setValue('usageMode', 'external');
}
}, []);
// 定义步骤内容
const steps = [
{
title: t('数据库检查'),
description: t('验证数据库连接状态'),
},
{
title: t('管理员账号'),
description: t('设置管理员登录信息'),
},
{
title: t('使用模式'),
description: t('选择系统运行模式'),
},
{
title: t('完成初始化'),
description: t('确认设置并完成初始化'),
},
];
useEffect(() => {
fetchSetupStatus();
}, []);
const fetchSetupStatus = async () => {
try {
const res = await API.get('/api/setup');
const { success, data } = res.data;
if (success) {
setSetupStatus(data);
// If setup is already completed, redirect to home
if (data.status) {
window.location.href = '/';
return;
}
// 设置当前步骤 - 默认从数据库检查开始
setCurrentStep(0);
} else {
showError(t('获取初始化状态失败'));
}
} catch (error) {
console.error('Failed to fetch setup status:', error);
showError(t('获取初始化状态失败'));
}
};
const handleUsageModeChange = (e) => {
const nextMode = e?.target?.value ?? e;
setFormData((prev) => ({ ...prev, usageMode: nextMode }));
// 同步到表单,便于 getValues() 拿到 usageMode
if (formRef.current) {
formRef.current.setValue('usageMode', nextMode);
}
};
const next = () => {
// 验证当前步骤是否可以继续
if (!canProceedToNext()) {
return;
}
const current = currentStep + 1;
setCurrentStep(current);
};
// 验证是否可以继续到下一步
const canProceedToNext = () => {
switch (currentStep) {
case 0: // 数据库检查步骤
return true; // 数据库检查总是可以继续
case 1: // 管理员账号步骤
if (setupStatus.root_init) {
return true; // 如果已经初始化,可以继续
}
// 检查必填字段
if (
!formData.username ||
!formData.password ||
!formData.confirmPassword
) {
showError(t('请填写完整的管理员账号信息'));
return false;
}
if (formData.password !== formData.confirmPassword) {
showError(t('两次输入的密码不一致'));
return false;
}
if (formData.password.length < 8) {
showError(t('密码长度至少为8个字符'));
return false;
}
return true;
case 2: // 使用模式步骤
if (!formData.usageMode) {
showError(t('请选择使用模式'));
return false;
}
return true;
default:
return true;
}
};
const prev = () => {
const current = currentStep - 1;
setCurrentStep(current);
};
const onSubmit = () => {
if (!formRef.current) {
console.error('Form reference is null');
showError(t('表单引用错误,请刷新页面重试'));
return;
}
const values = formRef.current.getValues();
// For root_init=false, validate admin username and password
if (!setupStatus.root_init) {
if (!values.username || !values.username.trim()) {
showError(t('请输入管理员用户名'));
return;
}
if (!values.password || values.password.length < 8) {
showError(t('密码长度至少为8个字符'));
return;
}
if (values.password !== values.confirmPassword) {
showError(t('两次输入的密码不一致'));
return;
}
}
// Prepare submission data
const formValues = { ...values };
const usageMode = values.usageMode;
formValues.SelfUseModeEnabled = usageMode === 'self';
formValues.DemoSiteEnabled = usageMode === 'demo';
// Remove usageMode as it's not needed by the backend
delete formValues.usageMode;
// 提交表单至后端
setLoading(true);
// Submit to backend
API.post('/api/setup', formValues)
.then((res) => {
const { success, message } = res.data;
if (success) {
showNotice(t('系统初始化成功,正在跳转...'));
setTimeout(() => {
window.location.reload();
}, 1500);
} else {
showError(message || t('初始化失败,请重试'));
}
})
.catch((error) => {
console.error('API error:', error);
showError(t('系统初始化失败,请重试'));
setLoading(false);
})
.finally(() => {
setLoading(false);
});
};
// 获取步骤内容
const getStepContent = (step) => {
switch (step) {
case 0:
return <DatabaseStep setupStatus={setupStatus} t={t} />;
case 1:
return (
<AdminStep
setupStatus={setupStatus}
formData={formData}
setFormData={setFormData}
formRef={formRef}
t={t}
/>
);
case 2:
return (
<UsageModeStep
formData={formData}
handleUsageModeChange={handleUsageModeChange}
t={t}
/>
);
case 3:
return (
<CompleteStep setupStatus={setupStatus} formData={formData} t={t} />
);
default:
return null;
}
};
const stepNavigationProps = {
currentStep,
steps,
prev,
next,
onSubmit,
loading,
t,
};
return (
<div className='min-h-screen flex items-center justify-center px-4'>
<div className='w-full max-w-4xl'>
<Card className='!rounded-2xl shadow-sm border-0'>
<div className='mb-4'>
<div className='text-xl font-semibold'>{t('系统初始化')}</div>
<div className='text-xs text-gray-600'>
{t('欢迎使用,请完成以下设置以开始使用系统')}
</div>
</div>
<div className='px-2 py-2'>
<Steps type='basic' current={currentStep}>
{steps.map((item, index) => (
<Steps.Step
key={item.title}
title={
<span className={currentStep === index ? 'shine-text' : ''}>
{item.title}
</span>
}
description={item.description}
/>
))}
</Steps>
</div>
<Divider margin='12px' />
{/* 表单容器 */}
<Form
getFormApi={(formApi) => {
formRef.current = formApi;
}}
initValues={formData}
>
{/* 步骤内容:保持所有字段挂载,仅隐藏非当前步骤 */}
<div className='steps-content'>
{[0, 1, 2, 3].map((idx) => (
<div
key={idx}
style={{ display: currentStep === idx ? 'block' : 'none' }}
>
{React.cloneElement(getStepContent(idx), {
...stepNavigationProps,
renderNavigationButtons: () => (
<StepNavigation {...stepNavigationProps} />
),
})}
</div>
))}
</div>
</Form>
</Card>
</div>
</div>
);
};
export default SetupWizard;
|