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

refactor($compile): remove unnecessary and invalid $destroyed listener #12528

Closed

Conversation

jbedard
Copy link
Collaborator

@jbedard jbedard commented Aug 9, 2015

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.

for (var i = 0, ii = onNewScopeDestroyed.length; i < ii; ++i) {
onNewScopeDestroyed[i]();
}
} : noop;
if (newScope && destroyBindings !== noop) {
newScope.$on('$destroy', destroyBindings);
Copy link
Collaborator Author

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...

@lgalfaso
Copy link
Contributor

lgalfaso commented Aug 9, 2015

@petebacondarwin WDYT?

@Narretz Narretz added this to the Backlog milestone Aug 9, 2015
initializeDirectiveBindings(scope, attrs, isolateScope,
isolateScope.$$isolateBindings,
newIsolateScopeDirective, isolateScope);
var parentWatchDestoryer = initializeDirectiveBindings(scope, attrs, isolateScope,
Copy link
Contributor

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)

@Narretz
Copy link
Contributor

Narretz commented Sep 24, 2015

I think the commit message should be more explicit: why exactly do we not need to listen to $destroy in this case?

@petebacondarwin petebacondarwin self-assigned this Sep 24, 2015
@jbedard jbedard force-pushed the compile-bindings-destroy-listener branch from 9f210a5 to cf6087b Compare September 25, 2015 10:17
@jbedard
Copy link
Collaborator Author

jbedard commented Sep 25, 2015

Fixed the var name typo and rebased. I'll have to look into it again to remember why the listener isn't actually needed...

petebacondarwin added a commit to petebacondarwin/angular.js that referenced this pull request Oct 7, 2015
petebacondarwin added a commit to petebacondarwin/angular.js that referenced this pull request Oct 7, 2015
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
petebacondarwin added a commit to petebacondarwin/angular.js that referenced this pull request Oct 7, 2015
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
petebacondarwin pushed a commit that referenced this pull request Oct 7, 2015
…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
petebacondarwin added a commit that referenced this pull request Oct 7, 2015
This check means that we don't have to keep checking whether the collection
has been created when adding a new watcher

Closes #12528
petebacondarwin added a commit that referenced this pull request Oct 7, 2015
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
@petebacondarwin
Copy link
Contributor

I tweaked, embellished and merged. Thanks @jbedard - do you just spend your evenings scouring the compiler??

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