-
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
최종 PR #13
Open
hae2ni
wants to merge
48
commits into
empty
Choose a base branch
from
review
base: empty
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Design#2 mainui
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
배포 링크
🛠️ 기술 스택
REACT
typescript
👏 역할 분담
GET 검색
상세 페이지 GET
💡 기능 명세
1. 온보딩 페이지
2. 검색 페이지
3. 책 상세 페이지
✨ PR POINT
1. 검색 페이지 SWR GET
검색 부분의 state를
useInput
state로 관리하였습니다.그래서, 이후에 onChange를 통해서 검색한 값을 관리하고, 해당 검색 값을 버튼이 눌렸을 때
화면에
'해리포터'에 관한 검색 결과입니다.
등과 같의 띄우기 위하여,confirmValue
와setConfirmValue
의 state로 관리하였습니다.따라서,
이렇게 완료 되었습니다!
멘토분들께 질문이 있습니다!
by 혜인
첫번째 고민으로는, input의 값을 useRef가 아니라 useState로 관리하고 있어, 원하지 않는 재렌더링이 일어날 것 같다는 생각이 들었습니다. 이 부분에서, useRef로 관리하는게 올바른 방식인지 궁금합니다!!
2. 검색 페이지 SWR GET 통신
최상단에서 GET통신을 해주었습니다.
버튼을 눌렀을 때 화면에 뜨는 변수인
confirmValue
가 있을 때에만 통신을 할 수 있도록, swr을 이용해 코드를 짰습니다.이렇게 받아온 data를 Book 컴포넌트에 넣어두었습니다.
멘토분들께 질문이 있습니다!
by 혜인
여기서, swr을 이용한 get 통신에서 틀린 게 있는지 여쭙고 싶습니다!!
멘토분들께 질문이 있습니다!
by 언석
search 페이지에서 데이터들을 쫘라락 받는데
그렇다면 각 책에 대한 상세 페이지 정보도 다 받아온다는 건데
이를 상세 페이지에 어떻게 전달을 해야할 지 고민을 했습니다.
원래는
state를 하나 만들어서 상세 페이지 클릭 시 해당 인덱스 번호를 넘겨줘서
이런 식으로 하고 props로 search page에서 받은 데이터를 detail page에 넘겨주려고 했는데,
클릭된 책이 무엇인지 인덱스 찾아야 하고, 그에 맞는 데이터 전달해야 하고 추가적인 task가 많을 거 같아서
그냥 동적 router 설정하고
params로 책 제목 넘겨준 뒤 해당 책제목으로 한 번 더 API 요청 하는 식으로 진행하였습니다!
이렇게 할 때 우려되는 부분이 불필요한 API 요청을 한 번 더 하게 된 것이 아닌가 싶었는데요
보통 이런 상품 페이지의 상세 페이지를 클릭할 때, 한 번 더 API 요청을 하는지 어떻게 하는지 궁금했습니다!!!!