Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

feat($compile): backport $doCheck #14656

Closed
wants to merge 1 commit into from
Closed

feat($compile): backport $doCheck #14656

wants to merge 1 commit into from

Conversation

zbjornson
Copy link
Contributor

What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
Feature

What is the current behavior? (You can also link to an open issue here)
If implemented, $doCheck will not be invoked

What is the new behavior (if this is a feature change)?
$doCheck will be invoked on every digest cycle.

Does this PR introduce a breaking change?
No

Please check if the PR fulfills these requirements

Other information:

This mirrors the current actual behavior of Angular 2:

  • During the initial compile, the sequence is $onChanges, $onInit, $doCheck.
  • During subsequent digests, the sequence is $doCheck, $onChanges, $doCheck.
    (See the live peekaboo demo from the docs to see the sequence.)
  • Per my comments here, ngDoCheck in Angular 2 just seems to be a hook into the digest cycle that supplements, but does not replace/override, the default change detector. The Angular 2 docs are incorrect (issue): $onChanges is indeed called, and the code in doCheck does not override the default CD.

/cc @gkalpak

@petebacondarwin
Copy link
Contributor

I think we need to get a better understanding of what DoCheck means in Angular 2 before we can make a decision about this.

@petebacondarwin petebacondarwin added this to the Purgatory milestone May 24, 2016
@zbjornson
Copy link
Contributor Author

Yeah, I'd love to have one of the devs who worked on this part confirm or correct what I've found (@vicb?).

Commented in angular/angular#7307 regarding the effect of ChangeDetectionStrategy. Especially because CDS doesn't exist in Angular 1, this still appears to be a good reflection of Angular 2.

@dcherman
Copy link
Contributor

From what I understand of doCheck in ng2, it's intended to completely replace Change Detection which means you must then implement it yourself within the ngDoCheck callback.

The Angular1 equivalent would pretty much be if $doCheck was implemented, then you don't run any of the watchers on the current scope and allow $doCheck to determine what's done, but that's a much larger change than is being proposed here.

@zbjornson
Copy link
Contributor Author

@dcherman is that based on internal design knowledge? That behavior is what the docs suggest, but they're confirmed to be at least partly incorrect (#7307) and the angular 2 directives that implement ngDoCheck (e.g. ngFor) are built around ngDoCheck just being a hook into the digest cycle (i.e. nothing in angular itself consumes the result of ngDoCheck -- any actions that need to be taken as a result of detected changes need to be taken in ngDoCheck itself). Possibility that ngDoCheck is not finished though...?

@dcherman
Copy link
Contributor

@zbjornson Not at all; that point is just from both tinkering with ng2 / reading the docs and points that I picked up during ngConf earlier this month. It's entirely possible that the description is no longer accurate.

@zbjornson
Copy link
Contributor Author

@petebacondarwin My PR to correct the ng2 ngDoCheck docs was accepted yesterday by someone who seems knowledgeable about the lifecycle hooks. The docs (when released) now describe the actual ng2 behavior, which is what I mirrored in this backport. Does that help with the decision?

@mazzur
Copy link

mazzur commented Jun 20, 2016

@petebacondarwin @zbjornson Is there any progress on this issue? This hook seems to be quite vital in attempts to get rid of $scope in components when using angular 1.5 providing the ability to deep watch object properties supplementing capabilities of the $onChanges hook.

As @zbjornson updated angular 2 docs on doCheck, the suggested implementation seems to correspond to what the hook does in angular 2. Are there any constraints preventing this hook to be introduced?

@@ -300,6 +300,9 @@
* `changesObj` is a hash whose keys are the names of the bound properties that have changed, and the values are an
* object of the form `{ currentValue, previousValue, isFirstChange() }`. Use this hook to trigger updates within a
* component such as cloning the bound value to prevent accidental mutation of the outer value.
* * `$doCheck()` - Called on each digest cycle. Provides an opportunity to detect and act on
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps to make it even more clear?

Called on each turn of the digest loop

@petebacondarwin petebacondarwin modified the milestones: 1.5.x, Purgatory Jun 20, 2016
Backuport ngDoCheck from Angular 2.
@zbjornson
Copy link
Contributor Author

@petebacondarwin do those doc revisions read better now? Thanks for the review.

@petebacondarwin
Copy link
Contributor

petebacondarwin commented Jun 21, 2016

There were a couple of issues with the way this is implemented.
I have fixed this and added a runnable example here: #14811
Please take a look

petebacondarwin pushed a commit that referenced this pull request Jun 22, 2016
Backuport ngDoCheck from Angular 2.

Closes #14656
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants