Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit f9fc7bb

Browse files
committed
feat($http): add notify callback
Allows progress notifications for $http requests. This makes use of the readyState 3 of XMLHttpRequest.
1 parent b6a0777 commit f9fc7bb

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/ng/http.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ function $HttpProvider() {
905905
// if we won't have the response in cache, send the request to the backend
906906
if (!cachedResp) {
907907
$httpBackend(config.method, url, reqData, done, reqHeaders, config.timeout,
908-
config.withCredentials, config.responseType);
908+
config.withCredentials, config.responseType, notify);
909909
}
910910

911911
return promise;
@@ -932,6 +932,14 @@ function $HttpProvider() {
932932
}
933933

934934

935+
/**
936+
* Notify callback registered to $httpBackend()
937+
*/
938+
function notify(xhr) {
939+
deferred.notify(xhr);
940+
}
941+
942+
935943
/**
936944
* Resolves the raw $http promise.
937945
*/

src/ng/httpBackend.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function $HttpBackendProvider() {
3232

3333
function createHttpBackend($browser, XHR, $browserDefer, callbacks, rawDocument, locationProtocol) {
3434
// TODO(vojta): fix the signature
35-
return function(method, url, post, callback, headers, timeout, withCredentials, responseType) {
35+
return function(method, url, post, callback, headers, timeout, withCredentials, responseType, notify) {
3636
var status;
3737
$browser.$$incOutstandingRequestCount();
3838
url = url || $browser.url();
@@ -92,6 +92,8 @@ function createHttpBackend($browser, XHR, $browserDefer, callbacks, rawDocument,
9292
status || xhr.status,
9393
(xhr.responseType ? xhr.response : xhr.responseText),
9494
responseHeaders);
95+
} else if (xhr && xhr.readyState == 3 && notify) {
96+
notify(xhr);
9597
}
9698
};
9799

0 commit comments

Comments
 (0)