Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR 개요
레시피 리스트 fetch 데이터 관련 로직 수정
주요 변경 사항
데이터 네이밍과 형식 수정
• recipeImageUrl의 형식을 배열에서 단일 URL로 변경했습니다
• 네트워크 통신에서 받아오는 Recipe 데이터를 DTO에 맞게 네이밍 및 형식 정리했습니다
레시피 리스트 fetch 시 필요한 파라미터 추가 및 선언
• currentPage, targetPage, boundaryID를 네트워크 요청에 추가하여 효율적으로 데이터를 가져오도록 수정했습니다
• 새로운 파라미터를 처리하기 위해 FetchFeedListUseCase 및 관련 메서드에 수정 반영했습니다..
레시피 리스트 fetch 로직 수정
• boundaryID 값이 현재 페이지의 최대 recipeId를 기준으로 설정되도록 구현했습니다.
Repository의 파라미터 수정
• 레시피 데이터를 불러오는 Repository 계층에서 새로운 네트워크 요청 형식에 맞게 파라미터 변경.
• 기존 pageNumber 단일 값 요청을 currentPage, targetPage, boundaryID로 대체.