110 lines
3.4 KiB
TypeScript
110 lines
3.4 KiB
TypeScript
'use client';
|
||
|
||
import { zodResolver } from '@hookform/resolvers/zod';
|
||
import axios from 'axios';
|
||
import clsx from 'clsx';
|
||
import { useForm } from 'react-hook-form';
|
||
|
||
import { useConceptNavigation } from '@/app/Navigation/NavigationContext';
|
||
import { urls } from '@/app/urls';
|
||
import { IUserLoginDTO, UserLoginSchema } from '@/backend/auth/api';
|
||
import { useAuthSuspense } from '@/backend/auth/useAuth';
|
||
import { useLogin } from '@/backend/auth/useLogin';
|
||
import ExpectedAnonymous from '@/components/ExpectedAnonymous';
|
||
import { ErrorData } from '@/components/info/InfoError';
|
||
import SubmitButton from '@/components/ui/SubmitButton';
|
||
import TextInput from '@/components/ui/TextInput';
|
||
import TextURL from '@/components/ui/TextURL';
|
||
import useQueryStrings from '@/hooks/useQueryStrings';
|
||
import { resources } from '@/utils/constants';
|
||
|
||
function LoginPage() {
|
||
const router = useConceptNavigation();
|
||
const query = useQueryStrings();
|
||
const initialName = query.get('username') ?? '';
|
||
|
||
const {
|
||
register,
|
||
handleSubmit,
|
||
clearErrors,
|
||
resetField,
|
||
formState: { errors }
|
||
} = useForm({
|
||
resolver: zodResolver(UserLoginSchema),
|
||
defaultValues: { username: initialName, password: '' }
|
||
});
|
||
|
||
const { isAnonymous } = useAuthSuspense();
|
||
const { login, isPending, error: serverError, reset: clearServerError } = useLogin();
|
||
|
||
function onSubmit(data: IUserLoginDTO) {
|
||
login(data, () => {
|
||
resetField('password');
|
||
if (router.canBack()) {
|
||
router.back();
|
||
} else {
|
||
router.push(urls.library);
|
||
}
|
||
});
|
||
}
|
||
|
||
function resetErrors() {
|
||
clearServerError();
|
||
clearErrors();
|
||
}
|
||
|
||
if (!isAnonymous) {
|
||
return <ExpectedAnonymous />;
|
||
}
|
||
return (
|
||
<form
|
||
className={clsx('cc-column cc-fade-in', 'w-[24rem] mx-auto', 'pt-12 pb-6 px-6')}
|
||
onSubmit={event => void handleSubmit(onSubmit)(event)}
|
||
onChange={resetErrors}
|
||
>
|
||
<img alt='Концепт Портал' src={resources.logo} className='max-h-[2.5rem] min-w-[2.5rem] mb-3' />
|
||
<TextInput
|
||
id='username'
|
||
autoComplete='username'
|
||
label='Логин или email'
|
||
{...register('username')}
|
||
autoFocus
|
||
allowEnter
|
||
spellCheck={false}
|
||
defaultValue={initialName}
|
||
error={errors.username}
|
||
/>
|
||
<TextInput
|
||
id='password'
|
||
{...register('password')}
|
||
type='password'
|
||
autoComplete='current-password'
|
||
label='Пароль'
|
||
allowEnter
|
||
error={errors.password}
|
||
/>
|
||
|
||
<SubmitButton text='Войти' className='self-center w-[12rem] mt-3' loading={isPending} />
|
||
<div className='flex flex-col text-sm'>
|
||
<TextURL text='Восстановить пароль...' href='/restore-password' />
|
||
<TextURL text='Нет аккаунта? Зарегистрируйтесь...' href='/signup' />
|
||
</div>
|
||
{serverError ? <ServerError error={serverError} /> : null}
|
||
</form>
|
||
);
|
||
}
|
||
|
||
export default LoginPage;
|
||
|
||
// ====== Internals =========
|
||
function ServerError({ error }: { error: ErrorData }): React.ReactElement | null {
|
||
if (axios.isAxiosError(error) && error.response && error.response.status === 400) {
|
||
return (
|
||
<div className='text-sm select-text text-warn-600'>
|
||
На Портале отсутствует такое сочетание имени пользователя и пароля
|
||
</div>
|
||
);
|
||
}
|
||
throw error as Error;
|
||
}
|