-
Notifications
You must be signed in to change notification settings - Fork 0
[Fix] 상세 화면 댓글 작성 뷰 로직 수정 #225
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
|
""" WalkthroughThe UITextViewDelegate methods in HomeDetailViewController were refactored to centralize placeholder visibility logic into a new private method. Button enabling was also improved by trimming whitespace before checking for emptiness, and direct placeholder logic was removed from shouldChangeTextIn. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant UITextView
participant HomeDetailViewController
participant PlaceholderLabel
participant CreateCommentButton
User->>UITextView: Edits text
UITextView->>HomeDetailViewController: textViewDidChange
HomeDetailViewController->>HomeDetailViewController: updatePlaceholderVisibility(textView)
HomeDetailViewController->>PlaceholderLabel: Hide/show based on text or markedText
HomeDetailViewController->>CreateCommentButton: Enable if trimmed text is not empty
Assessment against linked issues
Assessment against linked issues: Out-of-scope changes
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🧰 Additional context used🧬 Code Graph Analysis (1)Wable-iOS/Presentation/WableComponent/Cell/CommentCollectionViewCell.swift (1)
🔇 Additional comments (1)
✨ Finishing Touches
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 (
|
JinUng41
left a comment
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.
Good!
👻 PULL REQUEST
📄 작업 내용
💻 주요 코드 설명
조합 중인 텍스트 확인 로직 추가
markedTextRange를 사용하면 조합 중인 텍스트를 확인할 수 있다고 합니다.🔗 연결된 이슈
Summary by CodeRabbit