-
Notifications
You must be signed in to change notification settings - Fork 0
[Feat] review v2 logevent #429
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
Draft
HI-JIN2
wants to merge
2
commits into
develop
Choose a base branch
from
feat/review-v2-logevent
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -9,20 +9,17 @@ enum class ScreenId(val value: String) { | |||||||||||||||||
| HOME_MAIN("MNU_001000"), | ||||||||||||||||||
| HOME_INFO("MNU_002000"), | ||||||||||||||||||
|
|
||||||||||||||||||
| REVIEW_V1_VIEW("REV_001000_V1"), | ||||||||||||||||||
| REVIEW_V1_WRITE("REV_001001_V1"), | ||||||||||||||||||
| REVIEW_V1_WRITE_RATE("REV_001002_V1"), | ||||||||||||||||||
| REVIEW_V1_LOGIN_REQUIRED("REV_001003_V1"), // TODO: 필수 로그인이라 사용하지 않음 | ||||||||||||||||||
| REVIEW_V1_MODIFY("REV_001004_V1"), // TODO: Figma에 존재하지 않음 | ||||||||||||||||||
|
|
||||||||||||||||||
| REVIEW_V2_1("REV_001000_V2"), | ||||||||||||||||||
| REVIEW_V3_1("REV_001000_V3"), | ||||||||||||||||||
| REVIEW_V2_3("REV_001001"), | ||||||||||||||||||
| REVIEW_V2_4("REV_003001"), | ||||||||||||||||||
| REVIEW_V2_5("REV_001003"), | ||||||||||||||||||
|
|
||||||||||||||||||
| // V1과 V2가 같음 | ||||||||||||||||||
| REVIEW_REPORT("REV_002000"), | ||||||||||||||||||
| REVIEW_V2_VIEW("REV_001001_V2"), | ||||||||||||||||||
| REVIEW_V3_VIEW("REV_001000_V3"), // todo 사진 모아보기가 있는 v3 버전 | ||||||||||||||||||
|
|
||||||||||||||||||
| REVIEW_V2_WRITE("REV_001001_V2"), | ||||||||||||||||||
|
Comment on lines
+12
to
+15
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
|
|
||||||||||||||||||
| REVIEW_V2_MODIFY("REV_001002_V2"), | ||||||||||||||||||
|
|
||||||||||||||||||
| REVIEW_V3_PHOTO("REV_003000"), //todo 포토리뷰 | ||||||||||||||||||
| REVIEW_V3_PHOTO_DETAIL("REV_003001"), //todo 포토리뷰 | ||||||||||||||||||
|
|
||||||||||||||||||
| REVIEW_REPORT("REV_002000"), // V1과 V2가 같음 | ||||||||||||||||||
|
|
||||||||||||||||||
| MAP_MAIN("MAP_001000"), | ||||||||||||||||||
| MAP_DETAIL("MAP_001001"), | ||||||||||||||||||
|
|
||||||||||||||||||
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.
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.
EventLogger.writeReview()함수는 v1 리뷰 작성 시작 이벤트(WRITE_REVIEW_V1)를 로깅하도록 구현되어 있습니다. 현재 v2 리뷰 기능에 대한 로깅을 추가하고 있으므로, v1 이벤트를 사용하는 것은 적절하지 않습니다.EventLogger에writeReviewV2와 같은 새로운 함수를 추가하여 v2에 맞는 이벤트를 로깅하거나, 이 이벤트의 목적을 다시 확인해주세요.EventLogger.kt의writeReview함수에//todo v2로 바꿀시 v1 제거라는 주석이 있는 것으로 보아 수정이 필요한 부분으로 보입니다.