-
Notifications
You must be signed in to change notification settings - Fork 0
[Feature] 홈 화면 최근 출석내역 #201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Important Review skippedAuto reviews are limited to specific labels. 🏷️ Labels to auto review (1)
Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Walkthrough최근 출석 내역을 홈 화면에 표시하고, 전체 출석 내역 화면으로 이동하는 네비게이션을 추가하는 기능이 도입되었습니다. 관련 데이터 모델, UI, ViewModel, 네비게이션 및 문자열 리소스가 확장 및 수정되었습니다. 네비게이션 함수 네이밍도 일관성 있게 변경되었습니다. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant HomeScreen
participant HomeViewModel
participant AttendanceRepository
participant Navigator
User->>HomeScreen: 홈 진입
HomeScreen->>HomeViewModel: HomeIntent.EnterHomeScreen
HomeViewModel->>AttendanceRepository: 출석 내역 조회
AttendanceRepository-->>HomeViewModel: AttendanceHistoryList 반환
HomeViewModel->>HomeScreen: 최근 출석 내역 상태 업데이트
User->>HomeScreen: "전체 보기" 클릭
HomeScreen->>HomeViewModel: HomeIntent.ClickShowAllAttendanceHistory
HomeViewModel->>HomeScreen: HomeSideEffect.NavigateToAttendanceHistory
HomeScreen->>Navigator: navigateAttendanceHistory()
Assessment against linked issues
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
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. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
}.onFailure { e -> | ||
when (e) { | ||
is InvalidTokenException -> postSideEffect(HomeSideEffect.NavigateToLogin) | ||
else -> e.record() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
R: postSideEffect(HomeSideEffect.HandleException(it)) 을 통해 문제가 발생했음을 유저에게 알려주세요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NoScheduleSeesionException에만 handleException(it) 하지 않도록 할까요??
-> 넵! 요렇게 처리 부탁드릴게요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요거랑 출석 현황 새로고침 처리했어요
feature/home/src/main/java/com/yapp/feature/home/component/HomeHeader.kt
Show resolved
Hide resolved
Pull To Refresh할 때 최근 출석 현황도 업데이트되면 좋을거같아요! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인했습니다
고생하셨어요!
19b2431
to
4bc3c72
Compare
💡 Issue
🌱 Key changes
✅ To Reviewers
현재 홈 화면
Pull To Refresh
시에 임박한 세션의 출석 버튼의 갱신을 위해 해당 부분만 API 재호출 중인데최근 출석 현황도 업데이트 수단이 필요할지... 고민되네요
📸 스크린샷
Summary by CodeRabbit
신규 기능
개선 사항
문서 및 리소스
기타