File size: 7,563 Bytes
4ef3a0e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/*

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 } from 'react';
import {
  API,
  copy,
  showError,
  showNotice,
  getLogo,
  getSystemName,
} from '../../helpers';
import { useSearchParams, Link } from 'react-router-dom';
import { Button, Card, Form, Typography, Banner } from '@douyinfe/semi-ui';
import { IconMail, IconLock, IconCopy } from '@douyinfe/semi-icons';
import { useTranslation } from 'react-i18next';

const { Text, Title } = Typography;

const PasswordResetConfirm = () => {
  const { t } = useTranslation();
  const [inputs, setInputs] = useState({
    email: '',
    token: '',
  });
  const { email, token } = inputs;
  const isValidResetLink = email && token;

  const [loading, setLoading] = useState(false);
  const [disableButton, setDisableButton] = useState(false);
  const [countdown, setCountdown] = useState(30);
  const [newPassword, setNewPassword] = useState('');
  const [searchParams, setSearchParams] = useSearchParams();
  const [formApi, setFormApi] = useState(null);

  const logo = getLogo();
  const systemName = getSystemName();

  useEffect(() => {
    let token = searchParams.get('token');
    let email = searchParams.get('email');
    setInputs({
      token: token || '',
      email: email || '',
    });
    if (formApi) {
      formApi.setValues({
        email: email || '',
        newPassword: newPassword || '',
      });
    }
  }, [searchParams, newPassword, formApi]);

  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);
  }, [disableButton, countdown]);

  async function handleSubmit(e) {
    if (!email || !token) {
      showError(t('无效的重置链接,请重新发起密码重置请求'));
      return;
    }
    setDisableButton(true);
    setLoading(true);
    const res = await API.post(`/api/user/reset`, {
      email,
      token,
    });
    const { success, message } = res.data;
    if (success) {
      let password = res.data.data;
      setNewPassword(password);
      await copy(password);
      showNotice(`${t('密码已重置并已复制到剪贴板:')} ${password}`);
    } else {
      showError(message);
    }
    setLoading(false);
  }

  return (
    <div className='relative overflow-hidden bg-gray-100 flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8'>

      {/* 背景模糊晕染球 */}

      <div

        className='blur-ball blur-ball-indigo'

        style={{ top: '-80px', right: '-80px', transform: 'none' }}

      />

      <div

        className='blur-ball blur-ball-teal'

        style={{ top: '50%', left: '-120px' }}

      />

      <div className='w-full max-w-sm mt-[60px]'>

        <div className='flex flex-col items-center'>

          <div className='w-full max-w-md'>

            <div className='flex items-center justify-center mb-6 gap-2'>

              <img src={logo} alt='Logo' className='h-10 rounded-full' />

              <Title heading={3} className='!text-gray-800'>

                {systemName}

              </Title>

            </div>



            <Card className='border-0 !rounded-2xl overflow-hidden'>

              <div className='flex justify-center pt-6 pb-2'>

                <Title heading={3} className='text-gray-800 dark:text-gray-200'>

                  {t('密码重置确认')}

                </Title>

              </div>

              <div className='px-2 py-8'>

                {!isValidResetLink && (

                  <Banner

                    type='danger'

                    description={t('无效的重置链接请重新发起密码重置请求')}

                    className='mb-4 !rounded-lg'

                    closeIcon={null}

                  />

                )}

                <Form

                  getFormApi={(api) => setFormApi(api)}

                  initValues={{

                    email: email || '',

                    newPassword: newPassword || '',

                  }}

                  className='space-y-4'

                >

                  <Form.Input

                    field='email'

                    label={t('邮箱')}

                    name='email'

                    disabled={true}

                    prefix={<IconMail />}

                    placeholder={email ? '' : t('等待获取邮箱信息...')}

                  />



                  {newPassword && (

                    <Form.Input

                      field='newPassword'

                      label={t('新密码')}

                      name='newPassword'

                      disabled={true}

                      prefix={<IconLock />}

                      suffix={

                        <Button

                          icon={<IconCopy />}

                          type='tertiary'

                          theme='borderless'

                          onClick={async () => {

                            await copy(newPassword);

                            showNotice(

                              `${t('密码已复制到剪贴板:')} ${newPassword}`,

                            );

                          }}

                        >

                          {t('复制')}

                        </Button>

                      }

                    />

                  )}



                  <div className='space-y-2 pt-2'>

                    <Button

                      theme='solid'

                      className='w-full !rounded-full'

                      type='primary'

                      htmlType='submit'

                      onClick={handleSubmit}

                      loading={loading}

                      disabled={

                        disableButton || newPassword || !isValidResetLink

                      }

                    >

                      {newPassword ? t('密码重置完成') : t('确认重置密码')}

                    </Button>

                  </div>

                </Form>



                <div className='mt-6 text-center text-sm'>

                  <Text>

                    <Link

                      to='/login'

                      className='text-blue-600 hover:text-blue-800 font-medium'

                    >

                      {t('返回登录')}

                    </Link>

                  </Text>

                </div>

              </div>

            </Card>

          </div>

        </div>

      </div>

    </div>
  );
};

export default PasswordResetConfirm;