refactor:핀하우스 home 핀하우스 설정 로딩 및 컴포넌트 분리 작업#357
Merged
kyungchan3007 merged 1 commit intodevelopfrom Feb 5, 2026
Merged
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.
#️⃣ Issue Number
#356
📝 요약(Summary) (선택)
리팩토링 전/후 동작 차이 요약
• 홈 시트 하단 버튼: 이전엔 homeFullSheet.tsx에서 직접 렌더/로직 처리 → 지금은 PinpointSelectedButton로 분리되어 동일 동작을 컴포넌트로 위임.
• 라우팅/시트 닫기: 이전엔 homeFullSheet.tsx에서 useRouter + store 직접 사용 → 지금은 usePinhouseRouter 훅으로 캡슐화되어 동일 동작 유지.
• PinpointRowBox 로딩: 이전엔 로딩 분기 없이 pinpoints 기반 렌더 → 지금은 로딩/데이터 없음일 때 스켈레톤 렌더.
• 검색 카테고리 설정/매핑: 이전엔 hooks.tsx에 상수 정의 → 지금은 model.tsx로 이동되어 import 경로만 변경.