Simpla-collection needs some kind of lazy-rendering / infinite-list support for large collections. This is especially important for large collections because not only is rendering large amounts of DOM at once a clientside perf hit, but every single item will then fetch all of its data at once, causing a network bottleneck as well.
We could either use a virtual list like iron-list as an optional renderer, or do basic deferred rendering, ie: 'stamp next x items when bottom of element in viewport', with our current rendering pipeline.
Simpla-collection needs some kind of lazy-rendering / infinite-list support for large collections. This is especially important for large collections because not only is rendering large amounts of DOM at once a clientside perf hit, but every single item will then fetch all of its data at once, causing a network bottleneck as well.
We could either use a virtual list like
iron-listas an optional renderer, or do basic deferred rendering, ie: 'stamp next x items when bottom of element in viewport', with our current rendering pipeline.