File size: 9,323 Bytes
4304c6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
'use client'
import { useState } from 'react'
import { useTranslation } from 'react-i18next'
import classNames from 'classnames'
import { useContext } from 'use-context-selector'
import Collapse from '../collapse'
import type { IItem } from '../collapse'
import s from './index.module.css'
import Modal from '@/app/components/base/modal'
import Button from '@/app/components/base/button'
import { updateUserProfile } from '@/service/common'
import { useAppContext } from '@/context/app-context'
import { ToastContext } from '@/app/components/base/toast'
import AppIcon from '@/app/components/base/app-icon'
import Avatar from '@/app/components/base/avatar'
import { IS_CE_EDITION } from '@/config'

const titleClassName = `

  text-sm font-medium text-gray-900

`
const descriptionClassName = `

  mt-1 text-xs font-normal text-gray-500

`
const inputClassName = `

  mt-2 w-full px-3 py-2 bg-gray-100 rounded

  text-sm font-normal text-gray-800

`

const validPassword = /^(?=.*[a-zA-Z])(?=.*\d).{8,}$/

export default function AccountPage() {
  const { t } = useTranslation()
  const { mutateUserProfile, userProfile, apps } = useAppContext()
  const { notify } = useContext(ToastContext)
  const [editNameModalVisible, setEditNameModalVisible] = useState(false)
  const [editName, setEditName] = useState('')
  const [editing, setEditing] = useState(false)
  const [editPasswordModalVisible, setEditPasswordModalVisible] = useState(false)
  const [currentPassword, setCurrentPassword] = useState('')
  const [password, setPassword] = useState('')
  const [confirmPassword, setConfirmPassword] = useState('')

  const handleEditName = () => {
    setEditNameModalVisible(true)
    setEditName(userProfile.name)
  }
  const handleSaveName = async () => {
    try {
      setEditing(true)
      await updateUserProfile({ url: 'account/name', body: { name: editName } })
      notify({ type: 'success', message: t('common.actionMsg.modifiedSuccessfully') })
      mutateUserProfile()
      setEditNameModalVisible(false)
      setEditing(false)
    }
    catch (e) {
      notify({ type: 'error', message: (e as Error).message })
      setEditNameModalVisible(false)
      setEditing(false)
    }
  }

  const showErrorMessage = (message: string) => {
    notify({
      type: 'error',
      message,
    })
  }
  const valid = () => {
    if (!password.trim()) {
      showErrorMessage(t('login.error.passwordEmpty'))
      return false
    }
    if (!validPassword.test(password)) {
      showErrorMessage(t('login.error.passwordInvalid'))
      return false
    }
    if (password !== confirmPassword) {
      showErrorMessage(t('common.account.notEqual'))
      return false
    }

    return true
  }
  const resetPasswordForm = () => {
    setCurrentPassword('')
    setPassword('')
    setConfirmPassword('')
  }
  const handleSavePassowrd = async () => {
    if (!valid())
      return
    try {
      setEditing(true)
      await updateUserProfile({
        url: 'account/password',
        body: {
          password: currentPassword,
          new_password: password,
          repeat_new_password: confirmPassword,
        },
      })
      notify({ type: 'success', message: t('common.actionMsg.modifiedSuccessfully') })
      mutateUserProfile()
      setEditPasswordModalVisible(false)
      resetPasswordForm()
      setEditing(false)
    }
    catch (e) {
      notify({ type: 'error', message: (e as Error).message })
      setEditPasswordModalVisible(false)
      setEditing(false)
    }
  }

  const renderAppItem = (item: IItem) => {
    return (
      <div className='flex px-3 py-1'>

        <div className='mr-3'>

          <AppIcon size='tiny' />

        </div>

        <div className='mt-[3px] text-xs font-medium text-gray-700 leading-[18px]'>{item.name}</div>

      </div>
    )
  }

  return (
    <>

      <div className='mb-8'>

        <div className={titleClassName}>{t('common.account.avatar')}</div>

        <Avatar name={userProfile.name} size={64} className='mt-2' />

      </div>

      <div className='mb-8'>

        <div className={titleClassName}>{t('common.account.name')}</div>

        <div className={classNames('flex items-center justify-between mt-2 w-full h-9 px-3 bg-gray-100 rounded text-sm font-normal text-gray-800 cursor-pointer group')}>

          {userProfile.name}

          <div className='items-center hidden h-6 px-2 text-xs font-normal bg-white border border-gray-200 rounded-md group-hover:flex' onClick={handleEditName}>{t('common.operation.edit')}</div>

        </div>

      </div>

      <div className='mb-8'>

        <div className={titleClassName}>{t('common.account.email')}</div>

        <div className={classNames(inputClassName, 'cursor-pointer')}>{userProfile.email}</div>

      </div>

      {IS_CE_EDITION && (

        <div className='mb-8'>

          <div className='mb-1 text-sm font-medium text-gray-900'>{t('common.account.password')}</div>

          <div className='mb-2 text-xs text-gray-500'>{t('common.account.passwordTip')}</div>

          <Button className='font-medium !text-gray-700 !px-3 !py-[7px] !text-[13px]' onClick={() => setEditPasswordModalVisible(true)}>{userProfile.is_password_set ? t('common.account.resetPassword') : t('common.account.setPassword')}</Button>

        </div>

      )}

      {!!apps.length && (

        <>

          <div className='mb-6 border-[0.5px] border-gray-100' />

          <div className='mb-8'>

            <div className={titleClassName}>{t('common.account.langGeniusAccount')}</div>

            <div className={descriptionClassName}>{t('common.account.langGeniusAccountTip')}</div>

            <Collapse

              title={`${t('common.account.showAppLength', { length: apps.length })}`}

              items={apps.map(app => ({ key: app.id, name: app.name }))}

              renderItem={renderAppItem}

              wrapperClassName='mt-2'

            />

          </div>

        </>
      )}
      {editNameModalVisible && (
        <Modal

          isShow

          onClose={() => setEditNameModalVisible(false)}

          className={s.modal}

          wrapperClassName='z-20'

        >

          <div className='mb-6 text-lg font-medium text-gray-900'>{t('common.account.editName')}</div>

          <div className={titleClassName}>{t('common.account.name')}</div>

          <input

            className={inputClassName}

            value={editName}

            onChange={e => setEditName(e.target.value)}

          />

          <div className='flex justify-end mt-10'>

            <Button className='mr-2 text-sm font-medium' onClick={() => setEditNameModalVisible(false)}>{t('common.operation.cancel')}</Button>

            <Button

              disabled={editing || !editName}

              type='primary'

              className='text-sm font-medium'

              onClick={handleSaveName}

            >

              {t('common.operation.save')}

            </Button>

          </div>

        </Modal>
      )}
      {editPasswordModalVisible && (
        <Modal

          isShow

          onClose={() => {

            setEditPasswordModalVisible(false)

            resetPasswordForm()

          }}

          className={s.modal}

          wrapperClassName='z-20'

        >

          <div className='mb-6 text-lg font-medium text-gray-900'>{userProfile.is_password_set ? t('common.account.resetPassword') : t('common.account.setPassword')}</div>

          {userProfile.is_password_set && (

            <>

              <div className={titleClassName}>{t('common.account.currentPassword')}</div>

              <input

                type="password"

                className={inputClassName}

                value={currentPassword}

                onChange={e => setCurrentPassword(e.target.value)}

              />

            </>
          )}
          <div className='mt-8 text-sm font-medium text-gray-900'>
            {userProfile.is_password_set ? t('common.account.newPassword') : t('common.account.password')}
          </div>
          <input

            type="password"

            className={inputClassName}

            value={password}

            onChange={e => setPassword(e.target.value)}

          />
          <div className='mt-8 text-sm font-medium text-gray-900'>{t('common.account.confirmPassword')}</div>
          <input

            type="password"

            className={inputClassName}

            value={confirmPassword}

            onChange={e => setConfirmPassword(e.target.value)}

          />
          <div className='flex justify-end mt-10'>

            <Button className='mr-2 text-sm font-medium' onClick={() => {

              setEditPasswordModalVisible(false)

              resetPasswordForm()

            }}>{t('common.operation.cancel')}</Button>

            <Button

              disabled={editing}

              type='primary'

              className='text-sm font-medium'

              onClick={handleSavePassowrd}

            >

              {userProfile.is_password_set ? t('common.operation.reset') : t('common.operation.save')}

            </Button>

          </div>
        </Modal>
      )}
    </>
  )
}