Merged
Conversation
- 웹페이지 삭제 항목 숨김 처리 적용 - 토스트 종료 시 숨김 항목 제거 처리 - 복구 직후 메타데이터 재동기화 적용 - Home 섹션 로딩 표시 조건 정리
Contributor
There was a problem hiding this comment.
Code Review
이번 풀 요청은 PushNotificationItem, TodoListItem, WebPageItem에 isHidden 속성을 추가하여 삭제 취소 기능을 지원하는 소프트 삭제 로직을 구현했습니다. 이에 따라 ViewModel은 삭제 시 항목을 즉시 제거하는 대신 숨김 처리하고, 토스트가 사라질 때 최종적으로 제거하도록 변경되었습니다. 리뷰 피드백으로는 연속 삭제 시 발생할 수 있는 상태 잔류 문제를 방지하기 위해 isHidden 상태인 모든 항목을 일괄 제거할 것과, 알림 병합 로직의 시간 복잡도를 O(N+M)으로 최적화할 것, 그리고 UI 코드 내 iOS 버전 체크 오타(iOS 26.0)를 수정할 것을 제안했습니다.
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.
🔗 연관된 이슈
📝 작업 내용
📌 요약
🔍 상세
WebPageItem,TodoListItem,PushNotificationItem에isHidden상태 추가HomeViewModel,TodoListViewModel,PushNotificationListViewModel에서 삭제 시 hide, 토스트 종료 시 실제 remove, undo 시 unhide 처리 적용HomeView,TodoListView,PushNotificationListView에서 hidden 항목 제외 렌더링 및 마지막 항목 판별 기준 보정addWebPageUseCase재호출로 메타데이터 복원 유지📸 영상 / 이미지 (Optional)