Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: #177 위젯 사진 최신 로직 수정 #178

Merged
merged 1 commit into from
Jan 27, 2025

Conversation

99yuseong
Copy link
Collaborator

위젯 오류

FireStoreRepository로 로직을 이동한 이후, 위젯에 로드되는 사진이 최신 사진이 아닌 경우 발생

해결

현재 로직에는 최신순 로직이 포함되어 있지 않아 가장 최근 사진을 불러오는 함수를 추가했습니다.

// RemoteStorageService

func fetchLatestPhoto(_ userName: String) async -> Photo?
let document = db.collection(photoCollection)
            .whereField("sharedWith", arrayContains: userName)
            .order(by: "uploadDate", descending: true) // 최신순
            .limit(to: 1) // 1개로 제한

fetch 후 정렬하는 로직이 아닌, FireStore에서 쿼리로 적용해서 1장의 데이터만 가져오도록 했습니다. 이렇게 처리를 하려면 Firebase console에서 색인 등록이 필요하더라구요!

스크린샷 2025-01-24 01 01 19

색인 등록을 안하면 이렇게 터미널에 출력되는데, 해당 링크를 타고 접속하면 색인이 자동으로 등록됩니다! 페이지가 로드되면 등록되는데까지 5분 정도 소요되는 것 같습니다!

스크린샷 2025-01-24 00 57 03

등록되면 이렇게 보입니다! 여기서는 오름차순 / 내림차순을 모두 등록해두었어요

참고

https://i-ten.tistory.com/226

@99yuseong 99yuseong added Bug Something isn't working Feat New feature or request In Progress 작업 중인 PR 입니다. labels Jan 23, 2025
@99yuseong 99yuseong self-assigned this Jan 23, 2025
@99yuseong 99yuseong linked an issue Jan 23, 2025 that may be closed by this pull request
@99yuseong 99yuseong added Ready to Review 리뷰가 준비된 PR 입니다. and removed In Progress 작업 중인 PR 입니다. labels Jan 23, 2025
@99yuseong 99yuseong merged commit 79de0c1 into develop Jan 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working Feat New feature or request Ready to Review 리뷰가 준비된 PR 입니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[BUG] 위젯 최신 사진 로드 이슈 수정
1 participant