Skip to content

Commit 4550fe4

Browse files
alan-agius4pkozlowski-opensource
authored andcommitted
refactor: use queueMicrotask to schedule micro tasks instead of various helpers (angular#50485)
`queueMicrotask` is an API which is supported by all browser and Node.js versions. PR Close angular#50485
1 parent cec5cd6 commit 4550fe4

File tree

30 files changed

+55
-151
lines changed

30 files changed

+55
-151
lines changed

packages/animations/src/players/animation_group_player.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
import {scheduleMicroTask} from '../util';
10-
119
import {AnimationPlayer} from './animation_player';
1210

1311
/**
@@ -38,7 +36,7 @@ export class AnimationGroupPlayer implements AnimationPlayer {
3836
const total = this.players.length;
3937

4038
if (total == 0) {
41-
scheduleMicroTask(() => this._onFinish());
39+
queueMicrotask(() => this._onFinish());
4240
} else {
4341
this.players.forEach(player => {
4442
player.onDone(() => {

packages/animations/src/players/animation_player.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8-
import {scheduleMicroTask} from '../util';
98

109
/**
1110
* Provides programmatic control of a reusable animation sequence,
@@ -166,7 +165,7 @@ export class NoopAnimationPlayer implements AnimationPlayer {
166165

167166
/** @internal */
168167
triggerMicrotask() {
169-
scheduleMicroTask(() => this._onFinish());
168+
queueMicrotask(() => this._onFinish());
170169
}
171170

172171
private _onStart() {

packages/animations/src/util.ts

-10
This file was deleted.

packages/animations/test/animation_player_spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88
import {fakeAsync} from '@angular/core/testing';
9+
910
import {flushMicrotasks} from '../../core/testing/src/fake_async';
1011
import {NoopAnimationPlayer} from '../src/players/animation_player';
11-
import {scheduleMicroTask} from '../src/util';
1212

1313
{
1414
describe('NoopAnimationPlayer', function() {
@@ -70,7 +70,7 @@ import {scheduleMicroTask} from '../src/util';
7070

7171
const player = new NoopAnimationPlayer();
7272
player.onStart(() => {
73-
scheduleMicroTask(() => log.push('started'));
73+
queueMicrotask(() => log.push('started'));
7474
});
7575
player.onDone(() => log.push('done'));
7676
expect(log).toEqual([]);

packages/animations/test/util_spec.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8-
import {scheduleMicroTask} from '../src/util';
98

109
{
1110
describe('util', () => {
1211
it('should schedule a microtask and not call an async timeout', (done) => {
1312
let count = 0;
14-
scheduleMicroTask(() => count++);
13+
queueMicrotask(() => count++);
1514

1615
expect(count).toEqual(0);
17-
Promise.resolve().then(() => {
16+
queueMicrotask(() => {
1817
expect(count).toEqual(1);
1918
done();
2019
});

packages/common/http/test/jsonp_spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const SAMPLE_REQ = new HttpRequest<never>('JSONP', '/test');
4747
// Issue #39496
4848
it('handles a request with callback call wrapped in promise', done => {
4949
backend.handle(SAMPLE_REQ).subscribe({complete: done});
50-
Promise.resolve().then(() => {
50+
queueMicrotask(() => {
5151
runOnlyCallback(home, {data: 'This is a test'});
5252
});
5353
document.mockLoad();

packages/core/src/testability/testability.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
*/
88

99
import {Inject, Injectable, InjectionToken} from '../di';
10-
import {scheduleMicroTask} from '../util/microtask';
1110
import {NgZone} from '../zone/ng_zone';
1211

1312
/**
@@ -127,7 +126,7 @@ export class Testability implements PublicTestability {
127126
this._ngZone.onStable.subscribe({
128127
next: () => {
129128
NgZone.assertNotInAngularZone();
130-
scheduleMicroTask(() => {
129+
queueMicrotask(() => {
131130
this._isZoneStable = true;
132131
this._runCallbacksIfReady();
133132
});
@@ -169,7 +168,7 @@ export class Testability implements PublicTestability {
169168
private _runCallbacksIfReady(): void {
170169
if (this.isStable()) {
171170
// Schedules the call backs in a new frame so that it is always async.
172-
scheduleMicroTask(() => {
171+
queueMicrotask(() => {
173172
while (this._callbacks.length !== 0) {
174173
let cb = this._callbacks.pop()!;
175174
clearTimeout(cb.timeoutId);

packages/core/src/util/microtask.ts

-22
This file was deleted.

packages/core/src/zone/ng_zone.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ import {inject, InjectionToken} from '../di';
1313
import {RuntimeError, RuntimeErrorCode} from '../errors';
1414
import {EventEmitter} from '../event_emitter';
1515
import {global} from '../util/global';
16-
import {scheduleMicroTask} from '../util/microtask';
1716
import {noop} from '../util/noop';
1817
import {getNativeRequestAnimationFrame} from '../util/raf';
1918

2019
import {AsyncStackTaggingZoneSpec} from './async-stack-tagging';
2120

21+
// The below is needed as otherwise a number of targets fail in G3 due to:
22+
// ERROR - [JSC_UNDEFINED_VARIABLE] variable Zone is undeclared
23+
declare const Zone: any;
24+
2225
/**
2326
* An injectable service for executing work inside or outside of the Angular zone.
2427
*
@@ -547,7 +550,7 @@ export function isStableFactory() {
547550

548551
// Check whether there are no pending macro/micro tasks in the next tick
549552
// to allow for NgZone to update the state.
550-
scheduleMicroTask(() => {
553+
queueMicrotask(() => {
551554
if (!_stable && !zone.hasPendingMacrotasks && !zone.hasPendingMicrotasks) {
552555
_stable = true;
553556
observer.next(true);

packages/core/test/bundling/animations-standalone/bundle.golden_symbols.json

-6
Original file line numberDiff line numberDiff line change
@@ -1289,9 +1289,6 @@
12891289
{
12901290
"name": "profiler"
12911291
},
1292-
{
1293-
"name": "promise"
1294-
},
12951292
{
12961293
"name": "provideZoneChangeDetection"
12971294
},
@@ -1358,9 +1355,6 @@
13581355
{
13591356
"name": "scheduleArray"
13601357
},
1361-
{
1362-
"name": "scheduleMicroTask"
1363-
},
13641358
{
13651359
"name": "searchTokensOnInjector"
13661360
},

packages/core/test/bundling/animations/bundle.golden_symbols.json

-9
Original file line numberDiff line numberDiff line change
@@ -1364,9 +1364,6 @@
13641364
{
13651365
"name": "profiler"
13661366
},
1367-
{
1368-
"name": "promise"
1369-
},
13701367
{
13711368
"name": "refCount"
13721369
},
@@ -1430,12 +1427,6 @@
14301427
{
14311428
"name": "scheduleArray"
14321429
},
1433-
{
1434-
"name": "scheduleMicroTask"
1435-
},
1436-
{
1437-
"name": "scheduleMicroTask2"
1438-
},
14391430
{
14401431
"name": "searchTokensOnInjector"
14411432
},

packages/core/test/bundling/cyclic_import/bundle.golden_symbols.json

-6
Original file line numberDiff line numberDiff line change
@@ -1085,9 +1085,6 @@
10851085
{
10861086
"name": "profiler"
10871087
},
1088-
{
1089-
"name": "promise"
1090-
},
10911088
{
10921089
"name": "refCount"
10931090
},
@@ -1133,9 +1130,6 @@
11331130
{
11341131
"name": "scheduleArray"
11351132
},
1136-
{
1137-
"name": "scheduleMicroTask"
1138-
},
11391133
{
11401134
"name": "searchTokensOnInjector"
11411135
},

packages/core/test/bundling/forms_reactive/bundle.golden_symbols.json

-6
Original file line numberDiff line numberDiff line change
@@ -1499,9 +1499,6 @@
14991499
{
15001500
"name": "profiler"
15011501
},
1502-
{
1503-
"name": "promise"
1504-
},
15051502
{
15061503
"name": "providerToFactory"
15071504
},
@@ -1571,9 +1568,6 @@
15711568
{
15721569
"name": "scheduleArray"
15731570
},
1574-
{
1575-
"name": "scheduleMicroTask"
1576-
},
15771571
{
15781572
"name": "searchTokensOnInjector"
15791573
},

packages/core/test/bundling/forms_template_driven/bundle.golden_symbols.json

-6
Original file line numberDiff line numberDiff line change
@@ -1463,9 +1463,6 @@
14631463
{
14641464
"name": "profiler"
14651465
},
1466-
{
1467-
"name": "promise"
1468-
},
14691466
{
14701467
"name": "providerToFactory"
14711468
},
@@ -1547,9 +1544,6 @@
15471544
{
15481545
"name": "scheduleArray"
15491546
},
1550-
{
1551-
"name": "scheduleMicroTask"
1552-
},
15531547
{
15541548
"name": "searchTokensOnInjector"
15551549
},

packages/core/test/bundling/hello_world/bundle.golden_symbols.json

-3
Original file line numberDiff line numberDiff line change
@@ -857,9 +857,6 @@
857857
{
858858
"name": "profiler"
859859
},
860-
{
861-
"name": "promise"
862-
},
863860
{
864861
"name": "refCount"
865862
},

packages/core/test/bundling/hydration/bundle.golden_symbols.json

-3
Original file line numberDiff line numberDiff line change
@@ -1151,9 +1151,6 @@
11511151
{
11521152
"name": "profiler"
11531153
},
1154-
{
1155-
"name": "promise"
1156-
},
11571154
{
11581155
"name": "provideZoneChangeDetection"
11591156
},

packages/core/test/bundling/router/bundle.golden_symbols.json

-3
Original file line numberDiff line numberDiff line change
@@ -1763,9 +1763,6 @@
17631763
{
17641764
"name": "profiler"
17651765
},
1766-
{
1767-
"name": "promise"
1768-
},
17691766
{
17701767
"name": "provideZoneChangeDetection"
17711768
},

packages/core/test/bundling/standalone_bootstrap/bundle.golden_symbols.json

-3
Original file line numberDiff line numberDiff line change
@@ -950,9 +950,6 @@
950950
{
951951
"name": "profiler"
952952
},
953-
{
954-
"name": "promise"
955-
},
956953
{
957954
"name": "provideZoneChangeDetection"
958955
},

packages/core/test/bundling/todo/bundle.golden_symbols.json

-6
Original file line numberDiff line numberDiff line change
@@ -1289,9 +1289,6 @@
12891289
{
12901290
"name": "profiler"
12911291
},
1292-
{
1293-
"name": "promise"
1294-
},
12951292
{
12961293
"name": "refCount"
12971294
},
@@ -1346,9 +1343,6 @@
13461343
{
13471344
"name": "scheduleArray"
13481345
},
1349-
{
1350-
"name": "scheduleMicroTask"
1351-
},
13521346
{
13531347
"name": "searchTokensOnInjector"
13541348
},

packages/core/test/testability/testability_spec.ts

+5-6
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,16 @@ import {EventEmitter} from '@angular/core';
1010
import {Injectable} from '@angular/core/src/di';
1111
import {GetTestability, PendingMacrotask, Testability, TestabilityRegistry} from '@angular/core/src/testability/testability';
1212
import {NgZone} from '@angular/core/src/zone/ng_zone';
13-
import {fakeAsync, flush, tick, waitForAsync} from '@angular/core/testing';
13+
import {fakeAsync, tick, waitForAsync} from '@angular/core/testing';
1414

1515
import {setTestabilityGetter} from '../../src/testability/testability';
16-
import {scheduleMicroTask} from '../../src/util/microtask';
1716

18-
// Schedules a microtasks (using a resolved promise .then())
17+
// Schedules a microtasks (using queueMicrotask)
1918
function microTask(fn: Function): void {
20-
scheduleMicroTask(() => {
21-
// We do double dispatch so that we can wait for scheduleMicrotask in the Testability when
19+
queueMicrotask(() => {
20+
// We do double dispatch so that we can wait for queueMicrotask in the Testability when
2221
// NgZone becomes stable.
23-
scheduleMicroTask(fn);
22+
queueMicrotask(() => fn());
2423
});
2524
}
2625

0 commit comments

Comments
 (0)