handle resize in a debounce() (#3834)
This commit is contained in:
		
							parent
							
								
									53e42bf91e
								
							
						
					
					
						commit
						1d9f9352a6
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -13,8 +13,6 @@ import { refreshNotifications } from '../../actions/notifications';
 | 
			
		|||
import UploadArea from './components/upload_area';
 | 
			
		||||
import ColumnsAreaContainer from './containers/columns_area_container';
 | 
			
		||||
 | 
			
		||||
const noOp = () => false;
 | 
			
		||||
 | 
			
		||||
class UI extends React.PureComponent {
 | 
			
		||||
 | 
			
		||||
  static propTypes = {
 | 
			
		||||
| 
						 | 
				
			
			@ -27,9 +25,11 @@ class UI extends React.PureComponent {
 | 
			
		|||
    draggingOver: false,
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  handleResize = () => {
 | 
			
		||||
  handleResize = debounce(() => {
 | 
			
		||||
    this.setState({ width: window.innerWidth });
 | 
			
		||||
  }
 | 
			
		||||
  }, 500, {
 | 
			
		||||
    trailing: true,
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
  handleDragEnter = (e) => {
 | 
			
		||||
    e.preventDefault();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue