-
Notifications
You must be signed in to change notification settings - Fork 1
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
[#649] SSR을 위해 JWT 토큰을 쿠키에 저장하도록 수정 #658
Conversation
…er 구현 - cookie, token 관련 constants key 상수로 분리
- 세션 관련 함수 디렉토리 구조 수정
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
⚡️ Lighthouse Average Scores Across Reports:
⚡️ Average Details Across All Reports:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1주일동안 정말 쉽지 않은 테스크였음에도 불구하고
잘 구현해 주신것 같아요!! 정말 고생하셨습니다!!!! 💯
(코드도 가독성 있게 잘 작성해주셨고 주석도 도움이 많이 되었어요 👍 )
몇가지 코멘트 남겨놓았으니 편하게 확인해주시면 될것같아요 🙌
그리고 지금 당장 수정하고 구현해야할 사항은 아니지만
저희가 잊고 넘어갈 수 있을 것 같아 바로 밑에 몇 가지 생각나는 부분을 적어볼게요!
- 존재하지 않은
/profile/[id]
접근시 에러 페이지 처리 - KAKAO_LOGIN_URL의 redirectURI 수정
- 추가 프로필 등록이 필요할 것 같은 페이지 고민해보기
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
짱 고생하셨습니다!!!! 💯
구현 내용
/server/session.ts
DID_PUI
쿠키를 통해 클라이언트 컴포넌트에서는 auth 여부를 확인해요.jose
라이브러리를 추가했어요.DID
라는 prefix를 붙이고, 상수의 의미를 3글자로 줄여 표현해봤어요!/profile/redirect
route handler를 추가했어요.DID_PAF
)를 확인하고, 조건에 따라 리다이렉션을 수행해요.공유할 내용
📣 env를 업데이트해주세요!
Help
DID_PUI
), 클라이언트 컴포넌트가 document를 통해 접근할 수 있도록 구현했어요.관련 이슈