Added back account autofill mention in composer
• Added: - account autofill mention in composer after removing for performance reasons • Updated: - throttle for account search function
This commit is contained in:
parent
4490070aa2
commit
8b8f73deb1
|
@ -537,8 +537,6 @@ const fetchComposeSuggestionsAccounts = throttle((dispatch, getState, token) =>
|
||||||
cancelFetchComposeSuggestionsAccounts()
|
cancelFetchComposeSuggestionsAccounts()
|
||||||
}
|
}
|
||||||
|
|
||||||
return false
|
|
||||||
|
|
||||||
api(getState).get('/api/v1/accounts/search', {
|
api(getState).get('/api/v1/accounts/search', {
|
||||||
cancelToken: new CancelToken(cancel => {
|
cancelToken: new CancelToken(cancel => {
|
||||||
cancelFetchComposeSuggestionsAccounts = cancel
|
cancelFetchComposeSuggestionsAccounts = cancel
|
||||||
|
@ -556,7 +554,7 @@ const fetchComposeSuggestionsAccounts = throttle((dispatch, getState, token) =>
|
||||||
// dispatch(showAlertForError(error))
|
// dispatch(showAlertForError(error))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}, 200, { leading: true, trailing: true })
|
}, 1000, { leading: true, trailing: true })
|
||||||
|
|
||||||
const fetchComposeSuggestionsEmojis = (dispatch, getState, token) => {
|
const fetchComposeSuggestionsEmojis = (dispatch, getState, token) => {
|
||||||
const results = emojiSearch(token.replace(':', ''), { maxResults: 5 })
|
const results = emojiSearch(token.replace(':', ''), { maxResults: 5 })
|
||||||
|
|
Loading…
Reference in New Issue