Skip to content
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

회원가입 및 로그인 기능 수정 #99

Merged
merged 26 commits into from
Oct 21, 2024
Merged

회원가입 및 로그인 기능 수정 #99

merged 26 commits into from
Oct 21, 2024

Conversation

Dobbymin
Copy link
Contributor

#️⃣ 연관된 이슈

ex) #이슈번호, - #이슈번호

📝 작업 내용

이번 PR에서 작업한 내용을 간략히 설명해주세요.(이미지 첨부 가능)

  • auth provider 로 email 전역 상태관리 기능 구현
  • email을 회원가입 페이지로 가져와서 넣기
로그인 
→ token = null ⇒ 회원가입
→ token != null 
	→ isSinitto(?) = true ⇒ 시니또 홈
	→ isSinitto(?) = false ⇒ 보호자 홈  

스크린샷 (선택)

💬 리뷰 요구사항(선택)

리뷰어가 특별히 봐주었으면 하는 부분이 있다면 작성해주세요

ex) 메서드 XXX의 이름을 더 잘 짓고 싶은데 혹시 좋은 명칭이 있을까요?

⏰ 현재 버그

✏ Git Close

close #이슈번호

@Dobbymin Dobbymin added 😡 Bug Fix 발생한 버그를 수정하는 경우 ✨ Feature 새로운 기능 추가 및 구현하는 경우 labels Oct 21, 2024
@Dobbymin Dobbymin requested review from Diwoni and JYN523 October 21, 2024 16:59
@Dobbymin Dobbymin self-assigned this Oct 21, 2024
@Dobbymin Dobbymin linked an issue Oct 21, 2024 that may be closed by this pull request
Copy link
Collaborator

@JYN523 JYN523 left a comment

Choose a reason for hiding this comment

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

전체적으로 깔끔하게 잘 구현하신 것 같습니다.
고생하셨습니다!

Comment on lines 30 to 35
if (!data.isMember) return navigate(data.redirectUrl);

if (accessToken) {
const path = data.isSinitto ? RouterPath.SNITTO : RouterPath.GUARD;
window.location.href = path;
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

페이지 이동을 navigate와 window.location.href로 다르게 사용한 이유가 있을까요?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

router 설정을 잘못한건지, 이유는 모르겠지만 navigate 를 사용하니까 /redirect/~~ 로 이동하더라구요. 근데 다시 하니까 정상적으로 되는것 같습니다..
navigate로 통일하겠습니다!

@Dobbymin Dobbymin merged commit 57cb7ed into Weekly Oct 21, 2024
1 check passed
@Dobbymin Dobbymin deleted the Feat/issue-#97 branch October 21, 2024 18:18
Copy link
Collaborator

@Diwoni Diwoni left a comment

Choose a reason for hiding this comment

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

context API 로 관리하는 게 더 깔끔하네요! 고생하셨습니다!

@@ -21,5 +21,6 @@ export const getKakaoCallback = async (
code,
},
});
console.log(response.data);
Copy link
Collaborator

Choose a reason for hiding this comment

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

여기는 일부러 카카오 로그인 이후에 들어온 데이터 확인하려고 넣으신건가욤?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
😡 Bug Fix 발생한 버그를 수정하는 경우 ✨ Feature 새로운 기능 추가 및 구현하는 경우
Projects
None yet
Development

Successfully merging this pull request may close these issues.

로그인 기능 수정
3 participants