Last active
March 15, 2023 17:38
-
-
Save swannodette/5888989 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn debounce | |
([c ms] (debounce (chan) c ms)) | |
([c' c ms] | |
(go | |
(loop [start nil loc (<! c)] | |
(if (nil? start) | |
(do | |
(>! c' loc) | |
(recur (js/Date.) nil)) | |
(let [loc (<! c)] | |
(if (>= (- (js/Date.) start) ms) | |
(recur nil loc) | |
(recur (js/Date.) loc)))))) | |
c')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://stackoverflow.com/questions/13320015/how-to-write-a-debounce-service-in-angularjs | |
app.factory('debounce', function($timeout, $q) { | |
return function(func, wait, immediate) { | |
var timeout; | |
var deferred = $q.defer(); | |
return function() { | |
var context = this, args = arguments; | |
var later = function() { | |
timeout = null; | |
if(!immediate) { | |
deferred.resolve(func.apply(context, args)); | |
deferred = $q.defer(); | |
} | |
}; | |
var callNow = immediate && !timeout; | |
if ( timeout ) { | |
$timeout.cancel(timeout); | |
} | |
timeout = $timeout(later, wait); | |
if (callNow) { | |
deferred.resolve(func.apply(context,args)); | |
deferred = $q.defer(); | |
} | |
return deferred.promise; | |
}; | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See also https://gist.github.com/scttnlsn/9744501 for a version of debounce that outputs the final input after a flurry of inputs.