2023-11-21 16:35:51 +08:00
|
|
|
|
import React, {useContext, useEffect, useState} from 'react';
|
|
|
|
|
|
import {Link, useNavigate} from 'react-router-dom';
|
|
|
|
|
|
import {API, copy, isRoot, showError, showInfo, showNotice, showSuccess} from '../helpers';
|
2023-04-22 20:39:27 +08:00
|
|
|
|
import Turnstile from 'react-turnstile';
|
2023-11-21 16:35:51 +08:00
|
|
|
|
import {UserContext} from '../context/User';
|
|
|
|
|
|
import {onGitHubOAuthClicked} from './utils';
|
|
|
|
|
|
import {
|
|
|
|
|
|
Avatar, Banner,
|
|
|
|
|
|
Button,
|
|
|
|
|
|
Card,
|
|
|
|
|
|
Descriptions,
|
2023-12-11 19:52:41 +08:00
|
|
|
|
Divider, Image,
|
2023-11-21 16:35:51 +08:00
|
|
|
|
Input, InputNumber,
|
|
|
|
|
|
Layout,
|
|
|
|
|
|
Modal,
|
|
|
|
|
|
Space,
|
|
|
|
|
|
Tag,
|
|
|
|
|
|
Typography
|
|
|
|
|
|
} from "@douyinfe/semi-ui";
|
|
|
|
|
|
import {getQuotaPerUnit, renderQuota, renderQuotaWithPrompt, stringToColor} from "../helpers/render";
|
|
|
|
|
|
import EditToken from "../pages/Token/EditToken";
|
|
|
|
|
|
import EditUser from "../pages/User/EditUser";
|
2023-04-22 20:39:27 +08:00
|
|
|
|
|
|
|
|
|
|
const PersonalSetting = () => {
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const [userState, userDispatch] = useContext(UserContext);
|
|
|
|
|
|
let navigate = useNavigate();
|
2023-07-23 13:37:32 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const [inputs, setInputs] = useState({
|
|
|
|
|
|
wechat_verification_code: '',
|
|
|
|
|
|
email_verification_code: '',
|
|
|
|
|
|
email: '',
|
|
|
|
|
|
self_account_deletion_confirmation: ''
|
|
|
|
|
|
});
|
|
|
|
|
|
const [status, setStatus] = useState({});
|
|
|
|
|
|
const [showWeChatBindModal, setShowWeChatBindModal] = useState(false);
|
|
|
|
|
|
const [showEmailBindModal, setShowEmailBindModal] = useState(false);
|
|
|
|
|
|
const [showAccountDeleteModal, setShowAccountDeleteModal] = useState(false);
|
|
|
|
|
|
const [turnstileEnabled, setTurnstileEnabled] = useState(false);
|
|
|
|
|
|
const [turnstileSiteKey, setTurnstileSiteKey] = useState('');
|
|
|
|
|
|
const [turnstileToken, setTurnstileToken] = useState('');
|
|
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
|
|
const [disableButton, setDisableButton] = useState(false);
|
|
|
|
|
|
const [countdown, setCountdown] = useState(30);
|
|
|
|
|
|
const [affLink, setAffLink] = useState("");
|
|
|
|
|
|
const [systemToken, setSystemToken] = useState("");
|
|
|
|
|
|
const [models, setModels] = useState([]);
|
|
|
|
|
|
const [openTransfer, setOpenTransfer] = useState(false);
|
|
|
|
|
|
const [transferAmount, setTransferAmount] = useState(0);
|
2023-04-22 20:39:27 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
// let user = localStorage.getItem('user');
|
|
|
|
|
|
// if (user) {
|
|
|
|
|
|
// userDispatch({ type: 'login', payload: user });
|
|
|
|
|
|
// }
|
|
|
|
|
|
// console.log(localStorage.getItem('user'))
|
2023-04-22 20:39:27 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
let status = localStorage.getItem('status');
|
|
|
|
|
|
if (status) {
|
|
|
|
|
|
status = JSON.parse(status);
|
|
|
|
|
|
setStatus(status);
|
|
|
|
|
|
if (status.turnstile_check) {
|
|
|
|
|
|
setTurnstileEnabled(true);
|
|
|
|
|
|
setTurnstileSiteKey(status.turnstile_site_key);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
getUserData().then(
|
|
|
|
|
|
(res) => {
|
|
|
|
|
|
console.log(userState)
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
loadModels().then();
|
|
|
|
|
|
getAffLink().then();
|
|
|
|
|
|
setTransferAmount(getQuotaPerUnit())
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
let countdownInterval = null;
|
|
|
|
|
|
if (disableButton && countdown > 0) {
|
|
|
|
|
|
countdownInterval = setInterval(() => {
|
|
|
|
|
|
setCountdown(countdown - 1);
|
|
|
|
|
|
}, 1000);
|
|
|
|
|
|
} else if (countdown === 0) {
|
|
|
|
|
|
setDisableButton(false);
|
|
|
|
|
|
setCountdown(30);
|
|
|
|
|
|
}
|
|
|
|
|
|
return () => clearInterval(countdownInterval); // Clean up on unmount
|
|
|
|
|
|
}, [disableButton, countdown]);
|
|
|
|
|
|
|
|
|
|
|
|
const handleInputChange = (name, value) => {
|
|
|
|
|
|
setInputs((inputs) => ({...inputs, [name]: value}));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const generateAccessToken = async () => {
|
|
|
|
|
|
const res = await API.get('/api/user/token');
|
|
|
|
|
|
const {success, message, data} = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
setSystemToken(data);
|
|
|
|
|
|
await copy(data);
|
|
|
|
|
|
showSuccess(`令牌已重置并已复制到剪贴板`);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2023-07-23 13:25:28 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const getAffLink = async () => {
|
|
|
|
|
|
const res = await API.get('/api/user/aff');
|
|
|
|
|
|
const {success, message, data} = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
let link = `${window.location.origin}/register?aff=${data}`;
|
|
|
|
|
|
setAffLink(link);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2023-04-22 20:39:27 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const getUserData = async () => {
|
|
|
|
|
|
let res = await API.get(`/api/user/self`);
|
|
|
|
|
|
const {success, message, data} = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
userDispatch({type: 'login', payload: data});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
2023-04-26 20:54:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const loadModels = async () => {
|
|
|
|
|
|
let res = await API.get(`/api/user/models`);
|
|
|
|
|
|
const {success, message, data} = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
setModels(data);
|
|
|
|
|
|
console.log(data)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
2023-06-17 18:12:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const handleAffLinkClick = async (e) => {
|
|
|
|
|
|
e.target.select();
|
|
|
|
|
|
await copy(e.target.value);
|
|
|
|
|
|
showSuccess(`邀请链接已复制到剪切板`);
|
|
|
|
|
|
};
|
2023-08-06 22:02:58 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const handleSystemTokenClick = async (e) => {
|
|
|
|
|
|
e.target.select();
|
|
|
|
|
|
await copy(e.target.value);
|
|
|
|
|
|
showSuccess(`系统令牌已复制到剪切板`);
|
|
|
|
|
|
};
|
2023-08-06 22:02:58 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const deleteAccount = async () => {
|
|
|
|
|
|
if (inputs.self_account_deletion_confirmation !== userState.user.username) {
|
|
|
|
|
|
showError('请输入你的账户名以确认删除!');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2023-07-23 13:37:32 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const res = await API.delete('/api/user/self');
|
|
|
|
|
|
const {success, message} = res.data;
|
2023-07-23 13:37:32 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
if (success) {
|
|
|
|
|
|
showSuccess('账户已删除!');
|
|
|
|
|
|
await API.get('/api/user/logout');
|
|
|
|
|
|
userDispatch({type: 'logout'});
|
|
|
|
|
|
localStorage.removeItem('user');
|
|
|
|
|
|
navigate('/login');
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2023-07-23 13:37:32 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const bindWeChat = async () => {
|
|
|
|
|
|
if (inputs.wechat_verification_code === '') return;
|
|
|
|
|
|
const res = await API.get(
|
|
|
|
|
|
`/api/oauth/wechat/bind?code=${inputs.wechat_verification_code}`
|
|
|
|
|
|
);
|
|
|
|
|
|
const {success, message} = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
showSuccess('微信账户绑定成功!');
|
|
|
|
|
|
setShowWeChatBindModal(false);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2023-04-22 20:39:27 +08:00
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const transfer = async () => {
|
|
|
|
|
|
if (transferAmount < getQuotaPerUnit()) {
|
|
|
|
|
|
showError('划转金额最低为' + renderQuota(getQuotaPerUnit()));
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
const res = await API.post(
|
|
|
|
|
|
`/api/user/aff_transfer`,
|
|
|
|
|
|
{
|
|
|
|
|
|
quota: transferAmount
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
const {success, message} = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
showSuccess(message);
|
|
|
|
|
|
setOpenTransfer(false);
|
|
|
|
|
|
getUserData().then();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const sendVerificationCode = async () => {
|
|
|
|
|
|
if (inputs.email === '') {
|
|
|
|
|
|
showError('请输入邮箱!');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
setDisableButton(true);
|
|
|
|
|
|
if (turnstileEnabled && turnstileToken === '') {
|
|
|
|
|
|
showInfo('请稍后几秒重试,Turnstile 正在检查用户环境!');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
setLoading(true);
|
|
|
|
|
|
const res = await API.get(
|
|
|
|
|
|
`/api/verification?email=${inputs.email}&turnstile=${turnstileToken}`
|
|
|
|
|
|
);
|
|
|
|
|
|
const {success, message} = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
showSuccess('验证码发送成功,请检查邮箱!');
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
setLoading(false);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const bindEmail = async () => {
|
|
|
|
|
|
if (inputs.email_verification_code === '') {
|
|
|
|
|
|
showError('请输入邮箱验证码!');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
setLoading(true);
|
|
|
|
|
|
const res = await API.get(
|
|
|
|
|
|
`/api/oauth/email/bind?email=${inputs.email}&code=${inputs.email_verification_code}`
|
|
|
|
|
|
);
|
|
|
|
|
|
const {success, message} = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
showSuccess('邮箱账户绑定成功!');
|
|
|
|
|
|
setShowEmailBindModal(false);
|
|
|
|
|
|
userState.user.email = inputs.email;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
setLoading(false);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const getUsername = () => {
|
|
|
|
|
|
if (userState.user) {
|
|
|
|
|
|
return userState.user.username;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return 'null';
|
|
|
|
|
|
}
|
2023-04-22 20:39:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
const handleCancel = () => {
|
|
|
|
|
|
setOpenTransfer(false);
|
2023-04-22 20:39:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-11-27 20:12:10 +08:00
|
|
|
|
const copyText = async (text) => {
|
|
|
|
|
|
if (await copy(text)) {
|
|
|
|
|
|
showSuccess('已复制:' + text);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// setSearchKeyword(text);
|
|
|
|
|
|
Modal.error({title: '无法复制到剪贴板,请手动复制', content: text});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-11-21 16:35:51 +08:00
|
|
|
|
return (
|
2023-12-11 19:52:41 +08:00
|
|
|
|
<div>
|
2023-11-21 16:35:51 +08:00
|
|
|
|
<Layout>
|
|
|
|
|
|
<Layout.Content>
|
|
|
|
|
|
<Modal
|
|
|
|
|
|
title="请输入要划转的数量"
|
|
|
|
|
|
visible={openTransfer}
|
|
|
|
|
|
onOk={transfer}
|
|
|
|
|
|
onCancel={handleCancel}
|
|
|
|
|
|
maskClosable={false}
|
|
|
|
|
|
size={'small'}
|
|
|
|
|
|
centered={true}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div style={{marginTop: 20}}>
|
|
|
|
|
|
<Typography.Text>{`可用额度${renderQuotaWithPrompt(userState?.user?.aff_quota)}`}</Typography.Text>
|
|
|
|
|
|
<Input style={{marginTop: 5}} value={userState?.user?.aff_quota} disabled={true}></Input>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style={{marginTop: 20}}>
|
|
|
|
|
|
<Typography.Text>{`划转额度${renderQuotaWithPrompt(transferAmount)} 最低` + renderQuota(getQuotaPerUnit())}</Typography.Text>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<InputNumber min={0} style={{marginTop: 5}} value={transferAmount} onChange={(value)=>setTransferAmount(value)} disabled={false}></InputNumber>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Modal>
|
|
|
|
|
|
<div style={{marginTop: 20}}>
|
|
|
|
|
|
<Card
|
|
|
|
|
|
title={
|
|
|
|
|
|
<Card.Meta
|
|
|
|
|
|
avatar={<Avatar size="default" color={stringToColor(getUsername())}
|
|
|
|
|
|
style={{marginRight: 4}}>
|
|
|
|
|
|
{typeof getUsername() === 'string' && getUsername().slice(0, 1)}
|
|
|
|
|
|
</Avatar>}
|
|
|
|
|
|
title={<Typography.Text>{getUsername()}</Typography.Text>}
|
|
|
|
|
|
description={isRoot()?<Tag color="red">管理员</Tag>:<Tag color="blue">普通用户</Tag>}
|
|
|
|
|
|
></Card.Meta>
|
|
|
|
|
|
}
|
|
|
|
|
|
headerExtraContent={
|
|
|
|
|
|
<>
|
|
|
|
|
|
<Space vertical align="start">
|
|
|
|
|
|
<Tag color="green">{'ID: ' + userState?.user?.id}</Tag>
|
|
|
|
|
|
<Tag color="blue">{userState?.user?.group}</Tag>
|
|
|
|
|
|
</Space>
|
|
|
|
|
|
</>
|
|
|
|
|
|
}
|
|
|
|
|
|
footer={
|
|
|
|
|
|
<Descriptions row>
|
|
|
|
|
|
<Descriptions.Item itemKey="当前余额">{renderQuota(userState?.user?.quota)}</Descriptions.Item>
|
|
|
|
|
|
<Descriptions.Item itemKey="历史消耗">{renderQuota(userState?.user?.used_quota)}</Descriptions.Item>
|
|
|
|
|
|
<Descriptions.Item itemKey="请求次数">{userState.user?.request_count}</Descriptions.Item>
|
|
|
|
|
|
</Descriptions>
|
|
|
|
|
|
}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Typography.Title heading={6}>可用模型</Typography.Title>
|
|
|
|
|
|
<div style={{marginTop: 10}}>
|
|
|
|
|
|
<Space wrap>
|
|
|
|
|
|
{models.map((model) => (
|
2023-11-27 20:12:10 +08:00
|
|
|
|
<Tag key={model} color="cyan" onClick={() => {
|
|
|
|
|
|
copyText(model)
|
|
|
|
|
|
}}>
|
2023-11-21 16:35:51 +08:00
|
|
|
|
{model}
|
|
|
|
|
|
</Tag>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Space>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
<Card
|
|
|
|
|
|
footer={
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Typography.Text>邀请链接</Typography.Text>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
style={{marginTop: 10}}
|
|
|
|
|
|
value={affLink}
|
|
|
|
|
|
onClick={handleAffLinkClick}
|
|
|
|
|
|
readOnly
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Typography.Title heading={6}>邀请信息</Typography.Title>
|
|
|
|
|
|
<div style={{marginTop: 10}}>
|
|
|
|
|
|
<Descriptions row>
|
|
|
|
|
|
<Descriptions.Item itemKey="待使用收益">
|
|
|
|
|
|
<span style={{color: 'rgba(var(--semi-red-5), 1)'}}>
|
|
|
|
|
|
{
|
|
|
|
|
|
renderQuota(userState?.user?.aff_quota)
|
|
|
|
|
|
}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<Button type={'secondary'} onClick={()=>setOpenTransfer(true)} size={'small'} style={{marginLeft: 10}}>划转</Button>
|
|
|
|
|
|
</Descriptions.Item>
|
|
|
|
|
|
<Descriptions.Item itemKey="总收益">{renderQuota(userState?.user?.aff_history_quota)}</Descriptions.Item>
|
|
|
|
|
|
<Descriptions.Item itemKey="邀请人数">{userState?.user?.aff_count}</Descriptions.Item>
|
|
|
|
|
|
</Descriptions>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
<Card>
|
|
|
|
|
|
<Typography.Title heading={6}>个人信息</Typography.Title>
|
|
|
|
|
|
<div style={{marginTop: 20}}>
|
|
|
|
|
|
<Typography.Text strong>邮箱</Typography.Text>
|
|
|
|
|
|
<div style={{display: 'flex', justifyContent: 'space-between'}}>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
value={userState.user && userState.user.email !== ''?userState.user.email:'未绑定'}
|
|
|
|
|
|
readonly={true}
|
|
|
|
|
|
></Input>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Button onClick={()=>{setShowEmailBindModal(true)}} disabled={userState.user && userState.user.email !== ''}>绑定邮箱</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style={{marginTop: 10}}>
|
|
|
|
|
|
<Typography.Text strong>微信</Typography.Text>
|
|
|
|
|
|
<div style={{display: 'flex', justifyContent: 'space-between'}}>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
value={userState.user && userState.user.wechat_id !== ''?'已绑定':'未绑定'}
|
|
|
|
|
|
readonly={true}
|
|
|
|
|
|
></Input>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Button disabled={(userState.user && userState.user.wechat_id !== '') || !status.wechat_login}>
|
|
|
|
|
|
{
|
|
|
|
|
|
status.wechat_login?'绑定':'未启用'
|
|
|
|
|
|
}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style={{marginTop: 10}}>
|
|
|
|
|
|
<Typography.Text strong>GitHub</Typography.Text>
|
|
|
|
|
|
<div style={{display: 'flex', justifyContent: 'space-between'}}>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
value={userState.user && userState.user.github_id !== ''?userState.user.github_id:'未绑定'}
|
|
|
|
|
|
readonly={true}
|
|
|
|
|
|
></Input>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
onClick={() => {onGitHubOAuthClicked(status.github_client_id)}}
|
|
|
|
|
|
disabled={(userState.user && userState.user.github_id !== '') || !status.github_oauth}
|
|
|
|
|
|
>
|
|
|
|
|
|
{
|
|
|
|
|
|
status.github_oauth?'绑定':'未启用'
|
|
|
|
|
|
}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div style={{marginTop: 10}}>
|
|
|
|
|
|
<Space>
|
|
|
|
|
|
<Button onClick={generateAccessToken}>生成系统访问令牌</Button>
|
|
|
|
|
|
<Button onClick={() => {
|
|
|
|
|
|
setShowAccountDeleteModal(true);
|
|
|
|
|
|
}}>删除个人账户</Button>
|
|
|
|
|
|
</Space>
|
|
|
|
|
|
|
|
|
|
|
|
{systemToken && (
|
2023-12-11 19:52:41 +08:00
|
|
|
|
<Input
|
2023-11-21 16:35:51 +08:00
|
|
|
|
readOnly
|
|
|
|
|
|
value={systemToken}
|
|
|
|
|
|
onClick={handleSystemTokenClick}
|
|
|
|
|
|
style={{marginTop: '10px'}}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
{
|
|
|
|
|
|
status.wechat_login && (
|
|
|
|
|
|
<Button
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
setShowWeChatBindModal(true);
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
绑定微信账号
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
<Modal
|
|
|
|
|
|
onCancel={() => setShowWeChatBindModal(false)}
|
|
|
|
|
|
// onOpen={() => setShowWeChatBindModal(true)}
|
|
|
|
|
|
visible={showWeChatBindModal}
|
|
|
|
|
|
size={'mini'}
|
|
|
|
|
|
>
|
2023-12-11 19:52:41 +08:00
|
|
|
|
<Image src={status.wechat_qrcode}/>
|
2023-11-21 16:35:51 +08:00
|
|
|
|
<div style={{textAlign: 'center'}}>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
微信扫码关注公众号,输入「验证码」获取验证码(三分钟内有效)
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
2023-12-11 19:52:41 +08:00
|
|
|
|
<Input
|
|
|
|
|
|
placeholder='验证码'
|
|
|
|
|
|
name='wechat_verification_code'
|
|
|
|
|
|
value={inputs.wechat_verification_code}
|
|
|
|
|
|
onChange={(v)=>handleInputChange('wechat_verification_code', v)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<Button color='' fluid size='large' onClick={bindWeChat}>
|
|
|
|
|
|
绑定
|
|
|
|
|
|
</Button>
|
2023-11-21 16:35:51 +08:00
|
|
|
|
</Modal>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
<Modal
|
|
|
|
|
|
onCancel={() => setShowEmailBindModal(false)}
|
|
|
|
|
|
// onOpen={() => setShowEmailBindModal(true)}
|
|
|
|
|
|
onOk={bindEmail}
|
|
|
|
|
|
visible={showEmailBindModal}
|
|
|
|
|
|
size={'small'}
|
|
|
|
|
|
centered={true}
|
|
|
|
|
|
maskClosable={false}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Typography.Title heading={6}>绑定邮箱地址</Typography.Title>
|
|
|
|
|
|
<div style={{marginTop: 20, display: 'flex', justifyContent: 'space-between'}}>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
fluid
|
|
|
|
|
|
placeholder='输入邮箱地址'
|
|
|
|
|
|
onChange={(value)=>handleInputChange('email', value)}
|
|
|
|
|
|
name='email'
|
|
|
|
|
|
type='email'
|
|
|
|
|
|
/>
|
|
|
|
|
|
<Button onClick={sendVerificationCode}
|
|
|
|
|
|
disabled={disableButton || loading}>
|
|
|
|
|
|
{disableButton ? `重新发送(${countdown})` : '获取验证码'}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style={{marginTop: 10}}>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
fluid
|
|
|
|
|
|
placeholder='验证码'
|
|
|
|
|
|
name='email_verification_code'
|
|
|
|
|
|
value={inputs.email_verification_code}
|
|
|
|
|
|
onChange={(value)=>handleInputChange('email_verification_code', value)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{turnstileEnabled ? (
|
|
|
|
|
|
<Turnstile
|
|
|
|
|
|
sitekey={turnstileSiteKey}
|
|
|
|
|
|
onVerify={(token) => {
|
|
|
|
|
|
setTurnstileToken(token);
|
|
|
|
|
|
}}
|
|
|
|
|
|
/>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<></>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</Modal>
|
|
|
|
|
|
<Modal
|
|
|
|
|
|
onCancel={() => setShowAccountDeleteModal(false)}
|
|
|
|
|
|
visible={showAccountDeleteModal}
|
|
|
|
|
|
size={'small'}
|
|
|
|
|
|
centered={true}
|
|
|
|
|
|
onOk={deleteAccount}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div style={{marginTop: 20}}>
|
|
|
|
|
|
<Banner
|
|
|
|
|
|
type="danger"
|
|
|
|
|
|
description="您正在删除自己的帐户,将清空所有数据且不可恢复"
|
|
|
|
|
|
closeIcon={null}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style={{marginTop: 20}}>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
placeholder={`输入你的账户名 ${userState?.user?.username} 以确认删除`}
|
|
|
|
|
|
name='self_account_deletion_confirmation'
|
|
|
|
|
|
value={inputs.self_account_deletion_confirmation}
|
|
|
|
|
|
onChange={(value)=>handleInputChange('self_account_deletion_confirmation', value)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
{turnstileEnabled ? (
|
|
|
|
|
|
<Turnstile
|
|
|
|
|
|
sitekey={turnstileSiteKey}
|
|
|
|
|
|
onVerify={(token) => {
|
|
|
|
|
|
setTurnstileToken(token);
|
|
|
|
|
|
}}
|
|
|
|
|
|
/>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<></>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Modal>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</Layout.Content>
|
|
|
|
|
|
</Layout>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
2023-04-22 20:39:27 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export default PersonalSetting;
|