Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Caution Review failedThe pull request is closed. Walkthrough서버 기반 방 검색 기능과 페이징을 추가했다. 신규 API 헬퍼(getSearchRooms)와 타입을 도입하고, GroupSearch/GroupSearchResult에 연동했다. 그룹 모델의 deadLine 필드를 숫자에서 문자열(날짜/빈 문자열)로 일괄 전환했으며, 관련 컴포넌트들의 매핑을 이에 맞게 수정했다. Changes
Sequence Diagram(s)sequenceDiagram
participant U as User
participant GS as GroupSearch(Page)
participant API as getSearchRooms(API)
participant R as GroupSearchResult(Component)
U->>GS: 키워드 입력 후 검색
GS->>API: getSearchRooms(keyword, sort, cursor?, isFinalized, category)
API-->>GS: { roomList, nextCursor, isLast }
GS->>R: rooms, isLoading, isLast, error, onLoadMore 등 전달
R-->>U: 결과 리스트 렌더링
U->>R: 더 불러오기 클릭
R->>GS: onLoadMore()
GS->>API: getSearchRooms(..., cursor=nextCursor)
API-->>GS: { roomList(append), nextCursor, isLast }
GS->>R: 갱신된 props로 재렌더
sequenceDiagram
participant U as User
participant GS as GroupSearch(Page)
participant API as getSearchRooms(API)
U->>GS: 카테고리/정렬 변경
GS->>API: getSearchRooms(keyword, newSort, cursor=undefined, ...)
API-->>GS: { roomList, nextCursor, isLast }
GS-->>U: 초기 페이지로 결과 갱신
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Possibly related issues
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. 📜 Recent review detailsConfiguration used: CodeRabbit UI 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (9)
✨ Finishing Touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
#️⃣연관된 이슈
[API] Rooms API 연동 #106
📝작업 내용
getSearchRoom API를 연동했습니다. 이어서 무한 스크롤도 구현하겠습니다!
Summary by CodeRabbit
신규 기능
UX 개선