ng-repeat-fast

0.2.21 • Public • Published

ngRepeatFast

Build Status

Demo | Tests

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

Readme

Keywords

Package Sidebar

Install

npm i ng-repeat-fast

Weekly Downloads

2

Version

0.2.21

License

MIT

Last publish

Collaborators

  • andr