0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

fix: adds debounce to search api call

This commit is contained in:
Ayush Sharma 2018-03-19 19:37:41 +05:30
parent b47d643e01
commit aa60e1dbb2

View file

@ -2,6 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
import {Loading, MessageBox} from 'element-react';
import isEmpty from 'lodash/isEmpty';
import debounce from 'lodash/debounce';
import API from '../../../utils/api';
@ -26,6 +27,7 @@ export default class Home extends React.Component {
constructor(props) {
super(props);
this.handleSearchInput = this.handleSearchInput.bind(this);
this.searchPackage = debounce(this.searchPackage, 800);
}
componentDidMount() {