Skip to content

[Refactor]: 모임 스케줄 페이지 CSS 및 컴포넌트 구조 최적화#377

Merged
HopeFullee merged 2 commits intomainfrom
somang-refactor/schedule
Jan 14, 2026
Merged

[Refactor]: 모임 스케줄 페이지 CSS 및 컴포넌트 구조 최적화#377
HopeFullee merged 2 commits intomainfrom
somang-refactor/schedule

Conversation

@HopeFullee
Copy link
Member

@HopeFullee HopeFullee commented Jan 14, 2026

📝 변경 사항

[변경 사항]

  • pages/schedule 경로에 있던 _component 파일을 -> components/pages/schedule 경로로 옮기고 barrel export 적용.
  • 스케줄 페이지 내 Meetings 접두어로 작성됐던 모든 컴포넌트 이름을 -> Schedule 접두어로 변경
    예) <MeetingsList /> -> <ScheduleList /> 변경
  • 스케줄 페이지 최상단 Page.tsx 컴포넌트 내부 구조 최적화 (클-린 코딩)
  • 스케줄 페이지 스켈레톤 카드 마크업/CSS 최적화
  • 스케줄 페이지 EmptyState 컴포넌트 마크업/CSS 최적화 (민서님 CSS 흑마술 딱 걸림)
  • 스케줄 페이지 useInfiniteQuery 에서 -> useSuspenseInfiniteQuery 로 변경
    • 기존 일반 useInfiniteQuery 를 사용했기 때문에 <Suspense fallback /> 서스펜스 테그가 정상적으로 작동하지 않았음. (해결)
  • 스케줄 페이지 내 동일한 구조/내용의 Skeleton 컴포넌트가 2개가 있었음. 1개로 통일함 (<ScheduleSkeleton />).

[주의 사항]

  • 스케줄 페이지 리펙토링으로 기존 Test Code 충돌 발생.
    원격 저장소 Merge를 위해 jest.config.js에서 충돌 파일 경로를 Ignore 처리함.
    추후 민서님이 test code 수정할거임.
// jest.config.js
 testPathIgnorePatterns: [
  '/node_modules/',
  '/.next/',
  '/e2e/',
  '/src/components/pages/schedule/' // test code 수정 이후 꼭 해당 영역 삭제하셈.
] 

🔗 관련 이슈

Closes #


🧪 테스트 방법

  • 수동 테스트 검증(로컬 환경)
  • 유닛 테스트 검증
  • 통합 테스트 검증

📸 스크린샷 (선택)


📋 체크리스트

  • 관련 문서를 업데이트했습니다 (필요한 경우)
  • 테스트를 추가/수정했습니다 (필요한 경우)
  • Breaking change가 있다면 명시했습니다

💬 추가 코멘트


CodeRabbit Review는 자동으로 실행되지 않습니다.

Review를 실행하려면 comment에 아래와 같이 작성해주세요

@coderabbitai review

@HopeFullee HopeFullee added the Ready For Review! 리뷰 받을 준비가 되었습니다. label Jan 14, 2026
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 14, 2026

Important

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


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

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link

github-actions bot commented Jan 14, 2026

🎨 Storybook Report

변경 사항이 없습니다

모든 Story가 이전 빌드와 동일합니다.

Status Storybook Build Log Updated (UTC)
✅ Unchanged View Storybook View Build 2026-01-14 13:05:57

@github-actions
Copy link

github-actions bot commented Jan 14, 2026

🎭 Playwright Report

E2E Test가 성공적으로 완료되었습니다.

Test 요약 내용을 확인해주세요.

Status Build Log Updated (UTC)
✅ Ready View Build 2026-01-14 13:06:26

📊 Test Summary

  • ✅ Passed: 3
  • ❌ Failed: 0
  • ⏱️ Duration: 34.4s

📜 Test Details

✅ Passed Tests (3)
  • profile.test.ts (3)
    • [chromium] 존재하지 않는 프로필 페이지로 접속 시 404 redirect 되는 지 테스트
    • [firefox] 존재하지 않는 프로필 페이지로 접속 시 404 redirect 되는 지 테스트
    • [webkit] 존재하지 않는 프로필 페이지로 접속 시 404 redirect 되는 지 테스트

@github-actions
Copy link

github-actions bot commented Jan 14, 2026

📊 Coverage Report

Status Build Log Updated (UTC)
✅ Ready View Build 2026-01-14 13:05:34

📉 #377main에 병합하면 coverage가 3.55% 감소합니다.

Coverage 요약

@@             Coverage Diff             @@
##             main     #377       +/-   ##
===========================================
- Coverage   39.12%   35.57%    -3.55%     
===========================================
  Files         240      254       +14     
  Lines       10933    12017     +1084     
  Branches      465      477       +12     
===========================================
- Hits         4278     4275        -3     
+ Misses       6655     7742     +1087     

영향받은 파일

이 PR로 영향받은 파일이 없습니다

수정된 모든 파일이 현재 coverage를 유지했습니다.

@github-actions
Copy link

github-actions bot commented Jan 14, 2026

🚀 PR Preview Report

Build가 성공적으로 완료되었습니다.

Preview에서 변경사항을 확인하세요.

Status Preview Build Log Updated (UTC)
✅ Ready Visit Preview View Logs 2026-01-14 13:06:29

Copy link
Member

@claudia99503 claudia99503 left a comment

Choose a reason for hiding this comment

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

진짜 감탄 그 잡채.

@HopeFullee
Copy link
Member Author

진짜 감탄 그 잡채.

숙녀분 입맛에 맞으셨다니 다행입니다. 🤵

@HopeFullee HopeFullee merged commit 36ce02f into main Jan 14, 2026
7 of 8 checks passed
@HopeFullee HopeFullee deleted the somang-refactor/schedule branch January 14, 2026 13:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Ready For Review! 리뷰 받을 준비가 되었습니다.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants