Conversation
feat: 참여 후 모임방 상세 화면 구현
feat: comments api 구현
feat: 독서메이트 목록 페이지 구현
feat: 마이페이지 프로필 편집 API 연동
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
Caution Review failedThe pull request is closed. Walkthrough댓글/피드/사용자 API 모듈을 대거 추가하고, 댓글·답글 컴포넌트와 모달/팝업 스토어를 리팩터링했습니다. 그룹 상세·멤버 목록 섹션과 관련 스타일/페이지를 신설했고, 마이페이지는 API 연동으로 전환했습니다. 검색은 디바운스 훅과 무한스크롤 기반으로 교체됐으며, 일부 프로퍼티/타입 정합성(닉네임, 프로필 등) 수정과 라우트/파비콘/장르 데이터가 갱신되었습니다. Changes
Sequence Diagram(s)sequenceDiagram
participant UI as Reply/SubReply UI
participant Popup as PopupActions
participant API as comments.deleteComment
participant Store as ReplyList(onReload)
UI->>Popup: openConfirm("댓글을 삭제할까요?")
alt Confirmed
UI->>API: deleteComment(commentId)
API-->>UI: { isSuccess, data: { postId } }
alt isSuccess
UI->>Popup: openSnackbar("삭제됐어요")
UI->>Store: onDelete()/onReload()
else Fail
UI->>Popup: openSnackbar(errorMsg)
end
UI->>Popup: closePopup()
else Canceled
Note over UI: no action
end
sequenceDiagram
participant Post as PostFooter
participant API as feeds.postFeedLike
Post->>API: postFeedLike(feedId, !liked)
API-->>Post: { isSuccess, data: { isLiked } }
alt isSuccess
Post->>Post: setLiked/isLiked, update likeCount
else Fail
Post->>Post: log error
end
sequenceDiagram
participant Page as FeedDetailPage
participant C as comments.getComments
participant F as feeds.getFeedDetail
Page->>C: fetch comments (postType/cursor/size)
Page->>F: fetch feed detail
par Concurrent
C-->>Page: CommentData[]
F-->>Page: Feed detail
end
Page->>UI: render detail + comments
Estimated code review effort🎯 4 (Complex) | ⏱️ ~45 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (3)
📒 Files selected for processing (58)
✨ Finishing Touches
🧪 Generate unit tests
🪧 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 comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
이하동일
Summary by CodeRabbit
신기능
개선
변경