-
Notifications
You must be signed in to change notification settings - Fork 2
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
Feat: 로그인 시 토큰 저장 및 middleware 설정 #40
Conversation
middleware.ts
Outdated
// /start-family 페이지로 접근하는데 token이 없을 경우 : 리다이렉션 | ||
// /start-family 페이지로 접근하는데 token이 없지만 쿠키가 있을 경우 : 페이지 접근 | ||
// 추후 배포됐을 때 수정. | ||
if (path === '/start-family' && hasQuery) { |
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.
이부분은 고민을 더 해보는게 좋아보이네요. 이렇게 if문이 많이 생기면 가독성이 확 떨어집니다.
객체 맵핑을 사용해도 좋고, 아니면 더 줄일 수 있는 방법을 고민해봐야할듯 해요
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.
넵 수정하겠습니다!
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.
미들웨어 쓰임새를 또 배웁니다. 고생하셨습니다~
middleware.ts
Outdated
} | ||
|
||
export const config = { | ||
matcher: ['/login', '/start-family'], |
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.
matcher: [ ...PROTECTED_PAGES, ...PUBLIC_PAGES ]
여길 이렇게 바꿀 수 있을까 생각해봤습니다
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.
오... 어떻게 넣을까 고민했었는데 스프레드가 있었군요
감사합니다 변경하겠습니다!
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.
주석 덕분에 코드가 잘읽히네요!
…feature/start-family
Feat: 로그인 시 토큰 저장 및 middleware 설정
#️⃣연관된 이슈
📝작업 내용
start-family
middleware
스크린샷 (선택)
💬리뷰 요구사항(선택)