| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- import React, { useEffect, useState } from 'react';
- import { Button, Divider, Form, Header, Image, Message, Modal } from 'semantic-ui-react';
- import { Link } from 'react-router-dom';
- import { API, copy, showError, showInfo, showNotice, showSuccess } from '../helpers';
- import Turnstile from 'react-turnstile';
- const PersonalSetting = () => {
- const [inputs, setInputs] = useState({
- wechat_verification_code: '',
- email_verification_code: '',
- email: '',
- });
- const [status, setStatus] = useState({});
- const [showWeChatBindModal, setShowWeChatBindModal] = useState(false);
- const [showEmailBindModal, setShowEmailBindModal] = useState(false);
- const [turnstileEnabled, setTurnstileEnabled] = useState(false);
- const [turnstileSiteKey, setTurnstileSiteKey] = useState('');
- const [turnstileToken, setTurnstileToken] = useState('');
- const [loading, setLoading] = useState(false);
- useEffect(() => {
- let status = localStorage.getItem('status');
- if (status) {
- status = JSON.parse(status);
- setStatus(status);
- if (status.turnstile_check) {
- setTurnstileEnabled(true);
- setTurnstileSiteKey(status.turnstile_site_key);
- }
- }
- }, []);
- const handleInputChange = (e, { 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) {
- await copy(data);
- showSuccess(`令牌已重置并已复制到剪贴板:${data}`);
- } else {
- showError(message);
- }
- };
- 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}`;
- await copy(link);
- showNotice(`邀请链接已复制到剪切板:${link}`);
- } else {
- showError(message);
- }
- };
- 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);
- }
- };
- const openGitHubOAuth = () => {
- window.open(
- `https://github.com/login/oauth/authorize?client_id=${status.github_client_id}&scope=user:email`
- );
- };
- const sendVerificationCode = async () => {
- if (inputs.email === '') return;
- 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 === '') 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);
- } else {
- showError(message);
- }
- setLoading(false);
- };
- return (
- <div style={{ lineHeight: '40px' }}>
- <Header as='h3'>通用设置</Header>
- <Message>
- 注意,此处生成的令牌用于系统管理,而非用于请求 OpenAI 相关的服务,请知悉。
- </Message>
- <Button as={Link} to={`/user/edit/`}>
- 更新个人信息
- </Button>
- <Button onClick={generateAccessToken}>生成系统访问令牌</Button>
- <Button onClick={getAffLink}>复制邀请链接</Button>
- <Divider />
- <Header as='h3'>账号绑定</Header>
- {
- status.wechat_login && (
- <Button
- onClick={() => {
- setShowWeChatBindModal(true);
- }}
- >
- 绑定微信账号
- </Button>
- )
- }
- <Modal
- onClose={() => setShowWeChatBindModal(false)}
- onOpen={() => setShowWeChatBindModal(true)}
- open={showWeChatBindModal}
- size={'mini'}
- >
- <Modal.Content>
- <Modal.Description>
- <Image src={status.wechat_qrcode} fluid />
- <div style={{ textAlign: 'center' }}>
- <p>
- 微信扫码关注公众号,输入「验证码」获取验证码(三分钟内有效)
- </p>
- </div>
- <Form size='large'>
- <Form.Input
- fluid
- placeholder='验证码'
- name='wechat_verification_code'
- value={inputs.wechat_verification_code}
- onChange={handleInputChange}
- />
- <Button color='' fluid size='large' onClick={bindWeChat}>
- 绑定
- </Button>
- </Form>
- </Modal.Description>
- </Modal.Content>
- </Modal>
- {
- status.github_oauth && (
- <Button onClick={openGitHubOAuth}>绑定 GitHub 账号</Button>
- )
- }
- <Button
- onClick={() => {
- setShowEmailBindModal(true);
- }}
- >
- 绑定邮箱地址
- </Button>
- <Modal
- onClose={() => setShowEmailBindModal(false)}
- onOpen={() => setShowEmailBindModal(true)}
- open={showEmailBindModal}
- size={'tiny'}
- style={{ maxWidth: '450px' }}
- >
- <Modal.Header>绑定邮箱地址</Modal.Header>
- <Modal.Content>
- <Modal.Description>
- <Form size='large'>
- <Form.Input
- fluid
- placeholder='输入邮箱地址'
- onChange={handleInputChange}
- name='email'
- type='email'
- action={
- <Button onClick={sendVerificationCode} disabled={loading}>
- 获取验证码
- </Button>
- }
- />
- <Form.Input
- fluid
- placeholder='验证码'
- name='email_verification_code'
- value={inputs.email_verification_code}
- onChange={handleInputChange}
- />
- {turnstileEnabled ? (
- <Turnstile
- sitekey={turnstileSiteKey}
- onVerify={(token) => {
- setTurnstileToken(token);
- }}
- />
- ) : (
- <></>
- )}
- <Button
- color=''
- fluid
- size='large'
- onClick={bindEmail}
- loading={loading}
- >
- 绑定
- </Button>
- </Form>
- </Modal.Description>
- </Modal.Content>
- </Modal>
- </div>
- );
- };
- export default PersonalSetting;
|