46 lines
		
	
	
		
			1016 B
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1016 B
		
	
	
	
		
			JavaScript
		
	
	
| import raf from 'raf';
 | |
| 
 | |
| export default function throttleByAnimationFrame(fn) {
 | |
|   let requestId;
 | |
| 
 | |
|   const later = args => () => {
 | |
|     requestId = null;
 | |
|     fn(...args);
 | |
|   };
 | |
| 
 | |
|   const throttled = (...args) => {
 | |
|     if (requestId == null) {
 | |
|       requestId = raf(later(args));
 | |
|     }
 | |
|   };
 | |
| 
 | |
|   throttled.cancel = () => raf.cancel(requestId);
 | |
| 
 | |
|   return throttled;
 | |
| }
 | |
| 
 | |
| export function throttleByAnimationFrameDecorator() {
 | |
|   return function(target, key, descriptor) {
 | |
|     const fn = descriptor.value;
 | |
|     let definingProperty = false;
 | |
|     return {
 | |
|       configurable: true,
 | |
|       get() {
 | |
|         if (definingProperty || this === target.prototype || this.hasOwnProperty(key)) {
 | |
|           return fn;
 | |
|         }
 | |
| 
 | |
|         const boundFn = throttleByAnimationFrame(fn.bind(this));
 | |
|         definingProperty = true;
 | |
|         Object.defineProperty(this, key, {
 | |
|           value: boundFn,
 | |
|           configurable: true,
 | |
|           writable: true,
 | |
|         });
 | |
|         definingProperty = false;
 | |
|         return boundFn;
 | |
|       },
 | |
|     };
 | |
|   };
 | |
| }
 |