2014-09-19 16:38:37 -07:00
|
|
|
import {Node, DocumentFragment} from 'facade/dom';
|
|
|
|
import {ListWrapper wraps List} from 'facade/collection';
|
2014-09-26 11:20:08 -07:00
|
|
|
import {WatchGroupDispatcher} from 'change_detection/watch_group_dispatcher';
|
2014-09-19 16:38:37 -07:00
|
|
|
import {Record} from 'change_detection/record';
|
|
|
|
|
|
|
|
@IMPLEMENTS(WatchGroupDispatcher)
|
|
|
|
export class View {
|
|
|
|
@FIELD('final _fragment:DocumentFragment')
|
|
|
|
/// This list matches the _nodes list. It is sparse, since only Elements have ElementInjector
|
|
|
|
@FIELD('final _rootElementInjectors:List<ElementInjector>')
|
|
|
|
@FIELD('final _elementInjectors:List<ElementInjector>')
|
|
|
|
@FIELD('final _textNodes:List<Text>')
|
|
|
|
@FIELD('final _watchGroup:WatchGroup')
|
|
|
|
/// When the view is part of render tree, the DocumentFragment is empty, which is why we need
|
|
|
|
/// to keep track of the nodes.
|
|
|
|
@FIELD('final _nodes:List<Node>')
|
|
|
|
constructor(fragment:DocumentFragment) {
|
|
|
|
this._fragment = fragment;
|
|
|
|
this._nodes = ListWrapper.clone(fragment.childNodes);
|
|
|
|
}
|
|
|
|
|
2014-09-26 11:20:08 -07:00
|
|
|
onRecordChange(record:Record, target) {
|
2014-09-19 16:38:37 -07:00
|
|
|
// dispatch to element injector or text nodes based on context
|
2014-09-26 17:36:57 -07:00
|
|
|
if (target instanceof ElementInjectorTarge) {
|
2014-09-19 16:38:37 -07:00
|
|
|
// we know that it is ElementInjectorTarge
|
|
|
|
var eTarget:ElementInjectorTarget = target;
|
|
|
|
onChangeDispatcher.notify(this, eTarget);
|
|
|
|
eTarget.invoke(record, _elementInjectors);
|
2014-09-26 11:20:08 -07:00
|
|
|
} else {
|
|
|
|
// we know it refferst to _textNodes.
|
|
|
|
var textNodeIndex:number = target;
|
|
|
|
DOM.setText(this._textNodes[textNodeIndex], record.currentValue);
|
2014-09-19 16:38:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|