web-dev-qa-db-fra.com

Comment annuler une fonction rebondie après son appel et avant son exécution?

Je crée une version désaffectée d'une fonction avec soulignement:

var debouncedThing = _.debounce(thing, 1000);

Une fois que debounceThing est appelé ...

debouncedThing();

... y a-t-il un moyen de l'annuler pendant la période d'attente avant qu'il ne soit exécuté?

20
user1031947

Si vous utilisez la dernière version de lodash, vous pouvez simplement faire:

// create debounce
const debouncedThing = _.debounce(thing, 1000);

// execute debounce, it will wait one second before executing thing
debouncedThing();

// will cancel the execution of thing if executed before 1 second
debouncedThing.cancel()

Une autre solution est avec un drapeau:

// create the flag
let executeThing = true;

const thing = () => {
   // use flag to allow execution cancelling
   if (!executeThing) return false;
   ...
};

// create debounce
const debouncedThing = _.debounce(thing, 1000);

// execute debounce, it will wait one second before executing thing
debouncedThing();

// it will prevent to execute thing content
executeThing = false;
30
Carlos Ruana

Ce que j'ai fait est utilisé _.mixin pour créer une méthode _.cancellableDebounce. C'est presque identique à l'original à l'exception de deux nouvelles lignes.

_.mixin({
    cancellableDebounce: function(func, wait, immediate) {
        var timeout, args, context, timestamp, result;

        var later = function() {
          var last = _.now() - timestamp;

          if (last < wait && last >= 0) {
            timeout = setTimeout(later, wait - last);
          } else {
            timeout = null;
            if (!immediate) {
              result = func.apply(context, args);
              if (!timeout) context = args = null;
            }
          }
        };

        return function() {
          context = this;
          args = arguments;
          timestamp = _.now();
          var callNow = immediate && !timeout;
          if (!timeout) timeout = setTimeout(later, wait);
          if (callNow) {
            result = func.apply(context, args);
            context = args = null;
          }

          // Return timeout so debounced function can be cancelled
          result = result || {};
          result.timeout = timeout;

          return result;
        };
    }
});

USAGE:

var thing = function() {
    console.log("hello world");
}

var debouncedThing = _.cancellableDebounce(thing, 1000);
var timeout = debouncedThing().timeout;

clearTimeout(timeout);
1
George Jempty

Le moyen le plus simple d’annuler une fonction déjà appelée dans sa période d’antériorité est de le rendre annulable. Vraiment, ajoutez 3 lignes de code et une condition.

const doTheThingAfterADelay = debounce((filter, abort) => {
  if (abort) return

  // here goes your code...

}, /*debounce delay*/500)


function onFilterChange(filter) {
  let abort = false

  if (filter.length < 3) { // your abort condition
    abort = true
  }

  doTheThingAfterADelay(filter, abort) // debounced call
}

Vous l'annulez en l'appelant à nouveau avec abort = true.

Pour référence, ceci est votre fonction debounce classique tirée de Underscore. Il reste intact dans mon exemple.

// taken from Underscore.js
// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading Edge, instead of the trailing.
export function debounce(func, wait, immediate) {
  let timeout
  return function() {
    let context = this, args = arguments
    let later = function() {
      timeout = null
      if (!immediate) func.apply(context, args)
    }
    let callNow = immediate && !timeout
    clearTimeout(timeout)
    timeout = setTimeout(later, wait)
    if (callNow) func.apply(context, args)
  }
}
0
Qwerty