218 lines
6.1 KiB
TypeScript
218 lines
6.1 KiB
TypeScript
import type { AuthModalSearchParams } from './types'
|
|
|
|
import { clsx } from 'clsx'
|
|
import { createSignal, Show } from 'solid-js'
|
|
|
|
import { useLocalize } from '../../../context/localize'
|
|
import { useSession } from '../../../context/session'
|
|
import { useSnackbar } from '../../../context/snackbar'
|
|
import { signSendLink } from '../../../stores/auth'
|
|
import { useRouter } from '../../../stores/router'
|
|
import { hideModal } from '../../../stores/ui'
|
|
import { ApiError } from '../../../utils/apiClient'
|
|
import { validateEmail } from '../../../utils/validateEmail'
|
|
|
|
import { AuthModalHeader } from './AuthModalHeader'
|
|
import { PasswordField } from './PasswordField'
|
|
import { email, setEmail } from './sharedLogic'
|
|
import { SocialProviders } from './SocialProviders'
|
|
|
|
import styles from './AuthModal.module.scss'
|
|
|
|
type FormFields = {
|
|
email: string
|
|
password: string
|
|
}
|
|
|
|
type ValidationErrors = Partial<Record<keyof FormFields, string>>
|
|
|
|
export const LoginForm = () => {
|
|
const { t, lang } = useLocalize()
|
|
|
|
const [submitError, setSubmitError] = createSignal('')
|
|
const [isSubmitting, setIsSubmitting] = createSignal(false)
|
|
const [validationErrors, setValidationErrors] = createSignal<ValidationErrors>({})
|
|
// TODO: better solution for interactive error messages
|
|
const [isEmailNotConfirmed, setIsEmailNotConfirmed] = createSignal(false)
|
|
const [isLinkSent, setIsLinkSent] = createSignal(false)
|
|
|
|
const authFormRef: { current: HTMLFormElement } = { current: null }
|
|
|
|
const {
|
|
actions: { showSnackbar },
|
|
} = useSnackbar()
|
|
|
|
const {
|
|
actions: { signIn },
|
|
} = useSession()
|
|
|
|
const { changeSearchParams } = useRouter<AuthModalSearchParams>()
|
|
|
|
const [password, setPassword] = createSignal('')
|
|
|
|
const handleEmailInput = (newEmail: string) => {
|
|
setValidationErrors(({ email: _notNeeded, ...rest }) => rest)
|
|
setEmail(newEmail)
|
|
}
|
|
|
|
const handlePasswordInput = (newPassword: string) => {
|
|
setValidationErrors(({ password: _notNeeded, ...rest }) => rest)
|
|
setPassword(newPassword)
|
|
}
|
|
|
|
const handleSendLinkAgainClick = async (event: Event) => {
|
|
event.preventDefault()
|
|
|
|
setIsLinkSent(true)
|
|
setIsEmailNotConfirmed(false)
|
|
setSubmitError('')
|
|
|
|
const result = await signSendLink({ email: email(), lang: lang(), template: 'email_confirmation' })
|
|
if (result.error) setSubmitError(result.error)
|
|
}
|
|
|
|
const handleSubmit = async (event: Event) => {
|
|
event.preventDefault()
|
|
|
|
setIsLinkSent(false)
|
|
setIsEmailNotConfirmed(false)
|
|
setSubmitError('')
|
|
|
|
const newValidationErrors: ValidationErrors = {}
|
|
|
|
if (!email()) {
|
|
newValidationErrors.email = t('Please enter email')
|
|
} else if (!validateEmail(email())) {
|
|
newValidationErrors.email = t('Invalid email')
|
|
}
|
|
|
|
if (!password()) {
|
|
newValidationErrors.password = t('Please enter password')
|
|
}
|
|
|
|
if (Object.keys(newValidationErrors).length > 0) {
|
|
setValidationErrors(newValidationErrors)
|
|
|
|
authFormRef.current
|
|
.querySelector<HTMLInputElement>(`input[name="${Object.keys(newValidationErrors)[0]}"]`)
|
|
.focus()
|
|
|
|
return
|
|
}
|
|
|
|
setIsSubmitting(true)
|
|
|
|
try {
|
|
await signIn({ email: email(), password: password() })
|
|
|
|
hideModal()
|
|
|
|
showSnackbar({ body: t('Welcome!') })
|
|
} catch (error) {
|
|
if (error instanceof ApiError) {
|
|
if (error.code === 'email_not_confirmed') {
|
|
setSubmitError(t('Please, confirm email'))
|
|
setIsEmailNotConfirmed(true)
|
|
|
|
return
|
|
}
|
|
if (error.code === 'user_not_found') {
|
|
setSubmitError(t('Something went wrong, check email and password'))
|
|
|
|
return
|
|
}
|
|
}
|
|
setSubmitError(error.message)
|
|
} finally {
|
|
setIsSubmitting(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit} class={styles.authForm} ref={(el) => (authFormRef.current = el)}>
|
|
<div>
|
|
<AuthModalHeader modalType="login" />
|
|
<Show when={submitError()}>
|
|
<div class={styles.authInfo}>
|
|
<div class={styles.warn}>{submitError()}</div>
|
|
<Show when={isEmailNotConfirmed()}>
|
|
<a href="#" onClick={handleSendLinkAgainClick}>
|
|
{t('Send link again')}
|
|
</a>
|
|
</Show>
|
|
</div>
|
|
</Show>
|
|
<Show when={isLinkSent()}>
|
|
<div class={styles.authInfo}>{t('Link sent, check your email')}</div>
|
|
</Show>
|
|
<div
|
|
class={clsx('pretty-form__item', {
|
|
'pretty-form__item--error': validationErrors().email,
|
|
})}
|
|
>
|
|
<input
|
|
id="email"
|
|
name="email"
|
|
autocomplete="email"
|
|
type="email"
|
|
value={email()}
|
|
placeholder={t('Email')}
|
|
onInput={(event) => handleEmailInput(event.currentTarget.value)}
|
|
/>
|
|
<label for="email">{t('Email')}</label>
|
|
<Show when={validationErrors().email}>
|
|
<div class={styles.validationError}>{validationErrors().email}</div>
|
|
</Show>
|
|
</div>
|
|
|
|
<PasswordField onInput={(value) => handlePasswordInput(value)} />
|
|
|
|
<div>
|
|
<button class={clsx('button', styles.submitButton)} disabled={isSubmitting()} type="submit">
|
|
{isSubmitting() ? '...' : t('Enter')}
|
|
</button>
|
|
</div>
|
|
<div class={styles.authActions}>
|
|
<span
|
|
class="link"
|
|
onClick={() =>
|
|
changeSearchParams({
|
|
mode: 'forgot-password',
|
|
})
|
|
}
|
|
>
|
|
{t('Forgot password?')}
|
|
</span>
|
|
<span
|
|
class="link"
|
|
onClick={() =>
|
|
changeSearchParams({
|
|
mode: 'change-password',
|
|
})
|
|
}
|
|
>
|
|
{t('Change password')}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<SocialProviders />
|
|
|
|
<div class={styles.authControl}>
|
|
<span
|
|
class={styles.authLink}
|
|
onClick={() =>
|
|
changeSearchParams({
|
|
mode: 'register',
|
|
})
|
|
}
|
|
>
|
|
{t('I have no account yet')}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
)
|
|
}
|