1.1.0 • Published 11 years ago

last v1.1.0

Weekly downloads
150
License
-
Repository
github
Last release
11 years ago

Ignore All But the Last Result

Pretty commonly, when performing asynchronous operations, you might fire off multiple of them, but then only care about the last result that comes back. A common example is searching:

$(searchEl).on("input", function (ev) {
    doSearch(searchEl.value).then(updateUIWithResults).done();
});

But consider this scenario:

  1. The user types "do," so you send off an asynchronous search to your server for "do."
  2. The user then types "g," so you send off a search for "dog."
  3. The results for "dog" come back before the results for "do," so you update your UI with those.
  4. But then the results for "do" come back, so you overwrite the UI with results for "do" instead of "dog!"

This isn't what you wanted! Once you sent off the search for "dog," you want to ignore any results from the previous search for "do."

Well, this package will solve your problems.

Using Last

This package's main module has as its default export a single function, last, which you can use to wrap naïve functions into smart ones that will ignore all but the last result. It works with any function that returns a Promises/A+-compliant promise. Once you do that, your code can look just as pretty as the above example, but this time it will actually be correct!

var last = require("last");

var smartSearch = last(doSearch);

$(searchEl).on("input", function (ev) {
    smartSearch(searchEl.value).then(updateUIWithResults).done();
});

The wrapped function will return a Q promise. (In future versions, we'll try to return promises of the same type you pass in.) Once you call the function again, you will be guaranteed that previously-returned pending promises stay pending forever, and so you don't have to worry about them coming back later than your new promise.

1.1.0

11 years ago

1.0.0

11 years ago