JavaScript, by default, uses mutable data structures that you can reference from multiple different components. Angular runs change detection over your entire component tree to make sure that the most up-to-date state of your data structures is reflected in the DOM.
Change detection is sufficiently fast for most applications. However, when an application has an especially large component tree, running change detection across the whole application can cause performance issues. You can address this by configuring change detection to only run on a subset of the component tree.
If you are confident that a part of the application is not affected by a state change, you can use OnPush to skip change detection in an entire component subtree.
OnPush
OnPush change detection instructs Angular to run change detection for a component subtree only when:
==
@HostListener
) in the subtree's root component or any of its children whether they are using OnPush change detection or not.You can set the change detection strategy of a component to OnPush
in the @Component
decorator:
import { ChangeDetectionStrategy, Component } from '@angular/core'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, }) export class MyComponent {}
This section examines several common change detection scenarios to illustrate Angular's behavior.
If Angular handles an event within a component without OnPush
strategy, the framework executes change detection on the entire component tree. Angular will skip descendant component subtrees with roots using OnPush
, which have not received new inputs.
As an example, if we set the change detection strategy of MainComponent
to OnPush
and the user interacts with a component outside the subtree with root MainComponent
, Angular will check all the green components from the diagram below (AppComponent
, HeaderComponent
, SearchComponent
, ButtonComponent
) unless MainComponent
receives new inputs:
If Angular handles an event within a component with OnPush strategy, the framework will execute change detection within the entire component tree. Angular will ignore component subtrees with roots using OnPush, which have not received new inputs and are outside the component which handled the event.
As an example, if Angular handles an event within MainComponent
, the framework will run change detection in the entire component tree. Angular will ignore the subtree with root LoginComponent
because it has OnPush
and the event happened outside of its scope.
If Angular handles an event in a component with OnPush, the framework will execute change detection in the entire component tree, including the component’s ancestors.
As an example, in the diagram below, Angular handles an event in LoginComponent
which uses OnPush. Angular will invoke change detection in the entire component subtree including MainComponent
(LoginComponent
’s parent), even though MainComponent
has OnPush
as well. Angular checks MainComponent
as well because LoginComponent
is part of its view.
Angular will run change detection within a child component with OnPush
when setting an input property as result of a template binding.
For example, in the diagram below, AppComponent
passes a new input to MainComponent
, which has OnPush
. Angular will run change detection in MainComponent
but will not run change detection in LoginComponent
, which also has OnPush
, unless it receives new inputs as well.
@ViewChild
or @ContentChild
to get a reference to a component in TypeScript and manually modify an @Input
property, Angular will not automatically run change detection for OnPush components. If you need Angular to run change detection, you can inject ChangeDetectorRef
in your component and call changeDetectorRef.markForCheck()
to tell Angular to schedule a change detection.
© 2010–2023 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://angular.io/guide/change-detection-skipping-subtrees