-
Notifications
You must be signed in to change notification settings - Fork 1
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
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
어려운 로직도 바로 해내는 아린언니..ㄷㄷ 큐에이 하느라 수고많았어요!!
// domain | ||
implementation(projects.domain.search) | ||
implementation(libs.androidx.paging.common.android) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
사소한거긴한데,, 모듈에 대한 의존성이랑 구분하기 위해서 한 줄 띄워주면 좋을 것 가타요 ㅎㅎ
There was a problem hiding this comment.
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)
이건 새로 추가된 라이브러리 같은데 기존에 있었던 라이브러리로는 대체 불가능한가요...?!
): Flow<PagingData<SearchResult>> { | ||
return Pager( | ||
PagingConfig(pageSize = 100) | ||
) { | ||
SearchPagingSource( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
여기서 pageSize
가 한 번 로딩할 때 불러올 아이템 수를 지정하는 거 맞죠?!
홈은 10개로 통일했었는데 검색도 10개로 가야 할 것 같아요..!
androidx-constraintlayout-core = { group = "androidx.constraintlayout", name = "constraintlayout-core", version.ref = "constraintlayoutCore" } | ||
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 두 라이브러리가 사용되는 곳을 못 본 것 같은데 추가해준 이유가 있나용..?
dependencies { | ||
implementation(libs.paging.common) | ||
implementation(libs.coroutines.core) | ||
implementation(libs.coroutines.test) |
There was a problem hiding this comment.
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)
는 테스트 코드를 작성하지 않은 상태라 필요 없지 않을까요...?
추가해준 의도가 있는지 궁금합니당
⛳️ Work Description
📸 Screenshot
328.mp4
📢 To Reviewers