Add debounce/minimum length for add user search (#387)
This functionality was already implemented, it just didn't have the right parameters configured for the user list presenter. Closes #109
This commit is contained in:
parent
31ac97d17a
commit
54510e13f5
3 changed files with 13 additions and 4 deletions
|
|
@ -35,7 +35,11 @@ class AddPeoplePresenter @Inject constructor(
|
|||
|
||||
private val userListPresenter by lazy {
|
||||
userListPresenterFactory.create(
|
||||
UserListPresenterArgs(selectionMode = SelectionMode.Multiple),
|
||||
UserListPresenterArgs(
|
||||
selectionMode = SelectionMode.Multiple,
|
||||
minimumSearchLength = 3,
|
||||
searchDebouncePeriodMillis = UserListPresenterArgs.DEFAULT_DEBOUNCE
|
||||
),
|
||||
userListDataSource,
|
||||
dataStore.selectedUserListDataStore,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class CreateRoomRootPresenter @Inject constructor(
|
|||
UserListPresenterArgs(
|
||||
selectionMode = SelectionMode.Single,
|
||||
minimumSearchLength = 3,
|
||||
searchDebouncePeriodMillis = 500,
|
||||
searchDebouncePeriodMillis = UserListPresenterArgs.DEFAULT_DEBOUNCE,
|
||||
),
|
||||
userListDataSource,
|
||||
userListDataStore,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue