Created
September 13, 2020 23:17
-
-
Save enginebai/a419d2f558ada1b96991365b8760f9a5 to your computer and use it in GitHub Desktop.
MovieHunt blog part3. repo modified
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface MovieRepo { | |
fun fetchMovieList(category: MovieCategory, pageSize: Int = DEFAULT_PAGE_SIZE): Listing<MovieModel> | |
} | |
class MovieRepoImpl : MovieRepo, KoinComponent { | |
override fun fetchMovieList( | |
category: MovieCategory, | |
pageSize: Int | |
): Listing<MovieModel> { | |
val dataSourceFactory = MovieListDataSourceFactory(category) | |
val pagedListConfig = PagedList.Config.Builder() | |
.setPageSize(DEFAULT_PAGE_SIZE) | |
.setEnablePlaceholders(false) | |
.build() | |
val pagedList = RxPagedListBuilder(dataSourceFactory, pagedListConfig) | |
.setFetchScheduler(Schedulers.io()) | |
.buildObservable() | |
return Listing( | |
pagedList = pagedList, | |
refreshState = dataSourceFactory.initLoadState, | |
loadMoreState = dataSourceFactory.loadMoreState, | |
refresh = { dataSourceFactory.dataSource?.invalidate() } | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment