Skip to content

Conversation

@HI-JIN2
Copy link
Member

@HI-JIN2 HI-JIN2 commented Dec 21, 2025

Summary

Describe your changes

Issue

  • Resolves #

To reviewers

@HI-JIN2 HI-JIN2 self-assigned this Dec 21, 2025
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @HI-JIN2, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on integrating robust event logging into the 'review v2' feature set. The primary goal is to gain deeper insights into user behavior within the review flow, from viewing review lists to writing and modifying reviews. By tracking screen views and detailed submission metrics, the team can better understand feature engagement and optimize the user experience.

Highlights

  • Event Logging Implementation: Introduced comprehensive event logging across various review-related screens (list, modify, write) to track user interactions and screen views.
  • Screen ID Refinement: The ScreenId enum has been updated and clarified, removing outdated V1 entries and adding more specific V2 and V3 identifiers for review, write, modify, and photo-related screens.
  • Detailed Review Completion Logging: Enhanced the review submission process to log detailed information upon completion, including the user's rating, the number of liked menus, and whether a photo was attached.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

이번 PR은 리뷰 v2 기능에 대한 로깅 이벤트를 추가하는 것을 목표로 하고 있습니다. 화면 조회 및 액션에 대한 로깅이 추가된 점이 좋습니다. 다만, 중복된 화면 ID와 v1/v2 이벤트 로깅이 혼용된 부분이 발견되어 수정이 필요해 보입니다. 자세한 내용은 아래 리뷰 코멘트를 참고해주세요.

Comment on lines +12 to +15
REVIEW_V2_VIEW("REV_001001_V2"),
REVIEW_V3_VIEW("REV_001000_V3"), // todo 사진 모아보기가 있는 v3 버전

REVIEW_V2_WRITE("REV_001001_V2"),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

REVIEW_V2_VIEWREVIEW_V2_WRITE의 화면 ID 값이 "REV_001001_V2"로 동일합니다. 화면 구분을 위해 각 화면 ID는 고유한 값을 가져야 합니다. 이 값이 중복되면 애널리틱스에서 두 화면을 구분할 수 없어 데이터 정확성에 심각한 문제가 발생합니다. REVIEW_V2_VIEW의 값을 다른 고유한 값으로 수정하는 것을 제안합니다. 예를 들어, 삭제된 REVIEW_V2_1의 값이었던 "REV_001000_V2"를 사용할 수 있습니다.

Suggested change
REVIEW_V2_VIEW("REV_001001_V2"),
REVIEW_V3_VIEW("REV_001000_V3"), // todo 사진 모아보기가 있는 v3 버전
REVIEW_V2_WRITE("REV_001001_V2"),
REVIEW_V2_VIEW("REV_001000_V2"),
REVIEW_V3_VIEW("REV_001000_V3"), // todo 사진 모아보기가 있는 v3 버전
REVIEW_V2_WRITE("REV_001001_V2"),

onImageDelete = { viewModel.setSelectedImage(null) },
onSubmit = { viewModel.postReview(menuType, id, context) }
onSubmit = {
EventLogger.writeReview()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

EventLogger.writeReview() 함수는 v1 리뷰 작성 시작 이벤트(WRITE_REVIEW_V1)를 로깅하도록 구현되어 있습니다. 현재 v2 리뷰 기능에 대한 로깅을 추가하고 있으므로, v1 이벤트를 사용하는 것은 적절하지 않습니다. EventLoggerwriteReviewV2와 같은 새로운 함수를 추가하여 v2에 맞는 이벤트를 로깅하거나, 이 이벤트의 목적을 다시 확인해주세요. EventLogger.ktwriteReview 함수에 //todo v2로 바꿀시 v1 제거 라는 주석이 있는 것으로 보아 수정이 필요한 부분으로 보입니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants