Skip to content

Conversation

@LeeCh0129
Copy link
Contributor

@LeeCh0129 LeeCh0129 commented Aug 4, 2025

📌 변경 사항 개요

  • 후기 작성 완료 후 모달 자동닫기

📝 상세 내용

  • 후기 작성 완료 후 모달 자동닫기

🔗 관련 이슈

🖼️ 스크린샷(선택사항)

💡 참고 사항

Summary by CodeRabbit

  • 버그 수정
    • 리뷰 작성 후 성공 시 리뷰 모달이 즉시 닫히도록 개선되었습니다.

@LeeCh0129 LeeCh0129 self-assigned this Aug 4, 2025
@LeeCh0129 LeeCh0129 added the 🔨 Refactor 코드 리팩토링 label Aug 4, 2025
@coderabbitai
Copy link

coderabbitai bot commented Aug 4, 2025

Walkthrough

handleReviewClose() 함수가 createReviewMutation.mutateonSuccess 콜백 내에 추가되어, 리뷰 생성 성공 시 리뷰 모달이 즉시 닫히도록 변경되었습니다. 이로써 리뷰 생성과 관련된 쿼리 무효화와 모달 닫힘이 연계됩니다.

Changes

Cohort / File(s) Change Summary
리뷰 생성 성공 시 모달 닫기
src/app/(with-header)/mypage/reservations/page.tsx
createReviewMutation.mutateonSuccess에서 handleReviewClose() 호출 추가로, 리뷰 생성 후 모달이 즉시 닫히도록 수정

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

🐇
리뷰를 남기고 모달을 닫네,
한 번의 클릭에 변화가 있네.
성공의 순간, 창은 닫히고
토끼는 기뻐 깡충 뛰네,
코드 한 줄로 봄이 오네!

Note

⚡️ Unit Test Generation is now available in beta!

Learn more here, or try it out under "Finishing Touches" below.


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between d84b28f and 5ea8c5b.

📒 Files selected for processing (1)
  • src/app/(with-header)/mypage/reservations/page.tsx (1 hunks)
🔇 Additional comments (1)
src/app/(with-header)/mypage/reservations/page.tsx (1)

124-124: 완벽한 구현입니다!

리뷰 생성 성공 후 모달이 자동으로 닫히도록 하는 변경사항이 정확하게 구현되었습니다. onSuccess 콜백 내에서 쿼리 무효화 후 handleReviewClose()를 호출하는 순서와 위치가 적절하며, PR 목표를 완벽하게 달성합니다.

✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fix/148

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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@LeeCh0129 LeeCh0129 changed the title fix/148 후기 작성 완료 후 모달 자동 닫기 Fix/148 후기 작성 완료 후 모달 자동 닫기 Aug 4, 2025
@LeeCh0129 LeeCh0129 merged commit 690d58e into develop Aug 4, 2025
2 checks passed
@LeeCh0129 LeeCh0129 deleted the fix/148 branch August 4, 2025 15:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🔨 Refactor 코드 리팩토링

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants