[Park] AvatarGroup 내부 로직 리팩토링 (cloneElement, Children 관련) #61
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.
close #60
이번에 리액트 문서(Children, cloneElement) 를 읽어보면서, 제안하고 있는 대체 방법으로 우리의 코드를 개선할 수 있을지 고민해보고, 적용해보았습니다.
-> 어차피 Avatar 에 커플링되는 컴포넌트라면 AvatarProp 형태의 객체배열을 받아 사용하는게 낫다고 생각하였고, Children 관련 util 을 모두 제거하고, avatars 를 통해 아바타 관련 객체배열을 전달받아 사용하는 것으로 대체하였습니다.
-> 사용자가 Avatar 컴포넌트를 직접 사용하여 넣는방식 대신 AvatarGroup 컴포넌트 내부에서 풀어 사용하면 굳이 cloneElement 를 사용하지 않아도 되겠다고 생각하여 대체하였습니다.
이 외에도 중복된 로직이라고 생각되는 부분을 isOverMax 등의 변수를 활용하여 제거하였습니다.