-
Notifications
You must be signed in to change notification settings - Fork 20
[김승환] 피그마 요구사항 구현 및 동적 렌더링 구현 #240
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
Open
kseysh
wants to merge
27
commits into
softeerbootcamp-7th:kseysh
Choose a base branch
from
kseysh:main
base: kseysh
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.
Open
Conversation
This file contains hidden or 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
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.
완료 작업 목록
기능요구사항
프로그래밍 요구사항
figma 요구사항
주요 고민과 해결 과정
동적 렌더링 구현
동적 렌더링을 어떻게 구현해야 할까 오랫동안 고민했습니다.. 구현 난이도는 지금까지 한 것 중에 가장 어려웠지 않았나 싶어요..
특히, 댓글을 렌더링하는 로직이 어려웠습니다. 렌더링을 위한 model에 List 값을 넣고, 각 List 값을 빼오는 로직을 구현하기가 애매했던 것 같아요.
결국 model에 List를 전달한 후, Reflection을 통해 getter 함수를 가져오고 이를 통해 comment 데이터에 접근할 수 있었습니다. Test시 private 필드에 데이터를 넣어줄 때 이외에는 Reflection을 직접 사용해본적은 없었는데, 이번 과제를 하면서 Reflection에 대해서 많이 학습해볼 수 있었습니다.