Skip to content

fix: 피드 게시글 수정 navigation 추가#158

Merged
heeeeyong merged 1 commit into
developfrom
chore/minor-updates
Aug 18, 2025
Merged

fix: 피드 게시글 수정 navigation 추가#158
heeeeyong merged 1 commit into
developfrom
chore/minor-updates

Conversation

@heeeeyong
Copy link
Copy Markdown
Collaborator

@heeeeyong heeeeyong commented Aug 18, 2025

이하동일

Summary by CodeRabbit

  • 버그 수정
    • 피드 상세 화면에서 더보기 메뉴의 ‘수정’을 선택하면 이제 정상적으로 게시글 수정 화면으로 이동합니다. 이전에는 동작하지 않던 이동 문제가 해결되어, 팝업이 닫힌 뒤 자연스럽게 전환됩니다. 사용자는 추가 조작 없이 곧바로 수정 작업을 시작할 수 있습니다. 전반적인 편집 흐름의 신뢰성과 사용성이 개선되었습니다.

@vercel
Copy link
Copy Markdown

vercel Bot commented Aug 18, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
thip Ready Ready Preview Comment Aug 18, 2025 11:10am

@heeeeyong heeeeyong self-assigned this Aug 18, 2025
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Aug 18, 2025

Caution

Review failed

The pull request is closed.

Walkthrough

FeedDetailPage의 더보기 메뉴에서 Edit 선택 시, 팝업을 닫은 뒤 navigate(/post/update/${feedId})로 실제 업데이트 페이지로 이동하도록 네비게이션 호출을 활성화했습니다.

Changes

Cohort / File(s) Change Summary
피드 상세 편집 네비게이션
src/pages/feed/FeedDetailPage.tsx
onEdit 핸들러에서 주석 처리되었던 navigate 호출을 활성화하여 업데이트 페이지로 이동하도록 수정. 팝업 닫기 동작은 유지.

Sequence Diagram(s)

sequenceDiagram
  participant U as User
  participant FDP as FeedDetailPage
  participant MM as MoreMenu
  participant R as Router
  participant PUP as PostUpdatePage

  U->>FDP: 피드 상세 진입
  U->>MM: 더보기 클릭
  U->>MM: Edit 선택
  MM-->>FDP: onEdit 호출
  FDP->>FDP: 팝업 닫기
  FDP->>R: navigate(/post/update/{feedId})
  R-->>PUP: 라우팅
  U->>PUP: 업데이트 페이지 표시
Loading

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Possibly related PRs

  • feat: 새 글 수정 API 연동 #103: 동일한 FeedDetailPage의 onEdit 처리에서 팝업 닫기 후 업데이트 페이지로 네비게이션하도록 수정하는 유사 변경.

Poem

꼬물꼬물 발끝으로, 수정길로 hop!
더보기 눌러보면, 팝업은 살짝 닫고—pop!
/post/update/로 깡충, 길이 환히 열리고,
코드토끼 미소 짓네, 한 줄로 길 찾았네.
☁️➡️🛣️➡️✏️

Tip

🔌 Remote MCP (Model Context Protocol) integration is now available!

Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats.


📜 Recent review details

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

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 5831632 and 0d79f81.

📒 Files selected for processing (1)
  • src/pages/feed/FeedDetailPage.tsx (1 hunks)
✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch chore/minor-updates

🪧 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.
    • 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.
  • 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 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/Issue comments)

Type @coderabbitai help to get the list of available commands.

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

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • 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.

@heeeeyong heeeeyong added the ✨ Feature 기능 개발 label Aug 18, 2025
@heeeeyong heeeeyong merged commit b83b9a9 into develop Aug 18, 2025
2 of 3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

✨ Feature 기능 개발

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant