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

compile: when terminal=true mutation of tElement during compile breaks interpolation of following TextNode #9198

Open
g00fy- opened this issue Sep 21, 2014 · 3 comments · May be fixed by #9202

Comments

@g00fy-
Copy link

g00fy- commented Sep 21, 2014

Example
http://plnkr.co/edit/SgQ98ET9j7lUHTliEVoA?p=preview

/*  
  scenario:
  using tElement.detach() in compile of a directive with terminal=true: 

  result:
  compile does not interpolate first (only) following TextNode of the element


  directive:
*/
  directive('terminalDirective', function(){
    return {
      terminal:true,
      compile: function(tElement){
        tElement.detach();
        // some other logic
      }
    }
  })
<h5>Disables interpolation of following adjacent TextNodes</h5>
<ul>
  <li ng-repeat="i in [1]">
    <terminal-directive>Element:{{ i }}</terminal-directive>
    TextNode: {{ i }}
  </li>
</ul>

<h5>Preceding textNodes are interpolated correclty</h5>
<ul>
  <li ng-repeat="i in [1]">
    TextNode:{{ i }}
    <terminal-directive>Element:{{ i }}</terminal-directive>
  </li>
</ul>

<h5>Subsequent Elements are interpolated correclty, but not textNodes</h5>
<ul>
  <li ng-repeat="i in [1]">
    TextNode:{{ i }}
    <terminal-directive>Element:{{ i }}</terminal-directive>
    TextNode:{{ i }}
    <div>Element:{{ i }}</div>
    TextNode:{{ i }}
    <div>Element:{{ i }}</div>
    TextNode:{{ i }}
  </li>
</ul>

Possible cause: node index mismatch.

In some places compile creates a copy of childNodes so any kind of mutation does not cause the index to be out of sync.

https://github.com/angular/angular.js/blob/master/src/ng/compile.js#L1116

@g00fy- g00fy- changed the title bug: mutating tElement in compile of a directive with terminal=true breaks interpolation of subsequent textNodes compile: when terminal=true mutation of tElement during compile breaks interpolation of following TextNode Sep 21, 2014
@g00fy-
Copy link
Author

g00fy- commented Sep 21, 2014

temporary workaround for this bug:

tElement = tElement.replaceWith(document.createTextNode(''));

lgalfaso added a commit to lgalfaso/angular.js that referenced this issue Sep 21, 2014
Delect when a directive `compile` function removes `tElement` and keep
on with the compilation from the following node

Closes angular#9198
lgalfaso added a commit to lgalfaso/angular.js that referenced this issue Sep 21, 2014
Delect when a directive `compile` function removes `tElement` and keep
on with the compilation from the following node

Closes angular#9198
lgalfaso added a commit to lgalfaso/angular.js that referenced this issue Sep 22, 2014
Delect when a directive `compile` function removes `tElement` and keep
on with the compilation from the following node

Closes angular#9198
@g00fy-
Copy link
Author

g00fy- commented Sep 22, 2014

@lgalfaso can ng339 be used instead of ngCanary ?

@lgalfaso
Copy link
Contributor

@g00fy- about using ng339 are you saying to use data to store this information?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants