2015-02-12 14:56:41 -08:00
|
|
|
import {Viewport} from 'angular2/src/core/annotations/annotations';
|
2015-02-12 11:54:22 +01:00
|
|
|
import {ViewContainer} from 'angular2/src/core/compiler/view_container';
|
2015-02-05 13:08:05 -08:00
|
|
|
import {View} from 'angular2/src/core/compiler/view';
|
|
|
|
import {isPresent, isBlank} from 'angular2/src/facade/lang';
|
|
|
|
import {ListWrapper} from 'angular2/src/facade/collection';
|
2014-12-05 17:44:00 -08:00
|
|
|
|
2015-02-12 11:54:22 +01:00
|
|
|
@Viewport({
|
2015-03-13 16:22:01 -07:00
|
|
|
selector: '[for][of]',
|
2014-12-05 17:44:00 -08:00
|
|
|
bind: {
|
2015-03-13 16:22:01 -07:00
|
|
|
'iterableChanges': 'of | iterableDiff'
|
2014-12-05 17:44:00 -08:00
|
|
|
}
|
|
|
|
})
|
2015-03-13 16:22:01 -07:00
|
|
|
export class For {
|
2015-02-12 11:54:22 +01:00
|
|
|
viewContainer: ViewContainer;
|
2015-02-12 14:56:41 -08:00
|
|
|
constructor(viewContainer:ViewContainer) {
|
2015-02-12 11:54:22 +01:00
|
|
|
this.viewContainer = viewContainer;
|
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-02-12 14:56:41 -08:00
|
|
|
changes.forEachRemovedItem(
|
2014-12-05 17:44:00 -08:00
|
|
|
(removedRecord) => ListWrapper.push(recordViewTuples, new RecordViewTuple(removedRecord, null))
|
|
|
|
);
|
|
|
|
|
2015-02-12 14:56:41 -08:00
|
|
|
changes.forEachMovedItem(
|
2014-12-05 17:44:00 -08:00
|
|
|
(movedRecord) => ListWrapper.push(recordViewTuples, new RecordViewTuple(movedRecord, null))
|
|
|
|
);
|
|
|
|
|
2015-03-13 16:22:01 -07:00
|
|
|
var insertTuples = For.bulkRemove(recordViewTuples, this.viewContainer);
|
2014-12-05 17:44:00 -08:00
|
|
|
|
2015-02-12 14:56:41 -08:00
|
|
|
changes.forEachAddedItem(
|
2014-12-05 17:44:00 -08:00
|
|
|
(addedRecord) => ListWrapper.push(insertTuples, new RecordViewTuple(addedRecord, null))
|
|
|
|
);
|
|
|
|
|
2015-03-13 16:22:01 -07:00
|
|
|
For.bulkInsert(insertTuples, this.viewContainer);
|
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);
|
2014-12-05 17:44:00 -08:00
|
|
|
ListWrapper.push(movedTuples, 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-02-12 11:54:22 +01:00
|
|
|
static bulkInsert(tuples, viewContainer) {
|
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-02-12 11:54:22 +01:00
|
|
|
tuple.view = viewContainer.create(tuple.record.currentIndex);
|
2014-12-05 17:44:00 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return tuples;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class RecordViewTuple {
|
|
|
|
view: View;
|
|
|
|
record: any;
|
|
|
|
constructor(record, view) {
|
|
|
|
this.record = record;
|
|
|
|
this.view = view;
|
|
|
|
}
|
|
|
|
}
|