-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat($q): finally callback is called with result arguments #9287
Conversation
@shahata : as usual, thank you very much! |
@shahata :
What this basically does is to call the FINALLY method with different set of parameters:
What I was suggesting is to call FINALLY with the same types of parameters (Boolean, Mixed):
The code should look like:
Basically publish the API available inside AngularJS externally - give user the freedom to do whatever he/she wants with that API. What do you think? |
Can go either way, let's see what ppl think and if this is even going to get merged... |
This is a very bad idea. I can guarantee that if we standardize |
@domenic : as per comments in kriskowal/q#589, please stop spamming all github pages you find. I respect your opinion, but we seem to have very different aims: for you it's ok if a developer does it "in his own harden" while for me it's important to have a stable library that provides a good API. If you have any more subjective opinions about this, please use issue 589 from Q project. Reminder here for people who do not have the patience of reading all: Domenic is proposing to use:
His proposal seems more like a work-around than a solution and totally undocumented. |
The second version doesn't even make any sense, since reject() gives |
:) @domenic : thank you for posting more comments in Q issue. |
(I don't take instructions from you on where to converse.) That is false; reject callbacks are always called with |
I'd like to propose an option: name this operation I think this would be a good solution for at least a couple reasons:
So, a simple solution seems like it would be to pick a nice, but different name, like |
@dragosrususv - @domenic knows the pains of standardizing promises to have a common interface across all libraries and in ES6. Changing the interfaces of common methods like this could have disastrous consequences in the future - like being unable to standardize @briancavalier 's proposal is the way to go here IMO - it fixes both issues |
@briancavalier , @spion - ".always()" is perfect. As a developer, the only requirement would be to write code in one place. Thank you kindly for a constructive feedback on this one. If this proposal gets accepted in higher groups, do you think we could get some feedback here to the AngularJS sub-world to know how to proceed? Thank you kindly in advance. @domenic : I apologize for my insistent comments. I was not aware of the full context, as @spion described it above, but I still believe a solution should be in place (like the .always() or .anyway() or whatever name that might be). |
I'm not too sure about the current design (unrelated to the rest of this discussion, which I don't care a whole lot about). The "pass the fulfilled value and rejection reason" thing seems to enable you to write 2 branches of code, whereby you handle either a fulfillment or rejection --- and that doesn't seem useful or nice. I would rather there was only one parameter, and you are meant not to care whether it's a rejection or fulfillment (otherwise you'd use proper fulfillment handlers or rejection handlers). In short, I don't want people writing code like this: promise.
finally(function(goodValue, badValue) {
if (badValue === (void) 0) {
// deal with resolved value
} else {
// deal with rejection
}
}); Because this is messier than the api that is already provided |
@caitp Personally, I agree with you about branching code being messy, and that using Unfortunately, I don't think a single-parameter version of promise.always(function(x) {
// There's no foolproof test to know if x represents success or failure
} The only truly safe thing to do in that case is ignore |
I think if you're wanting to run the same code regardless of whether it's a success or failure, you probably don't care if it's a success or failure (just my 2c) |
If you don't care if it is success or failure, you probably don't care about the result at all. Maybe we should be consistent with Q and drop this... |
In the case of |
how about having the fulfilled or reject value in the first param and a boolean indicating if the promise was resolved or rejected in the second param as was previously suggested? this way you are not forced to branch, but you also have the boolean if you really need it for something. |
I'm not keen on it |
okay, let's start without. another issue - regarding the semantics of this |
I'm not sure the return value should affect the resolution of the handler's promise, it should probably just resolve/reject to whatever the value is. I'd have to look at some other promise libraries to see what the general pattern of done/always is |
Presuming there will be a 1-to-1 relationship between a promise and an The jQuery guys though seem to have done this as @shahata said: "Since deferred.always() returns the Deferred object, other methods of the Deferred object can be chained to this one, including additional .always() methods" ( http://api.jquery.com/deferred.always/ ) |
I think you'll find it more difficult to make it work as a "one time show" than it's really worth. That said, I will investigate strategies for always/done in other frameworks |
If it's easier to just extend the defer API with a method in the command-chain object, then that's just great. From standard perspective, this choice would be even better. |
I don't really buy the premise that angular or jQuery's own deferred APIs will have that much of an impact on TC39's promise apis. We're already playing catchup with them, they certainly haven't gone down a path like jQuery.Deferred or angular $q yet. |
That's too bad. I believe that most popular frameworks have faced a lot of problems they had to resolve for their own communities - I guess they just opt to throw to garbage this experience. And most of the time this experience brings you the real scenarios and use-cases and not fictional ones. |
that's not to say that promise libraries haven't been very involved in those discussions, especially if Domenic is maintaining Q |
I've updated this PR with an initial implementation of |
return reject(reason); | ||
}); | ||
}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- an alternative implementation can be
return this.then(callback, callback)
but then the callback can control the reject/resolve chain, which is strange since the callback doesn't even know if this is a reject or resolve. - we could allow this callback to return a promise in order to delay the resolve/reject of the chained promise, but still not effect the final result, similar to what
finally
does.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(1) - it would make no sense to add 2 callbacks, it becomes "then"
(2) - I might misunderstand the code above, but that seems to be different from jQuery's implementation where the return of an always call is pushed to the next one in the queue (.then,
.always, etc) - in this case the return value is ignored and the chain continues with last known value; but I presume that is what you intended to do.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so you are saying that you prefer the alternative implementation where:
always: function (callback) {
return this.then(callback, callback);
});
I don't really care, but as I said, this would be a bit strange since the callback doesn't even know if this is a reject or resolve. I could do that just as easily, obviously, let's just try to agree on the implementation that makes sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it would be ideal to behave the way other promise implementations do, I guess (in other words, I'll investigate the behaviour of other popular libraries tomorrow and leave comments based on that, unless someone else beats me to it)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll have time to look into it tonight, so I guess you can do it too if you don't want to wait. From initial (and very superficial) look it doesn't seem like other promise implementations are doing something like this except for maybe jQuery.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah. Tried to search a bit but didn't find this "always" anywhere else.
Personally for me it works both ways. I was just saying that jQuery implemented "always()" in the same manner as "then" (stack-able via command-chain - even multiple always, as they say).
e8dc429
to
e83fab9
Compare
This seems like it got on a closed rail - any news? |
4dd5a20
to
998c61c
Compare
Given that Angular 2 is moving to ES6 Promise, then I would not add anything new to |
before this commit,
finally
callback was called with no arguments and couldn't know whether the promise was resolved or rejected and why.Closes #9246