Преглед изворни кода

Added throttle() to Utils. Debounce() can now accept a scope as an optional argument.

dev-tmpl
Bryan Miller пре 5 година
родитељ
комит
173a43348e
1 измењених фајлова са 26 додато и 2 уклоњено
  1. +26
    -2
      app/js/common/Utils.js

+ 26
- 2
app/js/common/Utils.js Прегледај датотеку

@@ -24,16 +24,40 @@ const utils = {
}
},

debounce:function(func, delay){
debounce:function(func, delay, scope){
var timeout = null;
return function(){
var context = this;
//var context = this;
var context = scope || this;
var args = arguments;
clearTimeout(timeout);
timeout = setTimeout(function(){
func.apply(context, args);
}, delay);
};
},

throttle:function(func, threshold, scope){
threshold || (threshold = 250);
var lst = 0;
var timer;

return function(){
var context = scope || this;
var args = arguments;

var now = Date.now();
if (now < lst + threshold){
clearTimeout(timer);
timer = setTimeout(function(){
lst = now;
func.apply(context, args);
}, threshold);
} else {
lst = now;
func.apply(context, args);
}
};
}
};


Loading…
Откажи
Сачувај