ng-repeat-fast
v0.2.21
Published
Faster ng-repeat realization that caches DOM nodes.
Downloads
3
Readme
ngRepeatFast
Incomplete but faster ng-repeat
realization.
Never removes DOM nodes. It adds ng-hide
class on corresponding node when item was
removed instead.
- Supports
track by
. - Supports
$first
,$last
,$middle
,$index
,$even
and$odd
. - Supports arrays of objects only. So
- no arrays of primitive values.
- no objects as model.
- Does not create comment nodes.
- Does not support ng-repeat-start & ng-repeat-end.
- Does not support ng-include on repeating element.
- Workaround: use nested element
<div ng-include='...'></div>
.
- Workaround: use nested element
- Animations. - planned.
Basic Usage
<div class="list-item" ng-repeat-fast="item in list | filter: search">
{{ item.value }}
</div>
Render just once
one-time binding
<div class="list-item" ng-repeat-fast="item in ::list">
{{ ::item.value }}
</div>
With ng-include
<div class="list-item" ng-repeat-fast="item in list | filter: search">
<div ng-include="'item-template.html'"></div>
</div>
License
MIT