Skip to content

feat: 마음 기록 앨범 상세 페이지 구현 #59

Merged
taekoong merged 25 commits intomainfrom
fe/album-details
Jul 22, 2025
Merged

feat: 마음 기록 앨범 상세 페이지 구현 #59
taekoong merged 25 commits intomainfrom
fe/album-details

Conversation

@taekoong
Copy link
Collaborator

@taekoong taekoong commented Jul 22, 2025

Summary by CodeRabbit

  • 신규 기능

    • 하단 내비게이션에 새로운 "앨범" 탭이 추가되어 사진을 날짜별로 볼 수 있는 화면이 제공됩니다.
    • 사진 카드, 프로필 이미지, 설명, 위치 배지, 감정 태그 버튼, 페이지 인디케이터 등 다양한 UI 요소가 새롭게 구현되었습니다.
  • 스타일

    • 하단 내비게이션의 플로팅 버튼에 그림자 효과가 추가되어 시각적 효과가 향상되었습니다.
  • 기타

    • 새로운 사진 샘플 이미지 에셋이 추가되었습니다.

@coderabbitai
Copy link

coderabbitai bot commented Jul 22, 2025

Caution

Review failed

The pull request is closed.

Walkthrough

이 변경은 새로운 사진 날짜별 화면(PhotoDateScreen)을 하단 내비게이션에 추가하고, 해당 화면의 UI를 완전히 구현합니다. 하단 내비게이션의 아이콘, 라벨, 화면 순서가 조정되었으며, pubspec.yaml에 사진 에셋이 등록되었습니다. 기존 프로필 화면의 인덱스가 변경되었습니다.

Changes

파일/경로 변경 요약
frontend/ongi/lib/screens/bottom_nav.dart PhotoDateScreen을 하단 내비게이션에 추가, 아이콘/라벨/순서 수정, FAB 데코레이션 그림자 추가, 아이콘 위젯 트리 단순화, 불필요한 import 제거 등 내부 UI 로직 및 포맷팅 변경
frontend/ongi/lib/screens/photo/photo_date_screen.dart PhotoDateScreen을 완전 구현: 사진 목록, 페이지뷰, 블러 효과, 프로필/텍스트/위치 뱃지, 감정 태그 버튼, 페이지 인디케이터 등 UI 및 상태 관리 추가
frontend/ongi/pubspec.yaml 새 사진 에셋(assets/images/sample_family_photo.png) 등록

Sequence Diagram(s)

sequenceDiagram
  participant User
  participant BottomNavScreen
  participant PhotoDateScreen

  User->>BottomNavScreen: 하단 내비게이션에서 '앨범' 탭 선택
  BottomNavScreen->>PhotoDateScreen: PhotoDateScreen 표시
  User->>PhotoDateScreen: 좌우 스와이프(페이지 이동)
  PhotoDateScreen->>PhotoDateScreen: _currentPage 상태 업데이트, UI 리렌더링
Loading

Estimated code review effort

3 (~40분)

Possibly related PRs

  • feat: bottom nav modify  #25: 하단 내비게이션 바의 screens 리스트 및 네비게이션 항목 변경 등, bottom_nav.dart의 내비게이션 구현에 직접적으로 관련됨.
  • feat: photo_date_screen.dart 파일 추가 #56: 본 PR에서 완전히 구현된 PhotoDateScreen 위젯이, 이 PR에서 최초로 최소한의 형태로 도입됐으므로 직접적으로 연관됨.
  • feat: 마이페이지 화면 구현 완료 #55: bottom_nav.dart의 내비게이션 아이콘 감싸기 및 프로필 화면 관련 스타일 변경 등, 내비게이션 UI 로직 일부가 중첩되어 관련성이 있음.

Poem

토끼가 깡총, 사진첩 열었네
새 앨범 탭에서 추억을 펼치네
감정 태그, 인디케이터 반짝
가족 사진, 프로필, 위치까지
그림자 드리운 버튼 아래
오늘도 온기 가득,
코드를 타고 흐르는 따뜻한 하루! 🥕📸


📜 Recent review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between d764940 and 5f37730.

⛔ Files ignored due to path filters (1)
  • frontend/ongi/assets/images/sample_family_photo.png is excluded by !**/*.png
📒 Files selected for processing (3)
  • frontend/ongi/lib/screens/bottom_nav.dart (4 hunks)
  • frontend/ongi/lib/screens/photo/photo_date_screen.dart (2 hunks)
  • frontend/ongi/pubspec.yaml (1 hunks)

🪧 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.
    • @coderabbitai modularize this function.
  • 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.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

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

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

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 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.

@taekoong
Copy link
Collaborator Author

사실 모양이 좀 다르긴 한데...............
여러 번 시도했으나 점점 이상한 형태로 굴러가기 시작하여
api연결하여 제대로 구현할 때 디자인과 동일한 형태로 하기 도전할 예정

@taekoong taekoong merged commit a0e1f06 into main Jul 22, 2025
2 of 4 checks passed
@taekoong taekoong deleted the fe/album-details branch August 10, 2025 11:26
Neibce pushed a commit to 2025-PNU-SW-Hackathon/PNUSW-2025-OnGi-10 that referenced this pull request Aug 25, 2025
* feat: 온도그래프 화면으로 전환

* feat: 온도그래프 화면으로 전환

* feat: 온도그래프 화면으로 전환

* feat: 온도그래프 화면으로 전환

* feat: 온도그래프 화면으로 전환

* feat: 온도그래프 화면 구현

* feat: 온도그래프 화면 구현

* feat: 온도그래프 화면 구현

* feat: 마이페이지 화면 구현 processing...

* feat: 마이페이지 화면 구현 processing...

* feat: 마이페이지 화면 구현 processing...

* feat: 마이페이지 화면 구현 processing...

* feat: 마이페이지 화면 구현 processing...

* feat: 마이페이지 화면 구현

* feat: 마이페이지 화면 구현

* feat: 마이페이지 화면 구현

* feat: 마이페이지 화면 구현

* feat: 마이페이지 화면 구현

* feat: 마이페이지 화면 구현

* feat: 마음기록 앨범 상세 구현 processing

* feat: 마음기록 앨범 상세 구현 processing

* feat: 마음기록 앨범 상세 구현 processing
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