-
Notifications
You must be signed in to change notification settings - Fork 27.4k
fix(ng-if): make ng-if evaluate things using javascript logic #4005
Conversation
Thanks for the PR!
If you need to make changes to your pull request, you can update the commit with Thanks again for your help! |
@@ -86,7 +86,7 @@ var ngIfDirective = ['$animate', function($animate) { | |||
compile: function (element, attr, transclude) { | |||
return function ($scope, $element, $attr) { | |||
var childElement, childScope; | |||
$scope.$watch($attr.ngIf, function ngIfWatchAction(value) { | |||
$scope.$watch('!!(' + $attr.ngIf + ')', function ngIfWatchAction(value) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would seem to me cleaner to do something like:
$scope.$watch($attr.ngIf, function ngIfWatchAction(value) {
...
if (!!value) {
...
}
...
});
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I guess that if the value changes but it is still true
we don't want to delete the childElement
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, that was the idea
@petebacondarwin It would be better to get this merged for 1.2.0 than 1.2.1 as in this case you'd introduce a breaking change in a patch version which is not the best idea... |
@lgalfaso could you rebase this? It would be good to get this into 1.3 --- And similar to the ngShowHide changes, please included a short summary of how affected users could migrate in the BREAKING CHANGE block |
Yeah thanks =) Were you going to close your other PR then, since this one contains both fixes? (I think it would be better to have kept the ngShowHide changes out of this one, but well...) |
@caitp if you think it would be best to keep these two as different PRs, then that should not be an issue. I put these two together just to be consistent |
Won't watching I'd like to merge it rather soonish since it does change semantics so it's better to prepare people for that as early as possible. |
Actually, shouldn't we just fix |
@mzgol doing |
I know, I just mentioned it because if we had |
Make ngIf, ngShow and ngHide follow javascript `truthy`/`falsy` logic and not the custom toBoolean logic Fixes angular#5414 angular#4277 angular#3969 BREAKING CHANGE: The expressions * `<div ng-hide="[]">X</div>` * `<div ng-hide="'f'">X</div>` * `<div ng-hide="'[]'">X</div>` used to be evaluated to `false` and the elements were hidden. The same effect is present for `ng-show` and the elements are now visible; and with `ng-if` and the elements are now removed If you were previously doing `ng-show="exp"` where `$scope.exp = 'no' // (or 'n' or 'f')`, then instead write `ng-show="exp && exp !== 'no'` (or 'n' or 'f').
Regarding |
@petebacondarwin I'll be getting rid of |
Here are the places where
|
@mzgol - are you dealing with the items I specified above then? |
@petebacondarwin Yes, I'll go through every usage and see what needs to be done to fully replace it. Thanks for your analysis, it'll help. |
Assigning to @mzgol then! |
Thanks @petebacondarwin for looking into this one. @mzgol will you be able to get this done by Monday or Tuesday? If not, @petebacondarwin or someone else will take care of it. |
I'll look into it tomorrow. Michał Gołębiowski |
Great! Thanks
|
Closing in favor of #7960. |
Make ng-if evaluate things using javascript logic
Do not reevaluate everything contained within an ng-if when there
is a change of the value of the ng-if, but the truthy of falsy value
does not change
Fixes #3969
BREAKING CHANGE: The expressions
<div ng-if="[]">X</div>
<div ng-if="'f'">X</div>
<div ng-if="'[]'">X</div>
used to be evaluated to
false