2015-05-20 17:19:46 -07:00
|
|
|
import {Directive} from 'angular2/annotations';
|
|
|
|
import {ViewContainerRef, ViewRef, ProtoViewRef} from 'angular2/core';
|
2015-02-05 13:08:05 -08:00
|
|
|
import {isPresent, isBlank} from 'angular2/src/facade/lang';
|
2014-12-05 17:44:00 -08:00
|
|
|
|
2015-03-31 22:47:11 +00:00
|
|
|
/**
|
2015-05-26 21:53:59 -07:00
|
|
|
* The `NgFor` directive instantiates a template once per item from an iterable. The context for
|
|
|
|
* each instantiated template inherits from the outer context with the given loop variable set
|
|
|
|
* to the current item from the iterable.
|
2015-04-06 11:47:38 +02:00
|
|
|
*
|
|
|
|
* It is possible to alias the `index` to a local variable that will be set to the current loop
|
|
|
|
* iteration in the template context.
|
|
|
|
*
|
2015-05-26 21:53:59 -07:00
|
|
|
* When the contents of the iterator changes, `NgFor` makes the corresponding changes to the DOM:
|
2015-04-06 11:47:38 +02:00
|
|
|
*
|
|
|
|
* * When an item is added, a new instance of the template is added to the DOM.
|
|
|
|
* * When an item is removed, its template instance is removed from the DOM.
|
|
|
|
* * When items are reordered, their respective templates are reordered in the DOM.
|
|
|
|
*
|
|
|
|
* # Example
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* <ul>
|
2015-05-11 17:04:55 -07:00
|
|
|
* <li *ng-for="#error of errors; #i = index">
|
2015-04-06 11:47:38 +02:00
|
|
|
* Error {{i}} of {{errors.length}}: {{error.message}}
|
|
|
|
* </li>
|
|
|
|
* </ul>
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* # Syntax
|
|
|
|
*
|
2015-05-11 17:04:55 -07:00
|
|
|
* - `<li *ng-for="#item of items; #i = index">...</li>`
|
2015-05-16 08:43:07 +02:00
|
|
|
* - `<li template="ng-for #item of items; #i = index">...</li>`
|
|
|
|
* - `<template [ng-for] #item [ng-for-of]="items" #i="index"><li>...</li></template>`
|
2015-04-06 11:47:38 +02:00
|
|
|
*
|
2015-04-10 12:45:02 +02:00
|
|
|
* @exportedAs angular2/directives
|
2015-03-31 22:47:11 +00:00
|
|
|
*/
|
2015-05-20 17:19:46 -07:00
|
|
|
@Directive(
|
2015-05-26 15:54:10 +02:00
|
|
|
{selector: '[ng-for][ng-for-of]', properties: ['iterableChanges: ngForOf | iterableDiff']})
|
2015-05-20 17:19:46 -07:00
|
|
|
export class NgFor {
|
2015-04-27 09:26:55 -07:00
|
|
|
viewContainer: ViewContainerRef;
|
2015-04-29 15:07:55 -07:00
|
|
|
protoViewRef: ProtoViewRef;
|
2015-05-20 17:19:46 -07:00
|
|
|
constructor(viewContainer: ViewContainerRef, protoViewRef: ProtoViewRef) {
|
2015-02-12 11:54:22 +01:00
|
|
|
this.viewContainer = viewContainer;
|
2015-04-29 15:07:55 -07:00
|
|
|
this.protoViewRef = protoViewRef;
|
2014-12-05 17:44:00 -08:00
|
|
|
}
|
2015-02-12 14:56:41 -08:00
|
|
|
|
|
|
|
set iterableChanges(changes) {
|
|
|
|
if (isBlank(changes)) {
|
2015-02-12 11:54:22 +01:00
|
|
|
this.viewContainer.clear();
|
2014-12-05 17:44:00 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(rado): check if change detection can produce a change record that is
|
|
|
|
// easier to consume than current.
|
|
|
|
var recordViewTuples = [];
|
2015-06-17 11:17:21 -07:00
|
|
|
changes.forEachRemovedItem((removedRecord) =>
|
|
|
|
recordViewTuples.push(new RecordViewTuple(removedRecord, null)));
|
2014-12-05 17:44:00 -08:00
|
|
|
|
2015-06-17 11:17:21 -07:00
|
|
|
changes.forEachMovedItem((movedRecord) =>
|
|
|
|
recordViewTuples.push(new RecordViewTuple(movedRecord, null)));
|
2014-12-05 17:44:00 -08:00
|
|
|
|
2015-05-11 17:04:55 -07:00
|
|
|
var insertTuples = NgFor.bulkRemove(recordViewTuples, this.viewContainer);
|
2014-12-05 17:44:00 -08:00
|
|
|
|
2015-06-17 11:17:21 -07:00
|
|
|
changes.forEachAddedItem((addedRecord) =>
|
|
|
|
insertTuples.push(new RecordViewTuple(addedRecord, null)));
|
2014-12-05 17:44:00 -08:00
|
|
|
|
2015-05-11 17:04:55 -07:00
|
|
|
NgFor.bulkInsert(insertTuples, this.viewContainer, this.protoViewRef);
|
2014-12-05 17:44:00 -08:00
|
|
|
|
|
|
|
for (var i = 0; i < insertTuples.length; i++) {
|
|
|
|
this.perViewChange(insertTuples[i].view, insertTuples[i].record);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
perViewChange(view, record) {
|
2015-01-27 22:34:25 -08:00
|
|
|
view.setLocal('\$implicit', record.item);
|
2015-01-28 00:42:08 +01:00
|
|
|
view.setLocal('index', record.currentIndex);
|
2014-12-05 17:44:00 -08:00
|
|
|
}
|
|
|
|
|
2015-02-12 11:54:22 +01:00
|
|
|
static bulkRemove(tuples, viewContainer) {
|
2014-12-05 17:44:00 -08:00
|
|
|
tuples.sort((a, b) => a.record.previousIndex - b.record.previousIndex);
|
|
|
|
var movedTuples = [];
|
|
|
|
for (var i = tuples.length - 1; i >= 0; i--) {
|
|
|
|
var tuple = tuples[i];
|
2015-01-15 13:03:50 -08:00
|
|
|
// separate moved views from removed views.
|
2014-12-05 17:44:00 -08:00
|
|
|
if (isPresent(tuple.record.currentIndex)) {
|
2015-02-12 11:54:22 +01:00
|
|
|
tuple.view = viewContainer.detach(tuple.record.previousIndex);
|
2015-06-17 11:17:21 -07:00
|
|
|
movedTuples.push(tuple);
|
2015-01-15 13:03:50 -08:00
|
|
|
} else {
|
2015-02-12 11:54:22 +01:00
|
|
|
viewContainer.remove(tuple.record.previousIndex);
|
2014-12-05 17:44:00 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return movedTuples;
|
|
|
|
}
|
|
|
|
|
2015-04-29 15:07:55 -07:00
|
|
|
static bulkInsert(tuples, viewContainer, protoViewRef) {
|
2014-12-05 17:44:00 -08:00
|
|
|
tuples.sort((a, b) => a.record.currentIndex - b.record.currentIndex);
|
|
|
|
for (var i = 0; i < tuples.length; i++) {
|
|
|
|
var tuple = tuples[i];
|
|
|
|
if (isPresent(tuple.view)) {
|
2015-02-12 11:54:22 +01:00
|
|
|
viewContainer.insert(tuple.view, tuple.record.currentIndex);
|
2014-12-05 17:44:00 -08:00
|
|
|
} else {
|
2015-04-29 15:07:55 -07:00
|
|
|
tuple.view = viewContainer.create(protoViewRef, tuple.record.currentIndex);
|
2014-12-05 17:44:00 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return tuples;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class RecordViewTuple {
|
2015-04-28 11:20:01 -07:00
|
|
|
view: ViewRef;
|
2014-12-05 17:44:00 -08:00
|
|
|
record: any;
|
|
|
|
constructor(record, view) {
|
|
|
|
this.record = record;
|
|
|
|
this.view = view;
|
|
|
|
}
|
|
|
|
}
|