componentDidMount(){
  let timeoutId
  function callback(){

  }
  window.addEventListener('scroll',function(){
    if(this.props.isLoadingMore){
      return
    }
    if(timeoutId){
      clearTimeout(timeoutId)
    }
    timeoutId = setTimeout(callback,50)
  }.bind(this),false)
}