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.
📌 Related Issue
📝 Description
동적 id를 생성하여, 모달을 인스턴스화
기존 모달은 같은 전역 atom을 공유하기 때문에, 한 페이지 내 복수의 모달이 있을 경우 개별 제어가 불가능하다는 문제가 있었습니다. 동적 id 생성과 파생 atom으로 각 모달을 인스턴스화 & 메모이제이션하여 불필요한 리렌더링을 막고 개별 조작이 가능하게 개선했습니다.
커스텀 훅 개선
모달 사용법 업데이트
내장 button이 있어서 모달 매개체가 불필요하며, 버튼명으로 쓰일 title만 전달해주세요.
동일하게 닫기 버튼이 필요한 경우, props로 withCloseButton을 추가해주세요.
📸 Screenshot
순서대로 개별 렌더링 > 요소 o 포커싱 테스트 > 요소 x 포커싱 테스트

📢 Notes