This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(fetch): schedule macroTask when fetch
- Loading branch information
1 parent
ff3d545
commit 082b5c4
Showing
11 changed files
with
339 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
{ | ||
"path": "dist/zone.min.js", | ||
"checkTarget": true, | ||
"limit": 40144 | ||
"limit": 41500 | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/** | ||
* @license | ||
* Copyright Google Inc. All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://angular.io/license | ||
*/ | ||
|
||
Zone.__load_patch('fetch', (global: any, Zone: ZoneType, api: _ZonePrivate) => { | ||
const fetch = global['fetch']; | ||
const ZoneAwarePromise = global.Promise; | ||
const symbolThenPatched = api.symbol('thenPatched'); | ||
const fetchTaskScheduling = api.symbol('fetchTaskScheduling'); | ||
if (typeof fetch !== 'function') { | ||
return; | ||
} | ||
const OriginalAbortController = global['AbortController']; | ||
const supportAbort = typeof OriginalAbortController === 'function'; | ||
let abortNative: Function|null = null; | ||
if (supportAbort) { | ||
global['AbortController'] = function() { | ||
const abortController = new OriginalAbortController(); | ||
const signal = abortController.signal; | ||
signal.abortController = abortController; | ||
return abortController; | ||
}; | ||
abortNative = api.patchMethod( | ||
OriginalAbortController.prototype, 'abort', | ||
(delegate: Function) => (self: any, args: any) => { | ||
if (self.task) { | ||
return self.task.zone.cancelTask(self.task); | ||
} | ||
return delegate.apply(self, args); | ||
}); | ||
} | ||
const placeholder = function() {}; | ||
global['fetch'] = function() { | ||
const args = Array.prototype.slice.call(arguments); | ||
const options = args.length > 1 ? args[1] : null; | ||
const signal = options && options.signal; | ||
return new Promise((res, rej) => { | ||
const task = Zone.current.scheduleMacroTask( | ||
'fetch', placeholder, args, | ||
() => { | ||
let fetchPromise; | ||
let zone = Zone.current; | ||
try { | ||
(zone as any)[fetchTaskScheduling] = true; | ||
fetchPromise = fetch.apply(this, args); | ||
} catch (error) { | ||
rej(error); | ||
return; | ||
} finally { | ||
(zone as any)[fetchTaskScheduling] = false; | ||
} | ||
|
||
if (!(fetchPromise instanceof ZoneAwarePromise)) { | ||
let ctor = fetchPromise.constructor; | ||
if (!ctor[symbolThenPatched]) { | ||
api.patchThen(ctor); | ||
} | ||
} | ||
fetchPromise.then( | ||
(resource: any) => { | ||
if (task.state !== 'notScheduled') { | ||
task.invoke(); | ||
} | ||
res(resource); | ||
}, | ||
(error: any) => { | ||
if (task.state !== 'notScheduled') { | ||
task.invoke(); | ||
} | ||
rej(error); | ||
}); | ||
}, | ||
() => { | ||
if (!supportAbort) { | ||
rej('No AbortController supported, can not cancel fetch'); | ||
return; | ||
} | ||
if (signal && signal.abortController && !signal.aborted && | ||
typeof signal.abortController.abort === 'function' && abortNative) { | ||
abortNative.call(signal.abortController); | ||
} else { | ||
rej('cancel fetch need a AbortController.signal'); | ||
} | ||
}); | ||
if (signal && signal.abortController) { | ||
signal.abortController.task = task; | ||
} | ||
}); | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.