-
Notifications
You must be signed in to change notification settings - Fork 27.4k
perf(ngSwitch): Define this directive as terminal #12079
Conversation
Since a switch statement ( and therefore `ngSwitch` ) can really be thought of as simply a combination of if statements, there's no reason that this directive should differ from `ngIf` in how it compiles the element. This should also prevents needless compilation of directives when the ngSwitch condition isn't yet matched.
Is there a way to re-trigger the build? The test that failed has absolutely nothing to do with my changes ( it's an |
If you have the need to make // Warning untested code
myApp.directive('ngSwitchWhen', function() { return {terminal: true}; })
.directive('ngSwitchDefault', function() { return {terminal: true}; }); and within your app, these directives will be terminal. Now, this is too big of a breaking change, so this is not going to fly. Closing |
@lgalfaso How is this situation different than |
@dcherman the content of an |
@lgalfaso So that's 100% correct, and is addressed in my other pull request ( #12078 ). I guess what I don't understand here is why this directive should not be terminal. It seems logical that it would match the behavior of an ngIf where lower priority directives would be compiled once the transclusion happens ( when the case is matched ). As with the other PR, would you be open to consideration for this in a later version of Angular if you feel it'd be breaking? |
If #12078 lands, and we are talking for 1.5, then this makes a lot of sense. |
@lgalfaso So I was just revisiting this, and there is actually no change needed at all. I guess technically that means that |
@dcherman thanks for confirming this |
Since a switch statement ( and therefore
ngSwitch
) can really bethought of as simply a combination of if statements, there's no reason
that this directive should differ from
ngIf
in how it compiles theelement. This should also prevents needless compilation of directives
when the ngSwitch condition isn't yet matched.