mirror of https://github.com/langgenius/dify.git
117 lines
3.5 KiB
TypeScript
117 lines
3.5 KiB
TypeScript
'use client'
|
|
import type { MailSendResponse } from '@/service/use-common'
|
|
import { noop } from 'es-toolkit/compat'
|
|
import Link from 'next/link'
|
|
import { useCallback, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useContext } from 'use-context-selector'
|
|
import Button from '@/app/components/base/button'
|
|
import Input from '@/app/components/base/input'
|
|
import Toast from '@/app/components/base/toast'
|
|
import Split from '@/app/signin/split'
|
|
import { emailRegex } from '@/config'
|
|
import { useGlobalPublicStore } from '@/context/global-public-context'
|
|
import I18n from '@/context/i18n'
|
|
import { useSendMail } from '@/service/use-common'
|
|
|
|
type Props = {
|
|
onSuccess: (email: string, payload: string) => void
|
|
}
|
|
export default function Form({
|
|
onSuccess,
|
|
}: Props) {
|
|
const { t } = useTranslation()
|
|
const [email, setEmail] = useState('')
|
|
const { locale } = useContext(I18n)
|
|
const { systemFeatures } = useGlobalPublicStore()
|
|
|
|
const { mutateAsync: submitMail, isPending } = useSendMail()
|
|
|
|
const handleSubmit = useCallback(async () => {
|
|
if (!email) {
|
|
Toast.notify({ type: 'error', message: t('error.emailEmpty', { ns: 'login' }) })
|
|
return
|
|
}
|
|
if (!emailRegex.test(email)) {
|
|
Toast.notify({
|
|
type: 'error',
|
|
message: t('error.emailInValid', { ns: 'login' }),
|
|
})
|
|
return
|
|
}
|
|
const res = await submitMail({ email, language: locale })
|
|
if ((res as MailSendResponse).result === 'success')
|
|
onSuccess(email, (res as MailSendResponse).data)
|
|
}, [email, locale, submitMail, t])
|
|
|
|
return (
|
|
<form onSubmit={noop}>
|
|
<div className="mb-3">
|
|
<label htmlFor="email" className="system-md-semibold my-2 text-text-secondary">
|
|
{t('email', { ns: 'login' })}
|
|
</label>
|
|
<div className="mt-1">
|
|
<Input
|
|
value={email}
|
|
onChange={e => setEmail(e.target.value)}
|
|
id="email"
|
|
type="email"
|
|
autoComplete="email"
|
|
placeholder={t('emailPlaceholder', { ns: 'login' }) || ''}
|
|
tabIndex={1}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="mb-2">
|
|
<Button
|
|
tabIndex={2}
|
|
variant="primary"
|
|
onClick={handleSubmit}
|
|
disabled={isPending || !email}
|
|
className="w-full"
|
|
>
|
|
{t('signup.verifyMail', { ns: 'login' })}
|
|
</Button>
|
|
</div>
|
|
<Split className="mb-5 mt-4" />
|
|
|
|
<div className="text-[13px] font-medium leading-4 text-text-secondary">
|
|
<span>{t('signup.haveAccount', { ns: 'login' })}</span>
|
|
<Link
|
|
className="text-text-accent"
|
|
href="/signin"
|
|
>
|
|
{t('signup.signIn', { ns: 'login' })}
|
|
</Link>
|
|
</div>
|
|
|
|
{!systemFeatures.branding.enabled && (
|
|
<>
|
|
<div className="system-xs-regular mt-3 block w-full text-text-tertiary">
|
|
{t('tosDesc', { ns: 'login' })}
|
|
|
|
<Link
|
|
className="system-xs-medium text-text-secondary hover:underline"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="https://dify.ai/terms"
|
|
>
|
|
{t('tos', { ns: 'login' })}
|
|
</Link>
|
|
&
|
|
<Link
|
|
className="system-xs-medium text-text-secondary hover:underline"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="https://dify.ai/privacy"
|
|
>
|
|
{t('pp', { ns: 'login' })}
|
|
</Link>
|
|
</div>
|
|
</>
|
|
)}
|
|
|
|
</form>
|
|
)
|
|
}
|