Merged
Conversation
- 웹뷰에서 전달받은 'SHARE' 메시지를 처리하여 네이티브 공유하기(Share.share) 기능을 실행하는 로직 추가 - WebView 컴포넌트에 onMessage 핸들러 연결
걸어보기클럽 상세 화면 컴포넌트에 WebView 메시지 지원을 추가했습니다. SHARE 메시지를 처리하는 핸들러를 구현하고 React Native Share API와 통합하여 제목, 텍스트, URL을 공유할 수 있도록 했습니다. 문자열 인용 부호 일관성 개선 및 스타일 미세 조정도 포함되었습니다. 변경 사항
시퀀스 다이어그램sequenceDiagram
participant WebView
participant ClubDetailScreen as Club Detail Screen
participant ShareAPI as React Native Share
WebView->>ClubDetailScreen: onMessage(SHARE event)
activate ClubDetailScreen
ClubDetailScreen->>ClubDetailScreen: handleMessage(event)
ClubDetailScreen->>ClubDetailScreen: Extract title, text, URL
deactivate ClubDetailScreen
ClubDetailScreen->>ShareAPI: Share.share({title, text, url})
activate ShareAPI
ShareAPI->>ShareAPI: Show share sheet
ShareAPI-->>ClubDetailScreen: Share result
deactivate ShareAPI
예상 코드 리뷰 노력🎯 3 (보통) | ⏱️ ~20 분 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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. Comment |
SeongHoonC
approved these changes
Jan 24, 2026
Collaborator
SeongHoonC
left a comment
There was a problem hiding this comment.
필요없는 부분이 추가된 것 같은데 변경해도 문제 없을 것 같아 머지하고 넘어가겠습니다. 다음부터 확인해주세요
Member
Author
다음부터 확인하고 올리겠습니다! |
This was referenced Jan 25, 2026
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
릴리스 노트
새로운 기능
스타일
✏️ Tip: You can customize this high-level summary in your review settings.