Code Monkey home page Code Monkey logo

realmpagination's Introduction

RealmPagination

Generic badge

Just a copy of Google Paging library (https://developer.android.com/topic/libraries/architecture/paging) entirely rewritten in Kotlin and intended to be used with Realm.

Adding to project

To use RealmPagination you need to add as a dependency:

implementation 'com.github.magora-android:realmpagination:1.0.0'

And it's available on Jitpack, so you need to add

allprojects {
    repositories {
        // ...
        maven { url "https://jitpack.io" }
    }
    // ...
}

How To

First you need to create a DataSourceFactory

class UsersListDataSourceFactory : RealmDataSource.Factory<Int, User>() {

    override fun create(): RealmDataSource<Int, User> {
        val result = object : RealmPageKeyedDataSource<Int, User>() {
            override fun loadInitial(params: LoadInitialParams<Int>, callback: LoadInitialCallback<Int, User>) {
                //...
            }

            override fun loadBefore(params: LoadParams<Int>, callback: LoadCallback<Int, User>) {
                callback.onResult(0, null)
            }

			override fun loadAfter(params: LoadParams<Int>, callback: LoadCallback<Int, User>) {
                //...
            }
        }
        return result
    }

    override fun destroy() {
        //...
    }
}

val dsFactory = UsersListDataSourceFactory()

Then you need to create a Paged List

private const val INITIAL_PAGE_SIZE = 50
private const val PAGE_SIZE = 30
private const val PREFETCH_DISTANCE = 10

val config = RealmPagedList.Config.Builder()
                .setInitialLoadSizeHint(INITIAL_PAGE_SIZE)
                .setPageSize(PAGE_SIZE)
                .setPrefetchDistance(PREFETCH_DISTANCE)
                .build()

val pagedList = RealmPagedListBuilder(dsFactory, config)
                .setInitialLoadKey(0)
                .setRealmData(localStorage.getUsers())
                .build()

Then create an adapter

class AdapterUserList(data: RealmPagedList<*, User>) : BaseRealmListenableAdapter<User, RecyclerView.ViewHolder>(data) {

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder {
        //...
    }

    override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {
        //...
    }
}

val adapter = AdapterUserList(pagedList)
usersList.adapter = adapter

... and use the power of pagination

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.