Revert "refactor(animations): Ensure async animations applies changes when loaded in zoneless (#55132)" (#55524)

This reverts commit 9ab36cfe0a.

PR Close #55524
This commit is contained in:
Andrew Kushnir 2024-04-24 16:11:28 -07:00
parent 70b478ff59
commit 28905ab9ae
8 changed files with 24 additions and 17 deletions

View file

@ -49,6 +49,7 @@ import {
normalizeKeyframes,
optimizeGroupPlayer,
} from './shared';
import {NotificationType} from '@angular/core/src/change_detection/scheduling/zoneless_scheduling';
const QUEUED_CLASSNAME = 'ng-animate-queued';
const QUEUED_SELECTOR = '.ng-animate-queued';

View file

@ -57,6 +57,7 @@ const DEFAULT_NAMESPACE_ID = 'id';
getBodyNode(),
driver,
normalizer || new NoopAnimationStyleNormalizer(),
null,
);
engine.createNamespace(DEFAULT_NAMESPACE_ID, element);
return engine;

View file

@ -18,7 +18,7 @@ import {inject} from '../di';
import {Injectable} from '../di/injectable';
import {InjectionToken} from '../di/injection_token';
import {Injector} from '../di/injector';
import {EnvironmentInjector, R3Injector} from '../di/r3_injector';
import {EnvironmentInjector} from '../di/r3_injector';
import {ErrorHandler, INTERNAL_APPLICATION_ERROR_HANDLER} from '../error_handler';
import {formatRuntimeError, RuntimeError, RuntimeErrorCode} from '../errors';
import {Type} from '../interface/type';
@ -163,6 +163,9 @@ export interface BootstrapOptions {
/** Maximum number of times ApplicationRef will refresh all attached views in a single tick. */
const MAXIMUM_REFRESH_RERUNS = 10;
// This is a temporary type to represent an instance of an R3Injector, which can be destroyed.
// The type will be replaced with a different one once destroyable injector type is available.
type DestroyableInjector = Injector&{destroy?: Function, destroyed?: boolean};
export function _callAndReportToErrorHandler(
errorHandler: ErrorHandler, ngZone: NgZone, callback: () => any): any {
@ -549,8 +552,8 @@ export class ApplicationRef {
private detectChangesInAttachedViews(refreshViews: boolean) {
let rendererFactory: RendererFactory2|null = null;
if (!(this._injector as R3Injector).destroyed) {
rendererFactory = this._injector.get(RendererFactory2);
if (!(this._injector as DestroyableInjector).destroyed) {
rendererFactory = this._injector.get(RendererFactory2, null, {optional: true});
}
let runs = 0;
@ -567,7 +570,6 @@ export class ApplicationRef {
runs++;
afterRenderEffectManager.executeInternalCallbacks();
// If we have a newly dirty view after running internal callbacks, recheck the views again
// before running user-provided callbacks
if ([...this.externalTestViews.keys(), ...this._views].some(
@ -575,8 +577,8 @@ export class ApplicationRef {
continue;
}
// Even if no views require refresh, we need to ensure
// renderFactory begin and end happen to flush animations.
// Flush animations before running afterRender hooks
// This might not have happened if no views were refreshed above
rendererFactory?.begin?.();
rendererFactory?.end?.();
@ -684,7 +686,7 @@ export class ApplicationRef {
ngDevMode && 'This instance of the `ApplicationRef` has already been destroyed.');
}
const injector = this._injector as R3Injector;
const injector = this._injector as DestroyableInjector;
// Check that this injector instance supports destroy operation.
if (injector.destroy && !injector.destroyed) {

View file

@ -11,7 +11,7 @@ export {detectChangesInViewIfRequired as ɵdetectChangesInViewIfRequired, whenSt
export {IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, ImageConfig as ɵImageConfig} from './application/application_tokens';
export {internalCreateApplication as ɵinternalCreateApplication} from './application/create_application';
export {defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers} from './change_detection/change_detection';
export {ChangeDetectionScheduler as ɵChangeDetectionScheduler, NotificationType as ɵNotificationType, ZONELESS_ENABLED as ɵZONELESS_ENABLED} from './change_detection/scheduling/zoneless_scheduling';
export {ChangeDetectionScheduler as ɵChangeDetectionScheduler, ZONELESS_ENABLED as ɵZONELESS_ENABLED} from './change_detection/scheduling/zoneless_scheduling';
export {Console as ɵConsole} from './console';
export {DeferBlockDetails as ɵDeferBlockDetails, getDeferBlocks as ɵgetDeferBlocks} from './defer/discovery';
export {renderDeferBlockState as ɵrenderDeferBlockState, triggerResourceLoading as ɵtriggerResourceLoading} from './defer/instructions';

View file

@ -83,20 +83,20 @@ describe('renderer factory lifecycle', () => {
it('should work with a component', () => {
const fixture = TestBed.createComponent(SomeComponent);
fixture.changeDetectorRef.detectChanges();
fixture.componentRef.changeDetectorRef.detectChanges();
expect(logs).toEqual([
'create', 'create', 'begin', 'end', 'begin', 'some_component create', 'some_component update',
'end'
]);
logs = [];
fixture.changeDetectorRef.detectChanges();
fixture.componentRef.changeDetectorRef.detectChanges();
expect(logs).toEqual(['begin', 'some_component update', 'end']);
});
it('should work with a component which throws', () => {
expect(() => {
const fixture = TestBed.createComponent(SomeComponentWhichThrows);
fixture.changeDetectorRef.detectChanges();
fixture.componentRef.changeDetectorRef.detectChanges();
}).toThrow();
expect(logs).toEqual(['create', 'create', 'begin', 'end', 'begin', 'end']);
});

View file

@ -28,11 +28,12 @@ describe('change detection', () => {
}
}
const fixture = TestBed.createComponent(MyComponent);
const rendererFactory = TestBed.inject(RendererFactory2);
rendererFactory.begin = () => log.push('begin');
rendererFactory.end = () => log.push('end');
fixture.changeDetectorRef.detectChanges();
const fixture = TestBed.createComponent(MyComponent);
fixture.detectChanges();
expect(fixture.nativeElement.innerHTML).toEqual('works');
@ -40,6 +41,7 @@ describe('change detection', () => {
'begin',
'detect changes', // regular change detection cycle
'end',
'detect changes' // check no changes cycle
]);
}));
});

View file

@ -22,7 +22,6 @@ import {
RendererType2,
ɵAnimationRendererType as AnimationRendererType,
ɵChangeDetectionScheduler as ChangeDetectionScheduler,
ɵNotificationType as NotificationType,
ɵRuntimeError as RuntimeError,
} from '@angular/core';
import {ɵRuntimeErrorCode as RuntimeErrorCode} from '@angular/platform-browser';
@ -128,8 +127,6 @@ export class AsyncAnimationRendererFactory implements OnDestroy, RendererFactory
rendererType,
);
dynamicRenderer.use(animationRenderer);
// Applying animations might result in new DOM state and should rerun render hooks
this.scheduler?.notify(NotificationType.AfterRenderHooks);
})
.catch((e) => {
// Permanently use regular renderer when loading fails.

View file

@ -64,7 +64,11 @@ type AnimationBrowserModule = typeof import('@angular/animations/browser');
engine: MockAnimationEngine,
) => {
const animationModule = {
ɵcreateEngine: (_: 'animations' | 'noop', _2: Document): AnimationEngine => engine,
ɵcreateEngine: (
_: 'animations' | 'noop',
_2: Document,
_3: ChangeDetectionScheduler | null,
): AnimationEngine => engine,
ɵAnimationEngine: MockAnimationEngine as any,
ɵAnimationRenderer: AnimationRenderer,
ɵBaseAnimationRenderer: BaseAnimationRenderer,