mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-21 21:29:48 +08:00
72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
import { useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useRouter, useSearchParams } from 'next/navigation'
|
|
import { useContext } from 'use-context-selector'
|
|
import Input from '@/app/components/base/input'
|
|
import Button from '@/app/components/base/button'
|
|
import { emailRegex } from '@/config'
|
|
import Toast from '@/app/components/base/toast'
|
|
import { sendEMailLoginCode } from '@/service/common'
|
|
import { COUNT_DOWN_KEY, COUNT_DOWN_TIME_MS } from '@/app/components/signin/countdown'
|
|
import I18NContext from '@/context/i18n'
|
|
|
|
type MailAndCodeAuthProps = {
|
|
isInvite: boolean
|
|
}
|
|
|
|
export default function MailAndCodeAuth({ isInvite }: MailAndCodeAuthProps) {
|
|
const { t } = useTranslation()
|
|
const router = useRouter()
|
|
const searchParams = useSearchParams()
|
|
const emailFromLink = decodeURIComponent(searchParams.get('email') || '')
|
|
const [email, setEmail] = useState(emailFromLink)
|
|
const [loading, setIsLoading] = useState(false)
|
|
const { locale } = useContext(I18NContext)
|
|
|
|
const handleGetEMailVerificationCode = async () => {
|
|
try {
|
|
if (!email) {
|
|
Toast.notify({ type: 'error', message: t('login.error.emailEmpty') })
|
|
return
|
|
}
|
|
|
|
if (!emailRegex.test(email)) {
|
|
Toast.notify({
|
|
type: 'error',
|
|
message: t('login.error.emailInValid'),
|
|
})
|
|
return
|
|
}
|
|
setIsLoading(true)
|
|
const ret = await sendEMailLoginCode(email, locale)
|
|
if (ret.result === 'success') {
|
|
localStorage.setItem(COUNT_DOWN_KEY, `${COUNT_DOWN_TIME_MS}`)
|
|
const params = new URLSearchParams(searchParams)
|
|
params.set('email', encodeURIComponent(email))
|
|
params.set('token', encodeURIComponent(ret.data))
|
|
router.push(`/signin/check-code?${params.toString()}`)
|
|
}
|
|
}
|
|
catch (error) {
|
|
console.error(error)
|
|
}
|
|
finally {
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
|
|
return (<form onSubmit={() => { }}>
|
|
<input type='text' className='hidden' />
|
|
<div className='mb-2'>
|
|
<label htmlFor="email" className='my-2 system-md-semibold text-text-secondary'>{t('login.email')}</label>
|
|
<div className='mt-1'>
|
|
<Input id='email' type="email" disabled={isInvite} value={email} placeholder={t('login.emailPlaceholder') as string} onChange={e => setEmail(e.target.value)} />
|
|
</div>
|
|
<div className='mt-3'>
|
|
<Button loading={loading} disabled={loading || !email} variant='primary' className='w-full' onClick={handleGetEMailVerificationCode}>{t('login.continueWithCode')}</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
)
|
|
}
|