mirror of
https://github.com/Aviortheking/Neo-Store.git
synced 2025-06-08 08:49:55 +00:00
Add: Wire preferences for number of shown updated and new apps
This commit is contained in:
parent
1050e7a85d
commit
3969b53e5f
@ -7,6 +7,7 @@ import androidx.lifecycle.viewModelScope
|
|||||||
import androidx.paging.DataSource
|
import androidx.paging.DataSource
|
||||||
import androidx.paging.LivePagedListBuilder
|
import androidx.paging.LivePagedListBuilder
|
||||||
import androidx.paging.PagedList
|
import androidx.paging.PagedList
|
||||||
|
import com.looker.droidify.content.Preferences
|
||||||
import com.looker.droidify.database.DatabaseX
|
import com.looker.droidify.database.DatabaseX
|
||||||
import com.looker.droidify.database.Product
|
import com.looker.droidify.database.Product
|
||||||
import com.looker.droidify.entity.ProductItem
|
import com.looker.droidify.entity.ProductItem
|
||||||
@ -73,13 +74,13 @@ class MainNavFragmentViewModelX(val db: DatabaseX, source: Source) : ViewModel()
|
|||||||
mSearchQuery,
|
mSearchQuery,
|
||||||
mSections,
|
mSections,
|
||||||
ProductItem.Order.LAST_UPDATE,
|
ProductItem.Order.LAST_UPDATE,
|
||||||
100 // TODO add to preferences
|
Preferences[Preferences.Key.UpdatedApps]
|
||||||
)
|
)
|
||||||
Source.NEW -> Request.ProductsNew(
|
Source.NEW -> Request.ProductsNew(
|
||||||
mSearchQuery,
|
mSearchQuery,
|
||||||
mSections,
|
mSections,
|
||||||
ProductItem.Order.LAST_UPDATE,
|
ProductItem.Order.LAST_UPDATE,
|
||||||
20 // TODO add to preferences
|
Preferences[Preferences.Key.NewApps]
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user