Skip to content

Feature(#236): 로그인/회원가입 페이지 작업 #239

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

LellowMellow
Copy link
Collaborator

작업 개요

작업 사항

  • App.tsx 코드 정리, Login 페이지 이름 변경
  • SignIn 파트 UI 구성
  • SignUp 파트 UI 구성
  • SignUp 입력값 유효 여부 판단 처리
  • SignIn API 로직 추가
  • SignUp API 로직 추가

고민한 점들(필수 X)

현재 구글 로그인을 대신하여 로그인을 진행하기 때문에 최대한 간단하게 구현하기 위해 로그인과 회원가입을 한 페이지에서 처리할 수 있도록 하였습니다. 우선, 로그인과 회원가입을 한 곳에서 처리하도록 UI 작업을 진행하였습니다.

API 요청에 따른 결과값에 따라 Toast 표시와 더불어 페이지 이동과 같은 추가적인 로직을 반영하여 작업을 완료하였습니다.

스크린샷(필수 X)

로그인/회원가입 전환

2023-12-09.20-28-22.mp4

로그인/회원가입 반응형 처리

2023-12-09.20-28-01.mp4

회원가입 입력값 유효 여부 판단/신규 유저 가입 성공

2023-12-09.20-32-10.mp4

존재하는 유저 가입 시도 처리

2023-12-09.20-31-43.mp4

로그인 입력값 유효 여부 판단

2023-12-09.20-30-58.mp4

존재하지 않는 유저 로그인 시도 처리

2023-12-09.20-31-19.mp4

로그인 성공

2023-12-09.20-29-56.mp4

- login 페이지 이름을 UserAuth로 변경하였습니다.
- App.tsx 코드를 순서에 맞게 정리하였습니다.
- 로그인/회원가입 페이지 작업을 위한 이미지를 추가하였습니다.
- 로그인 UI 작업을 완료하였습니다.
- 회원가입 UI 작업을 완료하였습니다.
- 각각의 입력 필드에 대한 검증을 진행하고, 문제가 없을 경우 이를
  표시하도록 처리하였습니다.
- 로그인과 회원가입 API 연동을 완료하였습니다.
- login 페이지 이름을 UserAuth로 변경하였습니다.
- App.tsx 코드를 순서에 맞게 정리하였습니다.
- 로그인/회원가입 페이지 작업을 위한 이미지를 추가하였습니다.
- 로그인 UI 작업을 완료하였습니다.
- 회원가입 UI 작업을 완료하였습니다.
- 각각의 입력 필드에 대한 검증을 진행하고, 문제가 없을 경우 이를
  표시하도록 처리하였습니다.
- 로그인과 회원가입 API 연동을 완료하였습니다.
Copy link

netlify bot commented Dec 9, 2023

Deploy Preview for boarlog ready!

Name Link
🔨 Latest commit 15776e8
🔍 Latest deploy log https://app.netlify.com/sites/boarlog/deploys/657551c81bd65300084a7d41
😎 Deploy Preview https://deploy-preview-239--boarlog.netlify.app/
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

- 잘못 변경한 state값을 수정하였습니다.
@LellowMellow LellowMellow self-assigned this Dec 9, 2023
@LellowMellow LellowMellow added ✨ Feat 기능 개발 FE 프론트엔드 작업 labels Dec 9, 2023
@LellowMellow LellowMellow added this to the 5주차 milestone Dec 9, 2023
Copy link
Collaborator

@Jw705 Jw705 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

주말인데도 고생 많으셨습니다! 예외처리를 꼼꼼히 신경 쓰신 것이 인상적이네요 👍👍


const handlePasswordConfirm = (e: React.ChangeEvent<HTMLInputElement>) => {
setPasswordConfirm(e.target.value);
setIsPasswordConfirm(e.target.value === password);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

사소한 내용이긴 하지만, 이 조건문은 "비밀번호"와 "비밀번호 확인" input 태그가 둘다 비어있어도 true를 반환하는 것 같아요! e.target.value에 내용이 있는지 확인하는 내용도 있으면 더 좋을 것 같습니다!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

생각해보니 맞네요..! value에 값이 있는지를 판단해서 띄워주도록 해야할 것 같습니다 ㅠㅠ

<h1 className="semibold-64">Boarlog</h1>
<h2 className="semibold-20 text-grayscale-darkgray">기록으로 남기는 실시간 강의</h2>
</div>
{isSignIn ? <></> : <></>}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이 부분은 무엇을 위한 건지 궁금하네요! ㅎㅎ

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

헉...! SignIn인지 판단하기 위해서 복붙해서 사용할 코드를 그냥 두었네요... ㅠㅠㅠ 제거하겠습니다 :)

Copy link
Collaborator

@Byeonjin Byeonjin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

정말 고생하셨어요 ㅜㅜ

- 비밀번호 확인 시에 해당 빈칸에 값이 들어있는지의 여부를 판단하도록
  하였습니다.
- 추가적으로 불필요한 코드를 제거하였습니다.
@LellowMellow LellowMellow merged commit df17cf7 into boostcampwm2023:dev Dec 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FE 프론트엔드 작업 ✨ Feat 기능 개발
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature: SignIn, SignUp 페이지 작업
3 participants