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

Commit 9b1aff9

Browse files
committed
feat(scope): broadcast $destroy event on scope destruction
perf testing shows that in chrome this change adds 5-15% overhead when destroying 10k nested scopes where each scope has a $destroy listener
1 parent 252d454 commit 9b1aff9

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/service/scope.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ function $RootScopeProvider(){
136136
this.$$phase = this.$parent = this.$$watchers =
137137
this.$$nextSibling = this.$$prevSibling =
138138
this.$$childHead = this.$$childTail = null;
139-
this.$destructor = noop;
140139
this['this'] = this.$root = this;
141140
this.$$asyncQueue = [];
142141
this.$$listeners = {};
@@ -458,6 +457,8 @@ function $RootScopeProvider(){
458457
if (this.$root == this) return; // we can't remove the root node;
459458
var parent = this.$parent;
460459

460+
this.$broadcast('$destroy');
461+
461462
if (parent.$$childHead == this) parent.$$childHead = this.$$nextSibling;
462463
if (parent.$$childTail == this) parent.$$childTail = this.$$prevSibling;
463464
if (this.$$prevSibling) this.$$prevSibling.$$nextSibling = this.$$nextSibling;

test/service/scopeSpec.js

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
describe('Scope', function() {
44

5+
beforeEach(module(provideLog));
6+
7+
58
describe('$root', function() {
69
it('should point to itself', inject(function($rootScope) {
710
expect($rootScope.$root).toEqual($rootScope);
@@ -393,6 +396,15 @@ describe('Scope', function() {
393396
$rootScope.$digest();
394397
expect(log).toEqual('12');
395398
}));
399+
400+
401+
it('should broadcast the $destroy event', inject(function($rootScope, log) {
402+
first.$on('$destroy', log.fn('first'));
403+
first.$new().$on('$destroy', log.fn('first-child'));
404+
405+
first.$destroy();
406+
expect(log).toEqual('first; first-child');
407+
}));
396408
});
397409

398410

0 commit comments

Comments
 (0)