107 lines
3.8 KiB
JavaScript
107 lines
3.8 KiB
JavaScript
import { signIn } from 'next-auth/react'
|
|
import styles from './login.module.css'
|
|
import { Form, Input, SubmitButton } from '../components/form'
|
|
import { useState } from 'react'
|
|
import Alert from 'react-bootstrap/Alert'
|
|
import { useRouter } from 'next/router'
|
|
import { LightningAuthWithExplainer, SlashtagsAuth } from './lightning-auth'
|
|
import LoginButton from './login-button'
|
|
import { emailSchema } from '../lib/validate'
|
|
|
|
export function EmailLoginForm ({ text, callbackUrl }) {
|
|
return (
|
|
<Form
|
|
initial={{
|
|
email: ''
|
|
}}
|
|
schema={emailSchema}
|
|
onSubmit={async ({ email }) => {
|
|
signIn('email', { email, callbackUrl })
|
|
}}
|
|
>
|
|
<Input
|
|
label='Email'
|
|
name='email'
|
|
placeholder='email@example.com'
|
|
required
|
|
autoFocus
|
|
/>
|
|
<SubmitButton variant='secondary' className={styles.providerButton}>{text || 'Login'} with Email</SubmitButton>
|
|
</Form>
|
|
)
|
|
}
|
|
|
|
export default function Login ({ providers, callbackUrl, error, text, Header, Footer }) {
|
|
const errors = {
|
|
OAuthSignin: 'Error constructing OAuth URL. Try again or choose a different method.',
|
|
OAuthCallback: 'Error handling OAuth response. Try again or choose a different method.',
|
|
OAuthCreateAccount: 'Could not create OAuth account. Try again or choose a different method.',
|
|
EmailCreateAccount: 'Could not create Email account. Try again or choose a different method.',
|
|
Callback: 'Error in callback handler. Try again or choose a different method.',
|
|
OAuthAccountNotLinked: 'This auth method is linked to another account. To link to this account first unlink the other account.',
|
|
EmailSignin: 'Failed to send email. Make sure you entered your email address correctly.',
|
|
CredentialsSignin: 'Auth failed. Try again or choose a different method.',
|
|
default: 'Auth failed. Try again or choose a different method.'
|
|
}
|
|
|
|
const [errorMessage, setErrorMessage] = useState(error && (errors[error] ?? errors.default))
|
|
const router = useRouter()
|
|
|
|
if (router.query.type === 'lightning') {
|
|
return <LightningAuthWithExplainer callbackUrl={callbackUrl} text={text} />
|
|
}
|
|
|
|
if (router.query.type === 'slashtags') {
|
|
return <SlashtagsAuth callbackUrl={callbackUrl} text={text} />
|
|
}
|
|
|
|
return (
|
|
<div className={styles.login}>
|
|
{Header && <Header />}
|
|
{errorMessage &&
|
|
<Alert
|
|
variant='danger'
|
|
onClose={() => setErrorMessage(undefined)}
|
|
dismissible
|
|
>{errorMessage}
|
|
</Alert>}
|
|
{providers && Object.values(providers).map(provider => {
|
|
switch (provider.name) {
|
|
case 'Email':
|
|
return (
|
|
<div className='w-100' key={provider.id}>
|
|
<div className='mt-2 text-center text-muted fw-bold'>or</div>
|
|
<EmailLoginForm text={text} callbackUrl={callbackUrl} />
|
|
</div>
|
|
)
|
|
case 'Lightning':
|
|
case 'Slashtags':
|
|
return (
|
|
<LoginButton
|
|
className={`mt-2 ${styles.providerButton}`}
|
|
key={provider.id}
|
|
type={provider.id.toLowerCase()}
|
|
onClick={() => router.push({
|
|
pathname: router.pathname,
|
|
query: { callbackUrl: router.query.callbackUrl, type: provider.name.toLowerCase() }
|
|
})}
|
|
text={`${text || 'Login'} with`}
|
|
/>
|
|
)
|
|
default:
|
|
return (
|
|
<LoginButton
|
|
className={`mt-2 ${styles.providerButton}`}
|
|
key={provider.id}
|
|
type={provider.id.toLowerCase()}
|
|
onClick={() => signIn(provider.id, { callbackUrl })}
|
|
text={`${text || 'Login'} with`}
|
|
/>
|
|
)
|
|
}
|
|
})}
|
|
{Footer && <Footer />}
|
|
</div>
|
|
)
|
|
}
|