2015-05-01 14:05:19 -07:00
|
|
|
import {DynamicProtoChangeDetector, JitProtoChangeDetector} from './proto_change_detector';
|
|
|
|
import {PipeFactory} from './pipes/pipe';
|
|
|
|
import {PipeRegistry} from './pipes/pipe_registry';
|
|
|
|
import {IterableChangesFactory} from './pipes/iterable_changes';
|
|
|
|
import {KeyValueChangesFactory} from './pipes/keyvalue_changes';
|
2015-05-11 14:25:27 -07:00
|
|
|
import {ObservablePipeFactory} from './pipes/observable_pipe';
|
|
|
|
import {PromisePipeFactory} from './pipes/promise_pipe';
|
2015-05-01 14:05:19 -07:00
|
|
|
import {NullPipeFactory} from './pipes/null_pipe';
|
|
|
|
import {BindingRecord} from './binding_record';
|
|
|
|
import {DirectiveRecord} from './directive_record';
|
|
|
|
import {DEFAULT} from './constants';
|
2015-05-13 13:01:31 -07:00
|
|
|
import {ChangeDetection, ProtoChangeDetector, ChangeDetectorDefinition} from './interfaces';
|
2015-05-01 14:05:19 -07:00
|
|
|
import {Injectable} from 'angular2/src/di/decorators';
|
|
|
|
import {List} from 'angular2/src/facade/collection';
|
|
|
|
|
|
|
|
// HACK: workaround for Traceur behavior.
|
|
|
|
// It expects all transpiled modules to contain this marker.
|
|
|
|
// TODO: remove this when we no longer use traceur
|
|
|
|
export var __esModule = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Structural diffing for `Object`s and `Map`s.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
|
|
|
export var keyValDiff: List < PipeFactory >= [new KeyValueChangesFactory(), new NullPipeFactory()];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Structural diffing for `Iterable` types such as `Array`s.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
|
|
|
export var iterableDiff: List <
|
|
|
|
PipeFactory >= [new IterableChangesFactory(), new NullPipeFactory()];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Async binding to such types as Observable.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
2015-05-11 14:25:27 -07:00
|
|
|
export var async: List <
|
|
|
|
PipeFactory >= [new ObservablePipeFactory(), new PromisePipeFactory(), new NullPipeFactory()];
|
2015-05-01 14:05:19 -07:00
|
|
|
|
|
|
|
export var defaultPipes = {
|
|
|
|
"iterableDiff": iterableDiff,
|
|
|
|
"keyValDiff": keyValDiff,
|
|
|
|
"async": async
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements change detection that does not require `eval()`.
|
|
|
|
*
|
|
|
|
* This is slower than {@link JitChangeDetection}.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/change_detection
|
|
|
|
*/
|
|
|
|
@Injectable()
|
|
|
|
export class DynamicChangeDetection extends ChangeDetection {
|
|
|
|
constructor(public registry: PipeRegistry) { super(); }
|
|
|
|
|
2015-05-13 13:01:31 -07:00
|
|
|
createProtoChangeDetector(definition:ChangeDetectorDefinition): ProtoChangeDetector {
|
|
|
|
return new DynamicProtoChangeDetector(this.registry, definition);
|
2015-05-01 14:05:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements faster change detection, by generating source code.
|
|
|
|
*
|
|
|
|
* This requires `eval()`. For change detection that does not require `eval()`, see {@link
|
|
|
|
*DynamicChangeDetection}.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/change_detection
|
|
|
|
*/
|
|
|
|
@Injectable()
|
|
|
|
export class JitChangeDetection extends ChangeDetection {
|
|
|
|
constructor(public registry: PipeRegistry) { super(); }
|
|
|
|
|
2015-05-13 13:01:31 -07:00
|
|
|
createProtoChangeDetector(definition:ChangeDetectorDefinition): ProtoChangeDetector {
|
|
|
|
return new JitProtoChangeDetector(this.registry, definition);
|
2015-05-01 14:05:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export var defaultPipeRegistry: PipeRegistry = new PipeRegistry(defaultPipes);
|