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

refactor: auth 정보 tanstack query를 이용해 관리하기 #302

Draft
wants to merge 2 commits into
base: dev
Choose a base branch
from

Conversation

kiuuon
Copy link
Collaborator

@kiuuon kiuuon commented May 1, 2024

Description

유저 정보에서 로그인 여부와, 방 참가 여부(참가 중인 방 코드)가 분리되어서 분리 된 api에 맞게 수정했습니다.
원래 fetch 후 authContext로 유저 정보를 관리하던 것을 tanstack query를 이용해 관리하도록 변경해 주었습니다.
로그인 여부와 방 참가 여부(참가 중인 방 코드)도 tanstack query를 이용해 fetch 해서 서버쪽 상태관리는 모두 tanstack query를 이용해 하도록 했습니다.
authContext 관련 파일들은 모두 삭제했습니다.

Changes Made

  • client/src/contexts/AuthProvider.tsx : 삭제
  • client/src/hooks/useAuthContext.tsx : 삭제
  • client/src/hooks/useAuthUpdateContext.tsx : 삭제
  • auth 관련 로직에 tanstack query 적용

Extra Comments

roomProvider의 isHost와 roomCode는 zustand로 이주 관련 pr이 머지되면 이어서 작업하는게 나을거 같아서 일단 Draft pr로 올렸습니다

@kiuuon kiuuon requested review from glowisn and Lukaid-dev May 1, 2024 08:34
@kiuuon kiuuon self-assigned this May 1, 2024
@kiuuon kiuuon linked an issue May 1, 2024 that may be closed by this pull request
1 task
Comment on lines +30 to +33
if (authStatusIsPending || myRoomCodeIsPending) {
// TODO: Add loading page
return <div>Loading...</div>;
}
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

처음 접속 시 로그인 여부와 방 참가 여부를 fetch하는 동안 띄울 Loading 페이지가 있으면 좋을거 같습니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Refactor: auth 정보 tanstack query를 이용해 관리하기
1 participant