From 85472233a399d4b5000c60f9cbe9e279099ac1dc Mon Sep 17 00:00:00 2001 From: dm1sh Date: Sat, 29 Jul 2023 10:41:54 +0300 Subject: [PATCH] Connected signing up and signing in to back --- front/src/api/signup/index.ts | 24 ++++++ front/src/api/signup/types.ts | 30 +++++++ front/src/api/token/index.ts | 23 ++++++ front/src/api/token/types.ts | 17 ++++ front/src/components/AuthForm.tsx | 47 ++++++++--- front/src/hooks/api/index.ts | 3 +- front/src/hooks/api/useAuth.ts | 117 --------------------------- front/src/hooks/api/useSignIn.ts | 31 +++++++ front/src/hooks/api/useSignUp.ts | 31 +++++++ front/src/hooks/index.ts | 1 + front/src/hooks/useSendWithButton.ts | 2 + front/src/pages/LoginPage.tsx | 56 ++++++------- front/src/utils/auth.ts | 6 +- front/src/utils/types.ts | 8 +- 14 files changed, 228 insertions(+), 168 deletions(-) create mode 100644 front/src/api/signup/index.ts create mode 100644 front/src/api/signup/types.ts create mode 100644 front/src/api/token/index.ts create mode 100644 front/src/api/token/types.ts delete mode 100644 front/src/hooks/api/useAuth.ts create mode 100644 front/src/hooks/api/useSignIn.ts create mode 100644 front/src/hooks/api/useSignUp.ts diff --git a/front/src/api/signup/index.ts b/front/src/api/signup/index.ts new file mode 100644 index 0000000..0a6d102 --- /dev/null +++ b/front/src/api/signup/index.ts @@ -0,0 +1,24 @@ +import { API_URL } from '../../config' +import { fallbackTo, isString } from '../../utils/types' +import { SignUp, SignUpBody, SignUpResponse } from './types' + +const composeSignUpURL = () => ( + API_URL + '/signup?' +) + +const composeSignUpBody = (formData: FormData): SignUpBody => ({ + email: fallbackTo(formData.get('email'), isString, ''), + password: fallbackTo(formData.get('password'), isString, ''), + name: fallbackTo(formData.get('name'), isString, ''), + surname: fallbackTo(formData.get('surname'), isString, ''), +}) + +const processSignUp = (data: SignUpResponse): SignUp => { + if (!data.Success) { + throw new Error(data.Message) + } + + return true +} + +export { composeSignUpURL, composeSignUpBody, processSignUp } diff --git a/front/src/api/signup/types.ts b/front/src/api/signup/types.ts new file mode 100644 index 0000000..0246617 --- /dev/null +++ b/front/src/api/signup/types.ts @@ -0,0 +1,30 @@ +import { isConst, isObject } from '../../utils/types' + +type SignUpBody = { + email: string, + password: string, + name: string, + surname: string, +} + +type SignUpResponse = { + Success: true, +} | { + Success: false, + Message: string +} + +const isSignUpResponse = (obj: unknown): obj is SignUpResponse => ( + isObject(obj, { + 'Success': isConst(true), + }) || isObject(obj, { + 'Success': isConst(false), + 'Message': 'string', + }) +) + +type SignUp = boolean + +export type { SignUpBody, SignUpResponse, SignUp } + +export { isSignUpResponse } diff --git a/front/src/api/token/index.ts b/front/src/api/token/index.ts new file mode 100644 index 0000000..370dfe4 --- /dev/null +++ b/front/src/api/token/index.ts @@ -0,0 +1,23 @@ +import { isString } from 'react-bootstrap-typeahead/types/utils' +import { API_URL } from '../../config' +import { fallbackTo } from '../../utils/types' +import { Token, TokenResponse } from './types' + +const composeTokenURL = () => ( + API_URL + '/token?' +) + +const composeSignInBody = (formData: FormData) => { + const resFD = new FormData() + + resFD.append('username', fallbackTo(formData.get('email'), isString, '')) + resFD.append('password', fallbackTo(formData.get('password'), isString, '')) + + return resFD +} + +const processToken = (data: TokenResponse): Token => { + return data.access_token +} + +export { composeTokenURL, composeSignInBody, processToken } diff --git a/front/src/api/token/types.ts b/front/src/api/token/types.ts new file mode 100644 index 0000000..cb95c7c --- /dev/null +++ b/front/src/api/token/types.ts @@ -0,0 +1,17 @@ +import { isObject } from '../../utils/types' + +type TokenResponse = { + access_token: string +} + +const isTokenResponse = (obj: unknown): obj is TokenResponse => ( + isObject(obj, { + 'access_token': 'string' + }) +) + +type Token = string + +export type { TokenResponse, Token } + +export { isTokenResponse } diff --git a/front/src/components/AuthForm.tsx b/front/src/components/AuthForm.tsx index bd5f129..1c8cd03 100644 --- a/front/src/components/AuthForm.tsx +++ b/front/src/components/AuthForm.tsx @@ -1,38 +1,59 @@ -import { FormEventHandler } from 'react' +import { FormEventHandler, useCallback } from 'react' import { Button, Form } from 'react-bootstrap' +import { useSignIn, useSignUp } from '../hooks/api' +import { composeSignUpBody } from '../api/signup' +import { composeSignInBody } from '../api/token' type AuthFormProps = { register: boolean - handleAuth: FormEventHandler, - loading: boolean, - error: string + goBack: () => void, } -function AuthForm ({ handleAuth, register, loading, error }: AuthFormProps) { - const buttonText = loading ? 'Загрузка...' : (error || (register ? 'Зарегистрироваться' : 'Войти')) +function AuthForm({ goBack, register }: AuthFormProps) { + const { handleSignUp, signUpButton } = useSignUp() + + const { handleSignIn, signInButton } = useSignIn() + + const handleAuth: FormEventHandler = useCallback((e) => { + e.preventDefault() + e.stopPropagation() + + const formData = new FormData(e.currentTarget) + + void (async () => { + const accountCreated = register ? ( + await handleSignUp(composeSignUpBody(formData)) + ) : true + + if (accountCreated) { + await handleSignIn(composeSignInBody(formData)) + goBack() + } + })() + }, [register, goBack, handleSignUp, handleSignIn]) return (
Почта - + {register && <> Имя - + Фамилия - + } Пароль - + {register && @@ -46,9 +67,9 @@ function AuthForm ({ handleAuth, register, loading, error }: AuthFormProps) { } - +