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

[FEAT/#328] 탐색 뷰 / 페이징 추가 #329

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from

Conversation

arinming
Copy link
Contributor

⛳️ Work Description

  • 탐색 뷰 페이징 추가

📸 Screenshot

328.mp4

📢 To Reviewers

  • 너무 어려워서 하루죙일 붙잡고 있는데 로직이 맞는 건지,.,..,

@arinming arinming added FEAT ✨ 새로운 기능 구현 아린💛 아린 labels Jan 11, 2025
@arinming arinming added this to the 3차 스프린트 작업 milestone Jan 11, 2025
@arinming arinming self-assigned this Jan 11, 2025
Copy link
Member

@leeeyubin leeeyubin left a comment

Choose a reason for hiding this comment

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

어려운 로직도 바로 해내는 아린언니..ㄷㄷ 큐에이 하느라 수고많았어요!!

Comment on lines 12 to +14
// domain
implementation(projects.domain.search)
implementation(libs.androidx.paging.common.android)
Copy link
Member

Choose a reason for hiding this comment

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

사소한거긴한데,, 모듈에 대한 의존성이랑 구분하기 위해서 한 줄 띄워주면 좋을 것 가타요 ㅎㅎ

Copy link
Member

Choose a reason for hiding this comment

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

그리고 implementation(libs.androidx.paging.common.android) 이건 새로 추가된 라이브러리 같은데 기존에 있었던 라이브러리로는 대체 불가능한가요...?!

Comment on lines +27 to +31
): Flow<PagingData<SearchResult>> {
return Pager(
PagingConfig(pageSize = 100)
) {
SearchPagingSource(
Copy link
Member

Choose a reason for hiding this comment

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

여기서 pageSize가 한 번 로딩할 때 불러올 아이템 수를 지정하는 거 맞죠?!
홈은 10개로 통일했었는데 검색도 10개로 가야 할 것 같아요..!

Comment on lines +190 to +191
androidx-constraintlayout-core = { group = "androidx.constraintlayout", name = "constraintlayout-core", version.ref = "constraintlayoutCore" }
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
Copy link
Member

Choose a reason for hiding this comment

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

이 두 라이브러리가 사용되는 곳을 못 본 것 같은데 추가해준 이유가 있나용..?

Comment on lines +5 to +8
dependencies {
implementation(libs.paging.common)
implementation(libs.coroutines.core)
implementation(libs.coroutines.test)
Copy link
Member

Choose a reason for hiding this comment

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

그리구 이 부분은 :domain:home 모듈이랑 같은 것 같긴한데 implementation(libs.coroutines.test)는 테스트 코드를 작성하지 않은 상태라 필요 없지 않을까요...?
추가해준 의도가 있는지 궁금합니당

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FEAT ✨ 새로운 기능 구현 아린💛 아린
Projects
Status: No status
Development

Successfully merging this pull request may close these issues.

[FEAT] 탐색 뷰 / 페이징 추가
2 participants