272 lines
9.6 KiB
TypeScript
272 lines
9.6 KiB
TypeScript
import { h, Fragment } from 'preact';
|
|
import { useState } from 'preact/hooks';
|
|
import { useIntl } from 'react-intl';
|
|
import clsx from 'clsx';
|
|
import { useDispatch } from 'react-redux';
|
|
|
|
import { setUser } from 'store/user/actions';
|
|
import { Input } from 'components/input';
|
|
import { TextareaAutosize } from 'components/textarea-autosize';
|
|
|
|
import { Button } from './components/button';
|
|
import { OAuth } from './components/oauth';
|
|
import { messages } from './auth.messsages';
|
|
import { useDropdown } from './auth.hooks';
|
|
import { getProviders, getTokenInvalidReason } from './auth.utils';
|
|
import { emailSignin, verifyEmailSignin, anonymousSignin } from './auth.api';
|
|
|
|
import styles from './auth.module.css';
|
|
|
|
export function Auth() {
|
|
const intl = useIntl();
|
|
const dispath = useDispatch();
|
|
const [oauthProviders, formProviders] = getProviders();
|
|
|
|
// UI State
|
|
const [isLoading, setLoading] = useState(false);
|
|
const [view, setView] = useState<typeof formProviders[number] | 'token'>(formProviders[0]);
|
|
const [ref, isDropdownShowed, toggleDropdownState] = useDropdown(view === 'token');
|
|
|
|
// Errors
|
|
const [invalidReason, setInvalidReason] = useState<keyof typeof messages | null>(null);
|
|
|
|
function handleClickSingIn(evt: Event) {
|
|
evt.preventDefault();
|
|
toggleDropdownState();
|
|
}
|
|
|
|
function handleDropdownClose(evt: Event) {
|
|
evt.preventDefault();
|
|
setView(formProviders[0]);
|
|
toggleDropdownState();
|
|
}
|
|
|
|
function handleProviderChange(evt: Event) {
|
|
const { value } = evt.currentTarget as HTMLInputElement;
|
|
|
|
setInvalidReason(null);
|
|
setView(value as typeof formProviders[number]);
|
|
}
|
|
|
|
async function handleSubmit(evt: Event) {
|
|
const data = new FormData(evt.target as HTMLFormElement);
|
|
|
|
evt.preventDefault();
|
|
setLoading(true);
|
|
setInvalidReason(null);
|
|
|
|
try {
|
|
switch (view) {
|
|
case 'anonymous': {
|
|
const username = data.get('username') as string;
|
|
const user = await anonymousSignin(username);
|
|
|
|
dispath(setUser(user));
|
|
break;
|
|
}
|
|
case 'email': {
|
|
const email = data.get('email') as string;
|
|
const username = data.get('username') as string;
|
|
|
|
await emailSignin(email, username);
|
|
setView('token');
|
|
break;
|
|
}
|
|
case 'token': {
|
|
const token = data.get('token') as string;
|
|
const invalidReason = getTokenInvalidReason(token);
|
|
|
|
if (invalidReason) {
|
|
setInvalidReason(invalidReason);
|
|
} else {
|
|
const user = await verifyEmailSignin(token);
|
|
dispath(setUser(user));
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
} catch (e) {
|
|
setInvalidReason(e.message || e.error);
|
|
}
|
|
|
|
setLoading(false);
|
|
}
|
|
|
|
function handleShowEmailStep(evt: Event) {
|
|
evt.preventDefault();
|
|
setView('email');
|
|
}
|
|
|
|
const hasOAuthProviders = oauthProviders.length > 0;
|
|
const hasFormProviders = formProviders.length > 0;
|
|
const errorMessage =
|
|
invalidReason !== null && messages[invalidReason] ? intl.formatMessage(messages[invalidReason]) : invalidReason;
|
|
const isTokenView = view === 'token';
|
|
const formFooterJSX = (
|
|
<>
|
|
{errorMessage && <div className={clsx('auth-error', styles.error)}>{errorMessage}</div>}
|
|
<Button className="auth-submit" type="submit" disabled={isLoading}>
|
|
{isLoading ? (
|
|
<div
|
|
className={clsx('spinner', styles.spinner)}
|
|
role="presentation"
|
|
aria-label={intl.formatMessage(messages.loading)}
|
|
/>
|
|
) : (
|
|
intl.formatMessage(messages.submit)
|
|
)}
|
|
</Button>
|
|
</>
|
|
);
|
|
return (
|
|
<div className={clsx('auth', styles.root)}>
|
|
<Button
|
|
className="auth-button"
|
|
selected={isDropdownShowed}
|
|
onClick={handleClickSingIn}
|
|
suffix={
|
|
<svg width="14" height="14" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M6 11.5L14.5 19L22 11"
|
|
stroke="currentColor"
|
|
stroke-width="4"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
}
|
|
>
|
|
{intl.formatMessage(messages.signin)}
|
|
</Button>
|
|
{isDropdownShowed && (
|
|
<div className={clsx('auth-dropdown', styles.dropdown)} ref={ref}>
|
|
<form className={clsx('auth-form', styles.form)} onSubmit={handleSubmit}>
|
|
{isTokenView ? (
|
|
<>
|
|
<div className={clsx('auth-row', styles.row)}>
|
|
<div className={styles.backButton}>
|
|
<Button className="auth-back-button" size="small" kind="transparent" onClick={handleShowEmailStep}>
|
|
<svg
|
|
className={styles.backButtonArrow}
|
|
width="14"
|
|
height="14"
|
|
viewBox="0 0 14 14"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M8.75 3L5 7.25L9 11"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
{intl.formatMessage(messages.back)}
|
|
</Button>
|
|
</div>
|
|
<button
|
|
className={clsx('auth-close-button', styles.closeButton)}
|
|
title="Close sign-in dropdown"
|
|
onClick={handleDropdownClose}
|
|
>
|
|
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M2 2L12 12M12 2L2 12"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
<div className={clsx('auth-row', styles.row)}>
|
|
<TextareaAutosize
|
|
name="token"
|
|
className={clsx('auth-token-textatea', styles.textarea)}
|
|
placeholder={intl.formatMessage(messages.token)}
|
|
disabled={isLoading}
|
|
/>
|
|
</div>
|
|
{formFooterJSX}
|
|
</>
|
|
) : (
|
|
<>
|
|
{hasOAuthProviders && (
|
|
<>
|
|
<h5 className={clsx('auth-form-title', styles.title)}>
|
|
{intl.formatMessage(messages.oauthSource)}
|
|
</h5>
|
|
<OAuth providers={oauthProviders} />
|
|
</>
|
|
)}
|
|
{hasOAuthProviders && hasFormProviders && (
|
|
<div className={clsx('auth-divider', styles.divider)} title={intl.formatMessage(messages.or)} />
|
|
)}
|
|
{hasFormProviders && (
|
|
<>
|
|
{formProviders.length === 1 ? (
|
|
<h5 className={clsx('auth-form-title', styles.title)}>{formProviders[0]}</h5>
|
|
) : (
|
|
<div className={clsx('auth-tabs', styles.tabs)}>
|
|
{formProviders.map((p) => (
|
|
<Fragment key={p}>
|
|
<input
|
|
className={styles.radio}
|
|
type="radio"
|
|
id={`form-provider-${p}`}
|
|
name="form-provider"
|
|
value={p}
|
|
onChange={handleProviderChange}
|
|
checked={p === view}
|
|
/>
|
|
<label className={clsx('auth-tabs-item', styles.provider)} htmlFor={`form-provider-${p}`}>
|
|
{p.slice(0, 6)}
|
|
</label>
|
|
</Fragment>
|
|
))}
|
|
</div>
|
|
)}
|
|
<div className={clsx('auth-row', styles.row)}>
|
|
<Input
|
|
className="auth-input-username"
|
|
required
|
|
name="username"
|
|
minLength={3}
|
|
pattern="[\p{L}\d\s_]+"
|
|
title={intl.formatMessage(messages.usernameRestriction)}
|
|
placeholder={intl.formatMessage(messages.username)}
|
|
disabled={isLoading}
|
|
onBlur={(evt) => {
|
|
const element = evt.target as HTMLInputElement;
|
|
element.value = element.value.trim();
|
|
}}
|
|
/>
|
|
</div>
|
|
{view === 'email' && (
|
|
<div className={clsx('auth-row', styles.row)}>
|
|
<Input
|
|
className="auth-input-email"
|
|
required
|
|
name="email"
|
|
type="email"
|
|
placeholder={intl.formatMessage(messages.emailAddress)}
|
|
disabled={isLoading}
|
|
/>
|
|
</div>
|
|
)}
|
|
<input className={styles.honeypot} type="checkbox" tabIndex={-1} autoComplete="off" />
|
|
{formFooterJSX}
|
|
</>
|
|
)}
|
|
</>
|
|
)}
|
|
</form>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|