-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Transclusion bug(?): detached nodes get linked #7270
Comments
Actually, changing angular's compile like this in might enable a solution: --- angular/angular.js Sun Apr 27 16:32:20 2014
+++ angular/angular.js Sun Apr 27 16:32:45 2014
@@ -5887,8 +5887,13 @@
}
}
- if (cloneConnectFn) cloneConnectFn($linkNode, scope);
- if (compositeLinkFn) compositeLinkFn(scope, $linkNode, $linkNode);
+ var overrides = {};
+ if (cloneConnectFn) {
+ angular.extend(overrides, cloneConnectFn($linkNode, scope));
+ }
+ if (compositeLinkFn && !overrides.alreadyLinked) {
+ compositeLinkFn(scope, $linkNode, $linkNode);
+ }
return $linkNode;
};
} This would enable the user to compile/link the way they want to. $transclude(function(tcOrigin, tcParentScope) {
/*
...
*/
tcTarget.empty().append($compile(candidates)(tcScope));
return {
alreadyLinked: true
};
}); |
@lgalfaso For the sake of argument, let's suppose this is not a bug. Can you tell me why linking up detached nodes is a good idea? And even if you come up with a corner case, do you think that the users should be barred from controlling what gets linked up even when they want to have a finer level of control? |
@Wizek I am not saying that linking a detached node is a good/bad idea, but the current contract is that the inner function will take care of the node always. How this is done, it is another problem. Now, I do see some value in the end goal, but we have to be sure that this does not cause any regressions on the way existing users are already using and abusing this contract |
http://jsbin.com/yoqowaha/6/edit
What happens
Both elements get linked resulting in 1 and 2 both being output to the console.
Expected behavior
Only appended nodes should get linked therefore the console should contain only 1.
Background
Further details on my motivation (to prevent an XY problem) and how I stumbled into this issue with @caitp on IRC:
The text was updated successfully, but these errors were encountered: