feat(map): 저장한 공간 검색 API 연동 - #113
Merged
Merged
Conversation
- mock(savedPlaceSearch) 제거, GET /api/v1/places/saved/search 연결 - 입력 디바운스 300ms(post 검색과 동일 컨벤션), 건수는 서버 totalElements 사용 - 아카이브 칩 필터는 서버가 그룹 필터를 지원할 때까지 제거(UI 는 PR #95 참고) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
검색 API 연동이 끝나 배포에서도 진입점(검색 아이콘)을 항상 보여준다. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…at/search-api # Conflicts: # apps/web/src/features/map/api/index.ts # apps/web/src/features/map/api/queries.ts
- 서버 groupId 필터와 응답 groups 로 그룹 칩 복원 — 칩 목록은 필터 없는 응답 기준이라 칩을 눌러도 다른 칩이 사라지지 않고, 검색어가 바뀌면 지난 검색어의 필터를 적용하지 않는다(파생값, 이펙트 리셋은 요청이 샌다) - 검색 결과 카드에 서버 thumbnailUrl 연결 - BottomMenu 숨김(검색 모드) 레이아웃에도 스냅 보정 패딩 추가하고 패널 스크롤 영역에 배선 — full 이 아닌 스냅에서도 맨 아래 장소까지 닿는다 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
0. 링크
1. 요약
GET /api/v1/places/saved/search에 연결하고, 그룹 칩 필터·카드 썸네일까지 붙여enablePlaceSearch플래그를 제거하고 배포에서도 공개합니다.2. 작업 내용
useSearchSavedPlaces의 mock(mock/savedPlaceSearch.ts)을 제거하고 실제 API 호출(fetchSavedPlaceSearch, 첫 페이지size=100)로 교체useDebouncedValue컨벤션N건)는 목록 길이 대신 서버totalElements사용, 지역 표기는address첫 토큰, 카드 썸네일은 서버thumbnailUrl연결groupId파라미터·응답groups로 연동 — 칩 목록은 필터 없는 응답 기준이라 칩을 눌러도 다른 칩이 사라지지 않고, 검색어가 바뀌면 지난 검색어의 필터를 적용하지 않음env.enablePlaceSearch플래그 제거 — 연동이 끝나 진입점(검색 아이콘)을 항상 노출🤖 Generated with Claude Code