diff --git a/front/src/api/signup/index.ts b/front/src/api/signup/index.ts index 0a6d102..b1d12e7 100644 --- a/front/src/api/signup/index.ts +++ b/front/src/api/signup/index.ts @@ -1,18 +1,10 @@ import { API_URL } from '../../config' -import { fallbackTo, isString } from '../../utils/types' -import { SignUp, SignUpBody, SignUpResponse } from './types' +import { SignUp, 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) @@ -21,4 +13,4 @@ const processSignUp = (data: SignUpResponse): SignUp => { return true } -export { composeSignUpURL, composeSignUpBody, processSignUp } +export { composeSignUpURL, processSignUp } diff --git a/front/src/api/signup/types.ts b/front/src/api/signup/types.ts index cd22da8..02dd310 100644 --- a/front/src/api/signup/types.ts +++ b/front/src/api/signup/types.ts @@ -1,12 +1,5 @@ import { isConst, isObject } from '../../utils/types' -type SignUpBody = { - email: string, - password: string, - name: string, - surname: string, -} - type SignUpResponse = { Success: true, } | { @@ -25,6 +18,6 @@ const isSignUpResponse = (obj: unknown): obj is SignUpResponse => ( type SignUp = boolean -export type { SignUpBody, SignUpResponse, SignUp } +export type { SignUpResponse, SignUp } export { isSignUpResponse } diff --git a/front/src/api/token/index.ts b/front/src/api/token/index.ts index 01072d2..2c14666 100644 --- a/front/src/api/token/index.ts +++ b/front/src/api/token/index.ts @@ -1,22 +1,12 @@ import { API_URL } from '../../config' -import { fallbackTo, isString } 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 } +export { composeTokenURL, processToken } diff --git a/front/src/components/AuthForm.tsx b/front/src/components/AuthForm.tsx index 8cb45ea..0b33953 100644 --- a/front/src/components/AuthForm.tsx +++ b/front/src/components/AuthForm.tsx @@ -2,8 +2,6 @@ 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, @@ -23,11 +21,11 @@ function AuthForm({ goBack, register }: AuthFormProps) { void (async () => { const accountCreated = register ? ( - await handleSignUp(composeSignUpBody(formData)) + await handleSignUp(formData) ) : true if (accountCreated) { - if (await handleSignIn(composeSignInBody(formData))) { + if (await handleSignIn(formData)) { goBack() } } @@ -37,23 +35,11 @@ function AuthForm({ goBack, register }: AuthFormProps) { return (
- - Почта - + + Как вас называть? + - {register && <> - - Имя - - - - - Фамилия - - - } - Пароль diff --git a/front/src/hooks/api/useSignUp.ts b/front/src/hooks/api/useSignUp.ts index 374defc..81bf3ab 100644 --- a/front/src/hooks/api/useSignUp.ts +++ b/front/src/hooks/api/useSignUp.ts @@ -1,6 +1,6 @@ import { useSendWithButton } from '..' import { composeSignUpURL, processSignUp } from '../../api/signup' -import { SignUpBody, isSignUpResponse } from '../../api/signup/types' +import { isSignUpResponse } from '../../api/signup/types' function useSignUp() { const { doSend, button } = useSendWithButton( @@ -14,12 +14,9 @@ function useSignUp() { processSignUp, ) - async function handleSignUp(data: SignUpBody) { + async function handleSignUp(formData: FormData) { const res = await doSend({}, { - body: JSON.stringify(data), - headers: { - 'Content-Type': 'application/json', - }, + body: formData, }) return res ?? false