[feat/#22] 스터디 상세, 내 스터디 화면 일부 구현 완료#45
Merged
Conversation
|
Caution Review failedThe pull request is closed. 스터디 디테일 화면 구현 (Study Detail Screen Implementation)Walkthrough학습 그룹의 상세 정보를 보여주는 스터디 디테일 스크린을 구현합니다. 홈, 플래너, 게시판, 회고록 탭으로 구성되며, 멤버 관리, 일정 조회, 투두 CRUD, 회고록 작성 및 반응 기능을 포함합니다. 기존 캘린더 컴포넌트를 제거하고 새로운 SpotPlannerCalendar를 도입합니다. Changes
Sequence Diagram(s)sequenceDiagram
participant UI as StudyDetailScreen
participant VM as StudyDetailViewModel
participant Repo as StudyRepository
participant DS as StudyDataSource
participant API as StudyService API
UI->>VM: fetchStudyHomeDetail(studyId)
VM->>Repo: getStudyDetail(studyId)
Repo->>DS: getStudyDetail(studyId)
DS->>API: GET /study/{studyId}
API-->>DS: StudyDetailResponseDto
DS-->>Repo: StudyDetailResponseDto
Repo->>Repo: toDomain() 변환
Repo-->>VM: StudyDetailModel
par 병렬 요청
VM->>Repo: getStudyMembers(studyId)
VM->>Repo: getUpcomingSchedules(studyId)
VM->>Repo: getStudyRecentMemoirs(studyId)
end
Repo->>DS: getStudyMembers/getUpcomingSchedules/getStudyRecentMemoirs
DS->>API: 병렬 API 호출
API-->>DS: 응답 DTOs
DS-->>Repo: 응답 DTOs
Repo->>Repo: toDomain() 변환
Repo-->>VM: 도메인 모델들
VM->>VM: uiState 업데이트
VM-->>UI: 상태 변경 알림
UI->>UI: 탭별 화면 렌더링 (HOME/PLANNER/BOARD/MEMOIR)
alt 투두 생성
UI->>VM: createTodo(studyId, content, dueDate)
VM->>Repo: createTodo(studyId, content, dueDate)
Repo->>DS: createTodo(...)
DS->>API: POST /study/{studyId}/todo
API-->>DS: TodoCreateResponseDto
DS-->>Repo: TodoCreateResponseDto
Repo-->>VM: Long (todoId)
VM->>VM: todoList 업데이트
VM-->>UI: 상태 변경 알림
end
alt 회고록 작성
UI->>VM: postMemoir(studyId, activity, learned, encouragement, isPrivate, imageFiles)
VM->>Repo: postMemoir(studyId, memoirCreateModel, imageFiles)
Repo->>DS: postMemoir(...) with multipart
DS->>API: POST /study/{studyId}/memoir (multipart)
API-->>DS: MemoirCreateResponseDto
DS-->>Repo: MemoirCreateResponseDto
Repo-->>VM: Long (reviewId)
VM->>VM: MemoirPostSuccess 사이드이펙트 발행
VM-->>UI: 네비게이션 트리거
end
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Possibly related PRs
Suggested reviewers
Poem
✨ Finishing touches
🧪 Generate unit tests (beta)
Important Action Needed: IP Allowlist UpdateIf your organization protects your Git platform with IP whitelisting, please add the new CodeRabbit IP address to your allowlist:
Reviews will stop working after February 8, 2026 if the new IP is not added to your allowlist. 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. Comment |
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.
Related issue 🛠
Work Description 📝
Screenshot 📸
Uncompleted Tasks 😅
PR Point 📌
출석체크 화면이랑, 일정 생성 모달은 이번주내로 만들어볼게요
트러블 슈팅 💥
Summary by CodeRabbit
릴리스 노트
새로운 기능
UI/UX 개선