mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-11-12 03:13:41 +08:00
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
import { API } from 'utils/api';
|
|
import { useNavigate } from 'react-router';
|
|
import { showSuccess } from 'utils/common';
|
|
|
|
const useRegister = () => {
|
|
const navigate = useNavigate();
|
|
const register = async (input, turnstile) => {
|
|
try {
|
|
let affCode = localStorage.getItem('aff');
|
|
if (affCode) {
|
|
input = { ...input, aff_code: affCode };
|
|
}
|
|
const res = await API.post(`/api/user/register?turnstile=${turnstile}`, input);
|
|
const { success, message } = res.data;
|
|
if (success) {
|
|
showSuccess('注册成功!');
|
|
navigate('/login');
|
|
}
|
|
return { success, message };
|
|
} catch (err) {
|
|
// 请求失败,设置错误信息
|
|
return { success: false, message: '' };
|
|
}
|
|
};
|
|
|
|
const sendVerificationCode = async (email, turnstile) => {
|
|
try {
|
|
const res = await API.get(`/api/verification?email=${email}&turnstile=${turnstile}`);
|
|
const { success, message } = res.data;
|
|
if (success) {
|
|
showSuccess('验证码发送成功,请检查你的邮箱!');
|
|
}
|
|
return { success, message };
|
|
} catch (err) {
|
|
// 请求失败,设置错误信息
|
|
return { success: false, message: '' };
|
|
}
|
|
};
|
|
|
|
return { register, sendVerificationCode };
|
|
};
|
|
|
|
export default useRegister;
|