Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The underscore library provides a debounce function that prevents multiple calls to a function within a set period of time. Their version makes use of setTimeout.

How could we do this in pure AngularJS code?

Moreover, can we make use of $q style promises to retrieve the return value from the called function after the debounce period?

share|improve this question
A side note: You most probably asked this because you have too many requests firing when you only want one to fire. I have been facing this issue for the last 3 days and with a dozen attempts of restructuring my code and reading the documentation, I have achieved what I wanted without enforcing setTimeout. I'm generalizing here but see if you can approach your issue the same way. – abstractpaper Nov 10 '12 at 7:06
Very enigmatic comment! I would be interested to see what you came up with. I agree that this should not be used just to deal with too many watchers firing too often. It wasn't actually my issue but one that was put in the mailing list . – Pete BD Nov 11 '12 at 7:29
1  
Where I think it could be useful is where you have something happening due to user input like an async lookup on a server to autocomplete an input box. You might only want the lookup to happen when the user stops typing for a while. – Pete BD Nov 11 '12 at 7:32

1 Answer

up vote 4 down vote accepted

Here is a working example of such a service: http://plnkr.co/edit/fJwRER?p=preview. It creates a $q deferred object that will be resolved when the debounced function is finally called.

Each time the debounce function is called the promise to the next call of the inner function is returned.

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;
    };
  };
});

You get the return value from the debounced function by using the then method on the promise.

$scope.logReturn = function(msg) {
  var returned = debounce($scope.addMsg, 2000, false);
  console.log('Log: ', returned);
  returned.then(function(value) {
    console.log('Resolved:', value);
  });
};

If you call logReturn multiple times in quick succession you will see the promise logged over and over but only one resolved message.

share|improve this answer
This is brilliant. It should be part of the core code. – Roy Truelove Feb 7 at 22:09
Out of curiosity, do you find the returned promises of any use? For instance in the case of an autocomplete, it would be nice to have a single promise that tells me what the user finally typed, but not a promise per keystroke. I'm starting to feel like you can get away with promises, and you can get away with debouncing + callback, but not both. – Roy Truelove Feb 7 at 22:44
This is what you do get! The promise you receive is the result of finally calling the inner function. You'll notice that in the example, "Resolved: ..." is only written to the console once per debounce and that "value" will be the return value from $scope.addMsg() – Pete BD Feb 9 at 19:31
When you say "once per debounce" do you mean once per click? eg when I click 'Add Message (logged)' 10 times, I get 10 log messages, and then 2 seconds later I get 10 resolved messages. I was trying to figure out a way to get only 1 resolved message, but.. alas. – Roy Truelove Feb 10 at 14:16
Thanks Pete, let me know if you find a workaround - I wasn't able to :( – Roy Truelove Feb 11 at 21:47
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.