-
Notifications
You must be signed in to change notification settings - Fork 62
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
[4팀 윤영서] [Chapter 1-3] React, Beyond the Basics #39
Open
YeongseoYoon-hanghae
wants to merge
18
commits into
hanghae-plus:main
Choose a base branch
from
YeongseoYoon-hanghae:main
base: main
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
[4팀 윤영서] [Chapter 1-3] React, Beyond the Basics #39
YeongseoYoon-hanghae
wants to merge
18
commits into
hanghae-plus:main
from
YeongseoYoon-hanghae:main
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
YeongseoYoon-hanghae
force-pushed
the
main
branch
2 times, most recently
from
January 2, 2025 11:48
323f632
to
5550d16
Compare
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.
과제 체크포인트
기본과제
심화 과제
과제 셀프회고
기술적 성장
Object.prototype.hasOwnProperty()와 Object.is()를 통한 비교
hasOwnProperty
는 객체의 특정 프로퍼티가 객체 자신의 속성인지 확인하는 메서드로, 객체 자신의 고유한 속성만을 비교합니다.실제로 리액트의 shallowEquals 또한 hasOwnProperty를 통해 구현되어 있습니다.
리액트의
shallowEquals
코드 일부와 제가 작성한shallowEquals
코드 일부입니다.두 로직의 공통점은 기본 로직에 있습니다. objA의 키를 모두 순회하면서 키가 objB의 키인지를 비교하고, 값이 같은지 판별합니다.
차이점은 리액트에서는
Object.is
를 통해, 제가 작성한 코드에서는 단순 참조 비교===
를 통해 비교한다는 것입니다.===
는 단순히 참조만 비교하여 객체, 배열 등의 내부 값까지는 비교하지 못하기 때문에Object.is
를 사용하여 비교하면 좀 더 깊은 비교가 가능합니다.실제로 리액트 공식문서에서도
Object.is
를 통해 비교한다는 것이 나와있음에도 이를 간과하여 과제 후 수정하였습니다.memo
처음에는 다음과 같이 코드를 작성했습니다.
이렇게 작성하니 테스트는 통과했지만
useRef
를 두 번 사용하여야 했고, 기존 준일님께서 주셨던 과제는 tsx가 아닌 ts였음에도 위와 같이 코드를 작성하니 tsx로 변경을 해야만 했습니다.그래서 다음과 같이 수정하였습니다.
이렇게 작성하니 ts를 tsx로 변경해 줄 필요도 없었고, useRef를 두 번 사용할 필요도 없어졌습니다.
학습 효과 분석
리액트를 사용하면서도 내부 구현이 어떻게 되어있는지, 최적화는 어떻게 진행되는 지에 대해 생각하지 않고 사용하고 있었는데, 과제 덕분에 리액트 내부 구현도 살펴보며 리액트에 대해 더욱 이해할 수 있게 되었습니다.
리뷰 받고 싶은 내용
memo
앞서 말씀드린 memo관련 코드입니다.
위와 같이 작성한 코드는 tsx로 파일을 변경하지 않아도 되고, useRef를 여러개 사용하지 않아도 되나 기존 과제에 달려있던 주석인
// 1. 이전 props를 저장할 ref 생성
을 위배(?)한다는 점이 조금 찝찝하게 느껴집니다.위와 같이 구현해도 memo가 지향하는 방향은 같다고 볼 수 있을까요?
폴리필에 대하여
사실 이번 과제의 주 내용은 아닙니다만 폴리필에 관하여 궁금한 점이 있습니다.
이번 과제를 진행하면서, 리액트에서는
Object.is()
및Object.prototype.hasOwnProperty()
를 자체적으로 폴리필하여 사용하고 있다는 사실을 알게 되었습니다.저희 회사에서도 최근 JS에 추가된 메서드를 안전하게 사용하기 위해 폴리필을 진행해보자는 의견이 있었기 때문에 이번 과제를 통해 진행해보자는 생각에 진행하였습니다.
로 설정하였는데, 실무에서 어떻게 기준을 세워 정하는지 궁금합니다.