Skip to content

develp branch 작업내용 머지 : develop -> main#197

Merged
heeeeyong merged 6 commits into
mainfrom
develop
Aug 21, 2025
Merged

develp branch 작업내용 머지 : develop -> main#197
heeeeyong merged 6 commits into
mainfrom
develop

Conversation

@heeeeyong
Copy link
Copy Markdown
Collaborator

@heeeeyong heeeeyong commented Aug 21, 2025

이하동일

Summary by CodeRabbit

  • 버그 수정

    • 게시물/피드 본문에서 줄바꿈이 보존되고 긴 단어가 적절히 줄바꿈되도록 개선해 가독성 문제 해결.
    • 회원가입 장르 선택 시 별칭 색상/아이콘 매칭 오류를 보정해 올바른 테마가 적용되도록 수정.
  • 스타일

    • 이미지가 포함된 게시물의 미리보기 최대 줄 수를 늘려 더 많은 내용을 표시.
    • 마이페이지 프로필 영역의 요소 간 간격을 확대해 레이아웃 가독성 향상.
    • 입력 필드 커서 색상을 네온그린으로 통일해 시인성 강화.

@heeeeyong heeeeyong self-assigned this Aug 21, 2025
@heeeeyong heeeeyong added the 🌏 Deploy 배포 관련 label Aug 21, 2025
@vercel
Copy link
Copy Markdown

vercel Bot commented Aug 21, 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 21, 2025 3:00am

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Aug 21, 2025

Caution

Review failed

The pull request is closed.

Walkthrough

게시물 본문과 피드 상세 본문에 공백/개행 보존 및 긴 단어 줄바꿈 CSS를 추가하고, 이미지가 있을 때의 줄 생략 한도를 4줄로 조정했습니다. 마이페이지 사용자 정보 간격을 확장하고, 전역 input 캐럿 색상을 지정했습니다. 회원가입 장르 매칭 로직을 id 기준에서 subTitle 기준으로 변경했습니다.

Changes

Cohort / File(s) Summary
Post 본문 렌더링 스타일 조정
src/components/common/Post/PostBody.tsx, src/components/feed/FeedDetailPostBody.tsx
콘텐츠 영역에 white-space: pre-wrap 적용(개행 보존), 긴 단어 줄바꿈 처리(word-wrap: break-word 추가; PostBody는 주석 제안), 이미지 존재 시 line-clamp 3→4로 상향, 사소한 JSX 포맷 변경
회원가입 장르 매칭 로직
src/pages/signup/SignupGenre.tsx
aliasColor/aliasIconUrl 조회 키를 g.id===selectedAlias.id에서 g.subTitle===selectedAlias.subTitle로 변경; 내비게이션 상태 구조와 나머지 로직은 동일
마이페이지 간격 조정
src/pages/mypage/Mypage.tsx
UserProfile .userInfo의 가로 간격 4px→8px
전역 입력 캐럿 색상
src/styles/global/global.ts
input의 caret-color를 colors.neongreen으로 전역 설정

Sequence Diagram(s)

sequenceDiagram
  autonumber
  actor U as User
  participant SG as SignupGenre
  participant API as postSignup API
  participant R as Router

  U->>SG: 다음 버튼 클릭 (handleNextClick)
  note over SG: 장르 매칭 기준 변경: subTitle 기반
  SG->>SG: selectedAlias.subTitle로 genres에서 색상/아이콘 조회
  SG->>API: postSignup(payload)
  API-->>SG: 응답 (성공/실패)
  alt 성공
    SG->>R: navigate('/signup/guide', { state: { nickname, aliasName, aliasColor, aliasIconUrl } })
  else 실패
    SG-->>U: 에러 처리/표시
  end
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested labels

🎨 Html&css

Suggested reviewers

  • ho0010

Poem

토끼는 귀로 줄을 센다, 한 줄 또 한 줄, 네 줄까지!
개행은 살리고, 긴 단어는 폭— 찍어 나눈다.
초록 캐럿 깜빡, 입력창에 봄이 오고,
별칭 색은 제목 따라, 살짝 방향 전환!
띄어쓰기 사이로, 코드는 가볍게 뛴다. 🐰✨

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 190f87d and 828a6a9.

📒 Files selected for processing (5)
  • src/components/common/Post/PostBody.tsx (2 hunks)
  • src/components/feed/FeedDetailPostBody.tsx (1 hunks)
  • src/pages/mypage/Mypage.tsx (1 hunks)
  • src/pages/signup/SignupGenre.tsx (1 hunks)
  • src/styles/global/global.ts (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 develop

🪧 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 merged commit c0ea465 into main Aug 21, 2025
1 of 2 checks passed
@coderabbitai coderabbitai Bot mentioned this pull request Aug 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🌏 Deploy 배포 관련

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant