Coder Social home page Coder Social logo

Comments (4)

augustl avatar augustl commented on September 1, 2024

Slightly off topic, but just came across another use case for accessing promise state. When I get the state data from the server, I need to wrap the .resolve() in a try/catch since the promise might have been resolved before. Alternatively, I can keep track of state separately and only .resolve() once. Would be useful to just do something like if (!deferred.resolved) deferred.resolve().

from when.

briancavalier avatar briancavalier commented on September 1, 2024

Sorry it took me a bit longer than I expect to respond!

Is mocking the promises, as suggested by @tobie on twitter, an option for testing? I like that idea a lot because then your tests are not dependent on the particular promise implementation, but rather on the Promises/A spec.

Let me know if that doesn't work in your situation and we can figure out something else.

I've been pretty hesitant to provide any way to query a promise's state. One reason is that I think it might encourage people to poll promises, which I feel is an antipattern. I tend to look at them as one-time events rather than something with a queryable state (even though they most certainly are stateful!).

It seems like anytime I've gotten myself into a situation where I felt like I needed a way to query a promise to see if it's resolved or not, I end up figuring out a better way to do what I need to do. Not saying that's the case here, but it's become one of those things that raises a red flag in my mind.

If you do need to branch depending on the state, right now, the only way would be to maintain the state yourself. One simple way would be to use a boolean, but that can be problematic if there's asynchrony and you use a promise callback to set the boolean. Another way that might work in this situation (admittedly without knowing many of the details), is to use a function overwrite to silence subsequent attempts to resolve a deferred. Something like:

var deferred = ...;

function noop() {}

var resolvePromise = function() {
    resolvePromise = noop;
    deferred.resolve();
};

You could also overwrite deferred.resolve/reject directly--although you can't overwrite deferred.resolver.resolve/reject, since the resolver is frozen. For example, wherever you resolve the deferred:

deferred.resolve();
deferred.resolve = deferred.reject = noop;

As long as you don't give out deferred.resolver to anyone, that should be safe. But again, depending on your architecture that may or may not work.

from when.

augustl avatar augustl commented on September 1, 2024

Mocking them will indeed solve all my problems, thanks.

from when.

briancavalier avatar briancavalier commented on September 1, 2024

Great, glad that worked for you, August.

from when.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.