-
Notifications
You must be signed in to change notification settings - Fork 27.4k
refactor($compile): remove unnecessary and invalid $destroyed listener #12528
Conversation
for (var i = 0, ii = onNewScopeDestroyed.length; i < ii; ++i) { | ||
onNewScopeDestroyed[i](); | ||
} | ||
} : noop; | ||
if (newScope && destroyBindings !== noop) { | ||
newScope.$on('$destroy', destroyBindings); |
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.
I moved this out to the 1 of 3 initializeDirectiveBindings
invocations that actually need it. I figured now that initializeDirectiveBindings
binds to any destination
and not specifically a scope this logic no longer belonged here...
@petebacondarwin WDYT? |
initializeDirectiveBindings(scope, attrs, isolateScope, | ||
isolateScope.$$isolateBindings, | ||
newIsolateScopeDirective, isolateScope); | ||
var parentWatchDestoryer = initializeDirectiveBindings(scope, attrs, isolateScope, |
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.
-> Destroyer (also on line 1984 and 1985)
I think the commit message should be more explicit: why exactly do we not need to listen to $destroy in this case? |
9f210a5
to
cf6087b
Compare
Fixed the var name typo and rebased. I'll have to look into it again to remember why the listener isn't actually needed... |
This check means that we don't have to keep checking whether the collection has been created when adding a new watcher Closes angular#12528
Previously we assigned `noop` if there was no function but there is no performance advantage in doing this since the check would have to happen either at assignment time or at call time. Removing this use of `noop` makes the code clearer, IMO :-) Closes angular#12528
…lizeDirectiveBindings Since only one of three invocations of `initializeDirectiveBindings` actually adds a `$destroy` handler to the scope (the others just manually call unwatch as needed), we can move that code out of this method. This also has the benefit of simplifying what parameters need to be passed through to the linking functions Closes #12528
This check means that we don't have to keep checking whether the collection has been created when adding a new watcher Closes #12528
Previously we assigned `noop` if there was no function but there is no performance advantage in doing this since the check would have to happen either at assignment time or at call time. Removing this use of `noop` makes the code clearer, IMO :-) Closes #12528
I tweaked, embellished and merged. Thanks @jbedard - do you just spend your evenings scouring the compiler?? |
I noticed when bindToController is used the scope
$destroyed
event is listened for, but it should be$destroy
. But looking further into it I don't think we need to listen for any destroy event in this case so this PR just deletes it.