-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat($http): add XHR events configuration option #11547
Conversation
b07b53b
to
3d76950
Compare
@chrisirhc I don't think is right - be doing so we would allow people to override already added (by Angular itself) handlers, no? I know that this change would make things super-flexible but this doesn't seem to be in-line with the current API. Do you have any other use-cases (besides download / upload events) on your mind for this one? |
@pkozlowski-opensource This doesn't override existing handlers, addEventListener always adds on existing listeners. In fact, this is safer than allowing users to do anything to the Use Case: I'm streaming a response and want to read the incomplete response as it is being streamed. Think of a timeseries chart that renders live as the data is coming in. |
@pkozlowski-opensource Ping. I saw that perhaps you put this in Purgatory because you thought that it would allow people to override the handlers, but it won't. As for the being in line with the API, it would be interesting to design an API that's in line that adds such functionality. I probably need to study more API design to come up with something better. |
@pkozlowski-opensource: What are the downsides to this? |
} | ||
}); | ||
|
||
if (eventHandlers.upload) { |
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.
Why put listeners inside upload
if it's not going to make any difference ?
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.
?
The eventHandlers
object has the following structure:
{
someEvent: ...,
someOtherEvent: ...,
upload: {
someUploadEvent: ...,
someOtherUploadEvent: ...
}
}
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.
Yes, but we end up doing xhr.addEventListener(key, value)
for all of them.
I.e. I could write you example as:
{
someUploadEvent: ...,
someOtherUploadEvent: ...
upload: {
someEvent: ...,
someOtherEvent: ...,
}
}
// or
{
someEvent: ...,
someOtherEvent: ...,
someUploadEvent: ...,
someOtherUploadEvent: ...
}
and the result would be the same.
So, I am wondering if there is any benefit in separating into two categories. Why not keep it flat ?
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.
Sorry, this is a typo on my part. This is meant to attach events on xhr.upload
. The line 100 should read xhr.upload.addEventListener(key, value);
.
I'll be very happy to fix this if there's any interest in the PR.
Specifically, this is because there's progress
events for both upload and the xhr object itself.
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.
Makes sense now; I didn't know about xhr.upload
😕
3d76950
to
e74a7e6
Compare
Updated PR to correct typo ( |
OK, so all we need now are some unit tests and docs then this is good to go. |
Allows for arbitrary event handling on requests.
e74a7e6
to
5b133af
Compare
|
LGTM - @pkozlowski-opensource ? |
this.upload = { | ||
$$events: {}, | ||
addEventListener: this.addEventListener | ||
}; |
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.
Since we are mocking the addition of event listeners, would it make sense to also mock emitting some event (so that people can test their code once it relies on a callback to be called on event X) ?
Would it be possible in a clean and reliable way without a breaking change ?
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.
That makes sense and could be implemented like MockWindow's fire method .
However, I don't want to put too many changes in this PR at the moment as it'll affect reviewing, and the chances of it getting merged.
This is not in 1.5.0-RC.0? |
Sorry, @mchambaud, it didn't make the cut for 1.5 - but worry not, 1.6 will be coming in not too far behind 1.5, which should be released early after the New Year. |
@petebacondarwin Perhaps the milestone should be updated! |
Thanks @mchambaud - I have updated the milestone :-) |
👍 |
When will 1.6 be released? |
All non-breaking changes will be included in 1.5.x |
May be a stupid question. But is this a breaking change? |
I don't think it is a BC |
Let's get this into 1.5.x (probably 2 or 3) |
This isn't merged yet... And I don't think it is gonna be. I've been waiting a such feature on Angular for years, yet it is 2016 and we still can't track upload with $http. I found a pretty good workaround somewhere in the web, before this code, I were using XHR directly, using XHR directly has a few disadvantages:
It was good idea to keep $http / $api logic in my project. here is an example // XHR decorators were recently added to angular.
/* app */.decorator("$xhrFactory", function($delegate, $rootScope) {
'ngInject';
return function(method, url) {
var xhr = $delegate(method, url);
xhr.setRequestHeader = (function(sup) {
return function(header, value) {
if ((header === "__XHR__") && angular.isFunction(value))
value(this);
else
sup.apply(this, arguments);
};
})(xhr.setRequestHeader);
return xhr;
};
});
// somewhere in the project
$http({
method: 'PUT',
url: `files/user/private/${file.name}`,
data: 'the file object',
headers: {
'Content-Type': 'application/blablabla',
__XHR__: function() {
return function(xhr) {
// here you can access the XHR
xhr.upload.addEventListener("progress", function(event) {
upload_callback(event.loaded, event.total);
});
};
}
}
}); It would be much better if we could track the upload without hooking setRequestHeader. But i think it is the best solution to use something like until this PR get merged. |
Is this blocked on me rebasing this PR / making it merge-able? If it is, I can look into it. |
I think we are OK, it just got lost in the huge pile of papers in the in-tray |
@petebacondarwin Are there any update on this? edit: didn't see the commits, sorry. |
I have a pull request here that should land soon #14367 |
Closes angular#14367 Closes angular#11547 Closes angular#1934
Allows for arbitrary event handling on requests.
There are no tests here, it's just a proposal for discussion of #1934 .
I'll add tests if a decision is made to go ahead with it.
This may also simplify testing by just firing events on the
mockXhr
object.