remove search blocker, fix debounce params

This commit is contained in:
Shpuld Shpuldson 2020-06-18 12:29:13 +03:00
parent ebf4321e64
commit 9c884fef11
2 changed files with 20 additions and 8 deletions

View file

@ -1,4 +1,4 @@
import { debounce } from 'lodash'
import debounce from 'lodash/debounce'
/**
* suggest - generates a suggestor function to be used by emoji-input
* data: object providing source information for specific types of suggestions:
@ -13,7 +13,7 @@ import { debounce } from 'lodash'
const debounceUserSearch = debounce((data, input) => {
data.updateUsersList(input)
}, 500, { leading: true, trailing: false })
}, 500)
export default data => input => {
const firstChar = input[0]
@ -97,8 +97,8 @@ export const suggestUsers = data => input => {
replacement: '@' + screen_name + ' '
}))
// BE search users if there are no matches
if (newUsers.length === 0 && data.updateUsersList) {
// BE search users to get more comprehensive results
if (data.updateUsersList) {
debounceUserSearch(data, noPrefix)
}
return newUsers