Merge pull request #2632 from matrix-org/bwindels/searchthrottle

use throttle as its more responsive
pull/21833/head
Bruno Windels 2019-02-13 20:37:13 +01:00 committed by GitHub
commit a720de81c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ import { _t } from '../../languageHandler';
import { KeyCode } from '../../Keyboard';
import sdk from '../../index';
import dis from '../../dispatcher';
import { debounce } from 'lodash';
import { throttle } from 'lodash';
import AccessibleButton from '../../components/views/elements/AccessibleButton';
module.exports = React.createClass({
@ -67,9 +67,9 @@ module.exports = React.createClass({
this.onSearch();
},
onSearch: debounce(function() {
onSearch: throttle(function() {
this.props.onSearch(this.refs.search.value);
}, 200, {trailing: true}),
}, 200, {trailing: true, leading: true}),
_onKeyDown: function(ev) {
switch (ev.keyCode) {