Skip to content

Commit be34228

Browse files
authoredOct 6, 2024··
fix(multiple): remove final references to ComponentFactoryResolver (#29832)
Removes the final places where we were referring to `ComponentFactoryResolver` in our code.
1 parent 984723e commit be34228

File tree

10 files changed

+25
-49
lines changed

10 files changed

+25
-49
lines changed
 

‎src/cdk/dialog/dialog-config.ts

+7-9
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,7 @@
66
* found in the LICENSE file at https://angular.dev/license
77
*/
88

9-
import {
10-
ViewContainerRef,
11-
ComponentFactoryResolver,
12-
Injector,
13-
StaticProvider,
14-
Type,
15-
} from '@angular/core';
9+
import {ViewContainerRef, Injector, StaticProvider, Type} from '@angular/core';
1610
import {Direction} from '@angular/cdk/bidi';
1711
import {PositionStrategy, ScrollStrategy} from '@angular/cdk/overlay';
1812
import {BasePortalOutlet} from '@angular/cdk/portal';
@@ -140,8 +134,12 @@ export class DialogConfig<D = unknown, R = unknown, C extends BasePortalOutlet =
140134
*/
141135
closeOnOverlayDetachments?: boolean = true;
142136

143-
/** Alternate `ComponentFactoryResolver` to use when resolving the associated component. */
144-
componentFactoryResolver?: ComponentFactoryResolver;
137+
/**
138+
* Alternate `ComponentFactoryResolver` to use when resolving the associated component.
139+
* @deprecated No longer used. Will be removed.
140+
* @breaking-change 20.0.0
141+
*/
142+
componentFactoryResolver?: unknown;
145143

146144
/**
147145
* Providers that will be exposed to the contents of the dialog. Can also

‎src/cdk/dialog/dialog.ts

+1-7
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ export class Dialog implements OnDestroy {
240240
containerType,
241241
config.viewContainerRef,
242242
Injector.create({parent: userInjector || this._injector, providers}),
243-
config.componentFactoryResolver,
244243
);
245244
const containerRef = overlay.attach(containerPortal);
246245

@@ -280,12 +279,7 @@ export class Dialog implements OnDestroy {
280279
} else {
281280
const injector = this._createInjector(config, dialogRef, dialogContainer, this._injector);
282281
const contentRef = dialogContainer.attachComponentPortal<C>(
283-
new ComponentPortal(
284-
componentOrTemplateRef,
285-
config.viewContainerRef,
286-
injector,
287-
config.componentFactoryResolver,
288-
),
282+
new ComponentPortal(componentOrTemplateRef, config.viewContainerRef, injector),
289283
);
290284
(dialogRef as {componentRef: ComponentRef<C>}).componentRef = contentRef;
291285
(dialogRef as {componentInstance: C}).componentInstance = contentRef.instance;

‎src/cdk/overlay/overlay.ts

+1-12
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {DomPortalOutlet} from '@angular/cdk/portal';
1111
import {DOCUMENT, Location} from '@angular/common';
1212
import {
1313
ApplicationRef,
14-
ComponentFactoryResolver,
1514
Injectable,
1615
Injector,
1716
NgZone,
@@ -31,9 +30,6 @@ import {ScrollStrategyOptions} from './scroll/index';
3130
/** Next overlay unique ID. */
3231
let nextUniqueId = 0;
3332

34-
// Note that Overlay is *not* scoped to the app root because of the ComponentFactoryResolver
35-
// which needs to be different depending on where OverlayModule is imported.
36-
3733
/**
3834
* Service to create Overlays. Overlays are dynamically added pieces of floating UI, meant to be
3935
* used as a low-level building block for other components. Dialogs, tooltips, menus,
@@ -46,7 +42,6 @@ let nextUniqueId = 0;
4642
export class Overlay {
4743
scrollStrategies = inject(ScrollStrategyOptions);
4844
private _overlayContainer = inject(OverlayContainer);
49-
private _componentFactoryResolver = inject(ComponentFactoryResolver);
5045
private _positionBuilder = inject(OverlayPositionBuilder);
5146
private _keyboardDispatcher = inject(OverlayKeyboardDispatcher);
5247
private _injector = inject(Injector);
@@ -141,12 +136,6 @@ export class Overlay {
141136
this._appRef = this._injector.get<ApplicationRef>(ApplicationRef);
142137
}
143138

144-
return new DomPortalOutlet(
145-
pane,
146-
this._componentFactoryResolver,
147-
this._appRef,
148-
this._injector,
149-
this._document,
150-
);
139+
return new DomPortalOutlet(pane, null, this._appRef, this._injector, this._document);
151140
}
152141
}

‎src/cdk/portal/dom-portal-outlet.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class DomPortalOutlet extends BasePortalOutlet {
2525

2626
/**
2727
* @param outletElement Element into which the content is projected.
28-
* @param _componentFactoryResolver Used to resolve the component factory.
28+
* @param _unusedComponentFactoryResolver Used to resolve the component factory.
2929
* Only required when attaching component portals.
3030
* @param _appRef Reference to the application. Only used in component portals when there
3131
* is no `ViewContainerRef` available.
@@ -41,7 +41,7 @@ export class DomPortalOutlet extends BasePortalOutlet {
4141
* @deprecated No longer in use. To be removed.
4242
* @breaking-change 18.0.0
4343
*/
44-
_componentFactoryResolver?: any,
44+
_unusedComponentFactoryResolver?: any,
4545
private _appRef?: ApplicationRef,
4646
private _defaultInjector?: Injector,
4747

‎src/material/dialog/dialog-config.ts

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

9-
import {ViewContainerRef, ComponentFactoryResolver, Injector} from '@angular/core';
9+
import {ViewContainerRef, Injector} from '@angular/core';
1010
import {Direction} from '@angular/cdk/bidi';
1111
import {ScrollStrategy} from '@angular/cdk/overlay';
1212
import {_defaultParams} from './dialog-animations';
@@ -133,8 +133,12 @@ export class MatDialogConfig<D = any> {
133133
*/
134134
closeOnNavigation?: boolean = true;
135135

136-
/** Alternate `ComponentFactoryResolver` to use when resolving the associated component. */
137-
componentFactoryResolver?: ComponentFactoryResolver;
136+
/**
137+
* Alternate `ComponentFactoryResolver` to use when resolving the associated component.
138+
* @deprecated No longer used. Will be removed.
139+
* @breaking-change 20.0.0
140+
*/
141+
componentFactoryResolver?: unknown;
138142

139143
/**
140144
* Duration of the enter animation in ms.

‎src/material/menu/menu-content.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {DOCUMENT} from '@angular/common';
1111
import {
1212
ApplicationRef,
1313
ChangeDetectorRef,
14-
ComponentFactoryResolver,
1514
Directive,
1615
InjectionToken,
1716
Injector,
@@ -37,7 +36,6 @@ export const MAT_MENU_CONTENT = new InjectionToken<MatMenuContent>('MatMenuConte
3736
})
3837
export class MatMenuContent implements OnDestroy {
3938
private _template = inject<TemplateRef<any>>(TemplateRef);
40-
private _componentFactoryResolver = inject(ComponentFactoryResolver);
4139
private _appRef = inject(ApplicationRef);
4240
private _injector = inject(Injector);
4341
private _viewContainerRef = inject(ViewContainerRef);
@@ -68,7 +66,7 @@ export class MatMenuContent implements OnDestroy {
6866
if (!this._outlet) {
6967
this._outlet = new DomPortalOutlet(
7068
this._document.createElement('div'),
71-
this._componentFactoryResolver,
69+
null,
7270
this._appRef,
7371
this._injector,
7472
);

‎src/material/tabs/tab-body.ts

+1-8
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ import {AnimationEvent} from '@angular/animations';
1010
import {Direction, Directionality} from '@angular/cdk/bidi';
1111
import {CdkPortalOutlet, TemplatePortal} from '@angular/cdk/portal';
1212
import {CdkScrollable} from '@angular/cdk/scrolling';
13-
import {DOCUMENT} from '@angular/common';
1413
import {
1514
ChangeDetectionStrategy,
1615
ChangeDetectorRef,
1716
Component,
18-
ComponentFactoryResolver,
1917
Directive,
2018
ElementRef,
2119
EventEmitter,
@@ -24,7 +22,6 @@ import {
2422
OnInit,
2523
Output,
2624
ViewChild,
27-
ViewContainerRef,
2825
ViewEncapsulation,
2926
inject,
3027
} from '@angular/core';
@@ -51,11 +48,7 @@ export class MatTabBodyPortal extends CdkPortalOutlet implements OnInit, OnDestr
5148
constructor(...args: unknown[]);
5249

5350
constructor() {
54-
const componentFactoryResolver = inject(ComponentFactoryResolver);
55-
const viewContainerRef = inject(ViewContainerRef);
56-
const _document = inject(DOCUMENT);
57-
58-
super(componentFactoryResolver, viewContainerRef, _document);
51+
super();
5952
}
6053

6154
/** Set initial visibility or set up subscription for changing visibility. */

‎tools/public_api_guard/cdk/dialog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import { BasePortalOutlet } from '@angular/cdk/portal';
88
import { CdkPortalOutlet } from '@angular/cdk/portal';
99
import { ChangeDetectorRef } from '@angular/core';
10-
import { ComponentFactoryResolver } from '@angular/core';
1110
import { ComponentPortal } from '@angular/cdk/portal';
1211
import { ComponentRef } from '@angular/core';
1312
import { ComponentType } from '@angular/cdk/overlay';
@@ -134,7 +133,8 @@ export class DialogConfig<D = unknown, R = unknown, C extends BasePortalOutlet =
134133
closeOnDestroy?: boolean;
135134
closeOnNavigation?: boolean;
136135
closeOnOverlayDetachments?: boolean;
137-
componentFactoryResolver?: ComponentFactoryResolver;
136+
// @deprecated
137+
componentFactoryResolver?: unknown;
138138
container?: Type<C> | {
139139
type: Type<C>;
140140
providers: (config: DialogConfig<D, R, C>) => StaticProvider[];

‎tools/public_api_guard/cdk/portal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export class DomPortalHost extends DomPortalOutlet {
106106
export class DomPortalOutlet extends BasePortalOutlet {
107107
constructor(
108108
outletElement: Element,
109-
_componentFactoryResolver?: any, _appRef?: ApplicationRef | undefined, _defaultInjector?: Injector | undefined,
109+
_unusedComponentFactoryResolver?: any, _appRef?: ApplicationRef | undefined, _defaultInjector?: Injector | undefined,
110110
_document?: any);
111111
attachComponentPortal<T>(portal: ComponentPortal<T>): ComponentRef<T>;
112112
// @deprecated

‎tools/public_api_guard/material/dialog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import { AnimationTriggerMetadata } from '@angular/animations';
88
import { CdkDialogContainer } from '@angular/cdk/dialog';
9-
import { ComponentFactoryResolver } from '@angular/core';
109
import { ComponentPortal } from '@angular/cdk/portal';
1110
import { ComponentRef } from '@angular/core';
1211
import { ComponentType } from '@angular/cdk/overlay';
@@ -151,7 +150,8 @@ export class MatDialogConfig<D = any> {
151150
autoFocus?: AutoFocusTarget | string | boolean;
152151
backdropClass?: string | string[];
153152
closeOnNavigation?: boolean;
154-
componentFactoryResolver?: ComponentFactoryResolver;
153+
// @deprecated
154+
componentFactoryResolver?: unknown;
155155
data?: D | null;
156156
delayFocusTrap?: boolean;
157157
direction?: Direction;

0 commit comments

Comments
 (0)
Please sign in to comment.