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

"Self only" $scope.$digest() (ie without digesting child scopes) #15308

Open
poshest opened this issue Oct 21, 2016 · 4 comments
Open

"Self only" $scope.$digest() (ie without digesting child scopes) #15308

poshest opened this issue Oct 21, 2016 · 4 comments

Comments

@poshest
Copy link
Contributor

poshest commented Oct 21, 2016

Feature request for 1.x... Something like

$scope.$digest(/*selfOnly*/true)

which, when optional parameter selfOnly is true, only digests the $scope and not its children. My motivation is explained here.

Here's another use case. In fact using Vahan's approach is even better, since it would solve my use case

$scope.$skipChildWatchers = true;
$scope.$digest();
$scope.$skipChildWatchers = false;

....but also allow for his pauseWatchers directive to be easily implemented, which solves #5301, another issue in which I have great interest.

@gkalpak
Copy link
Member

gkalpak commented Oct 24, 2016

This is indeed similar to #5301. I prefer the idea of detaching/re-attaching a scope (as proposed in #5301), than allowing a scope to control what happens with its child-scopes. Its scope should be in charge of its own fate.

@poshest
Copy link
Contributor Author

poshest commented Oct 24, 2016

@gkalpak unfortuntately detatching/re-attaching doesn't support my use case, where the current scope could be digested without child scopes being digested.

Also @vahan-hartooni's approach is cleaner code-wise - just stop the recursion when the flag is true. There are a ton of methods/functions with /*recursive*/true parameters. IMHO this would be understood intuitively by most devs.

Contrast detach/re-attach requiring saving of scopes temporarily and making sure they execute after re-attach, which I personally think is more hacky and for that reason less likely to be implemented.

Its scope should be in charge of its own fate.

Yes, but .digest() already digests those child scopes, and therefore already "control[s] what happens with its child-scopes"

@gitcoinbot
Copy link

Issue Status: 1. Open 2. Started 3. Submitted 4. Done


This issue now has a funding of 0.02 BNB (9.75 USD @ $487.37/BNB) attached to it.

@gitcoinbot
Copy link

Issue Status: 1. Open 2. Started 3. Submitted 4. Done


The funding of 0.02 BNB (9.75 USD @ $487.37/BNB) attached to this issue has been cancelled by the bounty submitter

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

No branches or pull requests

3 participants