Skip to content

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

Merged
heeeeyong merged 5 commits into
mainfrom
develop
Aug 28, 2025
Merged

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

Conversation

@heeeeyong
Copy link
Copy Markdown
Collaborator

@heeeeyong heeeeyong commented Aug 28, 2025

이하동일

Summary by CodeRabbit

  • 신뢰성 향상(Bug Fixes)
    • 프로필/피드에서 사용자 식별값이 없을 때도 프로필 표시와 팔로워 목록 이동이 정상 동작하도록 보완.
  • 스타일(Style)
    • 입력창/텍스트영역의 기본 글자 크기 일원화, 컴포넌트별 소형 글자 고정 제거로 가독성 개선.
    • 검색 및 그룹 검색 플레이스홀더 문구 다듬기.
  • 리팩터(Refactor)
    • 컴포넌트 prop과 타입을 정리하고 일부 필드를 선택값으로 완화.
  • 기타(Chores)
    • 인증 토큰 관련 주석·로그 문구 정리(동작 변화 없음).

@vercel
Copy link
Copy Markdown

vercel Bot commented Aug 28, 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 28, 2025 8:13am

@heeeeyong heeeeyong merged commit b9961ec into main Aug 28, 2025
1 of 2 checks passed
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Aug 28, 2025

Caution

Review failed

The pull request is closed.

Walkthrough

이 PR은 인증 토큰 주입 코드의 정리, 피드 관련 컴포넌트에서 creatorId → userId로의 식별자 통일 및 폴백 추가, 전역 및 개별 컴포넌트의 입력/텍스트 영역 폰트 크기 규칙 조정, 일부 검색 placeholder 문구 변경, 피드 페이지의 토큰 로그 메시지 수정으로 구성됩니다.

Changes

Cohort / File(s) Summary of changes
API 토큰 인터셉터 정리
src/api/index.ts
미사용 TEMP_ACCESS_TOKEN 상수 제거. 토큰 부재 시 Authorization 설정 예시 주석 추가(비실행). 런타임 동작 불변.
피드 식별자 정리(creatorId → userId) 및 폴백
src/components/feed/MyFollower.tsx, src/components/feed/Profile.tsx, src/components/feed/MyFeed.tsx, src/types/profile.ts
MyFollower props를 creatorId에서 userId로 변경. Profile에서 creatorId prop 제거. MyFeed가 `profileData.creatorId
피드 페이지 토큰 로그/주석 변경
src/pages/feed/Feed.tsx
토큰 부재 시 하드코드 토큰 설정 관련 주석과 로그로 교체(실제 저장 코드 주석 처리). 동작 변경 없음.
전역 입력/텍스트 영역 타이포 규칙 갱신
src/styles/global/global.ts
전역 셀렉터를 input, textarea로 확장하고 font-size: typography.fontSize.base 추가. caret-color 유지.
컴포넌트 내 소형 폰트 강제 해제
src/components/createpost/PostContentSection.styled.ts, src/components/recordwrite/RecordContentSection.styled.ts, src/components/search/SearchBar.tsx, src/components/today-words/MessageInput.styled.ts
TextArea/Input에서 명시적 작은 font-size 제거. 상위/전역 스타일 상속 사용. 로직 변경 없음.
검색 placeholder 문구 수정
src/pages/groupSearch/GroupSearch.tsx, src/pages/search/Search.tsx
한국어 placeholder 텍스트 변경(표기/연결어 수정). 기능/로직 영향 없음.

Sequence Diagram(s)

sequenceDiagram
  autonumber
  participant MF as MyFeed
  participant P as Profile
  participant MFol as MyFollower
  participant R as Router

  MF->>MF: profileData 수신
  note over MF: userId = creatorId || userId (폴백)
  MF->>P: Profile(userId)

  P->>MFol: MyFollower(userId)
  MFol->>MFol: handleMoreClick()
  alt userId가 있음
    MFol->>R: navigate("/follow/followerlist/{userId}")
  else userId가 없음
    MFol-->>MFol: 네비게이션 수행 안 함
  end
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Possibly related PRs

Suggested labels

🎨 Html&css, 📬 API

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 caa3ae1 and c9009c7.

📒 Files selected for processing (13)
  • src/api/index.ts (1 hunks)
  • src/components/createpost/PostContentSection.styled.ts (0 hunks)
  • src/components/feed/MyFeed.tsx (1 hunks)
  • src/components/feed/MyFollower.tsx (1 hunks)
  • src/components/feed/Profile.tsx (1 hunks)
  • src/components/recordwrite/RecordContentSection.styled.ts (0 hunks)
  • src/components/search/SearchBar.tsx (0 hunks)
  • src/components/today-words/MessageInput.styled.ts (0 hunks)
  • src/pages/feed/Feed.tsx (1 hunks)
  • src/pages/groupSearch/GroupSearch.tsx (1 hunks)
  • src/pages/search/Search.tsx (1 hunks)
  • src/styles/global/global.ts (1 hunks)
  • src/types/profile.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 @coderabbit in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbit 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:
    • @coderabbit gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbit 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 @coderabbit help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbit ignore or @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbit summary or @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbit or @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.

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.

1 participant