2015-05-29 16:34:51 -07:00
|
|
|
import {JitProtoChangeDetector} from './jit_proto_change_detector';
|
|
|
|
import {PregenProtoChangeDetector} from './pregen_proto_change_detector';
|
|
|
|
import {DynamicProtoChangeDetector} from './proto_change_detector';
|
2015-06-05 10:44:01 -07:00
|
|
|
import {PipeFactory, Pipe} from './pipes/pipe';
|
2015-05-01 14:05:19 -07:00
|
|
|
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-14 10:14:26 -07:00
|
|
|
import {UpperCaseFactory} from './pipes/uppercase_pipe';
|
|
|
|
import {LowerCaseFactory} from './pipes/lowercase_pipe';
|
2015-06-05 10:44:01 -07:00
|
|
|
import {JsonPipe} from './pipes/json_pipe';
|
2015-06-26 00:22:36 +04:30
|
|
|
import {LimitToPipeFactory} from './pipes/limit_to_pipe';
|
2015-07-04 22:25:43 +04:30
|
|
|
import {DecimalPipe, PercentPipe, CurrencyPipe} from './pipes/number_pipe';
|
2015-05-01 14:05:19 -07:00
|
|
|
import {NullPipeFactory} from './pipes/null_pipe';
|
2015-05-13 13:01:31 -07:00
|
|
|
import {ChangeDetection, ProtoChangeDetector, ChangeDetectorDefinition} from './interfaces';
|
2015-05-29 16:34:51 -07:00
|
|
|
import {Inject, Injectable, OpaqueToken, Optional} from 'angular2/di';
|
|
|
|
import {List, StringMap, StringMapWrapper} from 'angular2/src/facade/collection';
|
2015-06-22 17:11:55 -07:00
|
|
|
import {CONST, CONST_EXPR, isPresent, BaseException} from 'angular2/src/facade/lang';
|
2015-05-01 14:05:19 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Structural diffing for `Object`s and `Map`s.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
2015-06-22 17:11:55 -07:00
|
|
|
export const keyValDiff: List<PipeFactory> =
|
|
|
|
CONST_EXPR([CONST_EXPR(new KeyValueChangesFactory()), CONST_EXPR(new NullPipeFactory())]);
|
2015-05-01 14:05:19 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Structural diffing for `Iterable` types such as `Array`s.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
2015-06-22 17:11:55 -07:00
|
|
|
export const iterableDiff: List<PipeFactory> =
|
|
|
|
CONST_EXPR([CONST_EXPR(new IterableChangesFactory()), CONST_EXPR(new NullPipeFactory())]);
|
2015-05-01 14:05:19 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Async binding to such types as Observable.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
2015-06-22 17:11:55 -07:00
|
|
|
export const async: List<PipeFactory> = CONST_EXPR([
|
|
|
|
CONST_EXPR(new ObservablePipeFactory()),
|
|
|
|
CONST_EXPR(new PromisePipeFactory()),
|
|
|
|
CONST_EXPR(new NullPipeFactory())
|
|
|
|
]);
|
2015-05-01 14:05:19 -07:00
|
|
|
|
2015-05-14 10:14:26 -07:00
|
|
|
/**
|
|
|
|
* Uppercase text transform.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
2015-06-22 17:11:55 -07:00
|
|
|
export const uppercase: List<PipeFactory> =
|
|
|
|
CONST_EXPR([CONST_EXPR(new UpperCaseFactory()), CONST_EXPR(new NullPipeFactory())]);
|
2015-05-14 10:14:26 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Lowercase text transform.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
2015-06-22 17:11:55 -07:00
|
|
|
export const lowercase: List<PipeFactory> =
|
|
|
|
CONST_EXPR([CONST_EXPR(new LowerCaseFactory()), CONST_EXPR(new NullPipeFactory())]);
|
2015-05-14 10:14:26 -07:00
|
|
|
|
2015-05-18 09:24:52 -07:00
|
|
|
/**
|
|
|
|
* Json stringify transform.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
2015-06-26 00:22:36 +04:30
|
|
|
export const json: List<PipeFactory> =
|
2015-06-22 17:11:55 -07:00
|
|
|
CONST_EXPR([CONST_EXPR(new JsonPipe()), CONST_EXPR(new NullPipeFactory())]);
|
2015-05-18 09:24:52 -07:00
|
|
|
|
2015-06-26 00:22:36 +04:30
|
|
|
/**
|
|
|
|
* LimitTo text transform.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
|
|
|
export const limitTo: List<PipeFactory> =
|
|
|
|
CONST_EXPR([CONST_EXPR(new LimitToPipeFactory()), CONST_EXPR(new NullPipeFactory())]);
|
|
|
|
|
2015-07-04 22:25:43 +04:30
|
|
|
/**
|
|
|
|
* Number number transform.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
|
|
|
export const decimal: List<PipeFactory> =
|
|
|
|
CONST_EXPR([CONST_EXPR(new DecimalPipe()), CONST_EXPR(new NullPipeFactory())]);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Percent number transform.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
|
|
|
export const percent: List<PipeFactory> =
|
|
|
|
CONST_EXPR([CONST_EXPR(new PercentPipe()), CONST_EXPR(new NullPipeFactory())]);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Currency number transform.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/pipes
|
|
|
|
*/
|
|
|
|
export const currency: List<PipeFactory> =
|
|
|
|
CONST_EXPR([CONST_EXPR(new CurrencyPipe()), CONST_EXPR(new NullPipeFactory())]);
|
|
|
|
|
2015-06-22 17:11:55 -07:00
|
|
|
export const defaultPipes = CONST_EXPR({
|
2015-05-01 14:05:19 -07:00
|
|
|
"iterableDiff": iterableDiff,
|
|
|
|
"keyValDiff": keyValDiff,
|
2015-05-14 10:14:26 -07:00
|
|
|
"async": async,
|
|
|
|
"uppercase": uppercase,
|
2015-05-18 09:24:52 -07:00
|
|
|
"lowercase": lowercase,
|
2015-06-26 00:22:36 +04:30
|
|
|
"json": json,
|
2015-07-04 22:25:43 +04:30
|
|
|
"limitTo": limitTo,
|
|
|
|
"number": decimal,
|
|
|
|
"percent": percent,
|
|
|
|
"currency": currency
|
2015-06-22 17:11:55 -07:00
|
|
|
});
|
2015-05-01 14:05:19 -07:00
|
|
|
|
2015-05-29 16:34:51 -07:00
|
|
|
/**
|
|
|
|
* Map from {@link ChangeDetectorDefinition#id} to a factory method which takes a
|
|
|
|
* {@link PipeRegistry} and a {@link ChangeDetectorDefinition} and generates a
|
|
|
|
* {@link ProtoChangeDetector} associated with the definition.
|
|
|
|
*/
|
|
|
|
// TODO(kegluneq): Use PregenProtoChangeDetectorFactory rather than Function once possible in
|
|
|
|
// dart2js. See https://github.com/dart-lang/sdk/issues/23630 for details.
|
|
|
|
export var preGeneratedProtoDetectors: StringMap<string, Function> = {};
|
2015-05-13 13:25:18 -07:00
|
|
|
|
2015-05-29 16:34:51 -07:00
|
|
|
export const PROTO_CHANGE_DETECTOR_KEY = CONST_EXPR(new OpaqueToken('ProtoChangeDetectors'));
|
2015-05-13 13:25:18 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements change detection using a map of pregenerated proto detectors.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/change_detection
|
|
|
|
*/
|
2015-05-29 16:34:51 -07:00
|
|
|
@Injectable()
|
2015-05-13 13:25:18 -07:00
|
|
|
export class PreGeneratedChangeDetection extends ChangeDetection {
|
|
|
|
_dynamicChangeDetection: ChangeDetection;
|
2015-05-20 09:48:15 -07:00
|
|
|
_protoChangeDetectorFactories: StringMap<string, Function>;
|
2015-05-13 13:25:18 -07:00
|
|
|
|
2015-07-08 10:28:47 -07:00
|
|
|
constructor(@Inject(PROTO_CHANGE_DETECTOR_KEY) @Optional()
|
2015-05-29 16:34:51 -07:00
|
|
|
protoChangeDetectorsForTest?: StringMap<string, Function>) {
|
2015-05-13 13:25:18 -07:00
|
|
|
super();
|
2015-07-08 10:28:47 -07:00
|
|
|
this._dynamicChangeDetection = new DynamicChangeDetection();
|
2015-05-29 16:34:51 -07:00
|
|
|
this._protoChangeDetectorFactories = isPresent(protoChangeDetectorsForTest) ?
|
|
|
|
protoChangeDetectorsForTest :
|
|
|
|
preGeneratedProtoDetectors;
|
2015-05-13 13:25:18 -07:00
|
|
|
}
|
|
|
|
|
2015-05-29 16:34:51 -07:00
|
|
|
static isSupported(): boolean { return PregenProtoChangeDetector.isSupported(); }
|
|
|
|
|
2015-05-13 13:25:18 -07:00
|
|
|
createProtoChangeDetector(definition: ChangeDetectorDefinition): ProtoChangeDetector {
|
|
|
|
var id = definition.id;
|
2015-05-20 09:48:15 -07:00
|
|
|
if (StringMapWrapper.contains(this._protoChangeDetectorFactories, id)) {
|
2015-07-08 10:28:47 -07:00
|
|
|
return StringMapWrapper.get(this._protoChangeDetectorFactories, id)(definition);
|
2015-05-13 13:25:18 -07:00
|
|
|
}
|
|
|
|
return this._dynamicChangeDetection.createProtoChangeDetector(definition);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements change detection that does not require `eval()`.
|
|
|
|
*
|
|
|
|
* This is slower than {@link JitChangeDetection}.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/change_detection
|
|
|
|
*/
|
|
|
|
@Injectable()
|
|
|
|
export class DynamicChangeDetection extends ChangeDetection {
|
2015-05-13 13:25:18 -07:00
|
|
|
createProtoChangeDetector(definition: ChangeDetectorDefinition): ProtoChangeDetector {
|
2015-07-08 10:28:47 -07:00
|
|
|
return new DynamicProtoChangeDetector(definition);
|
2015-05-01 14:05:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-29 16:34:51 -07:00
|
|
|
* Implements faster change detection by generating source code.
|
2015-05-01 14:05:19 -07:00
|
|
|
*
|
2015-05-22 13:28:09 -07:00
|
|
|
* This requires `eval()`. For change detection that does not require `eval()`, see
|
2015-05-29 16:34:51 -07:00
|
|
|
* {@link DynamicChangeDetection} and {@link PreGeneratedChangeDetection}.
|
2015-05-01 14:05:19 -07:00
|
|
|
*
|
|
|
|
* @exportedAs angular2/change_detection
|
|
|
|
*/
|
|
|
|
@Injectable()
|
2015-06-22 17:11:55 -07:00
|
|
|
@CONST()
|
2015-05-01 14:05:19 -07:00
|
|
|
export class JitChangeDetection extends ChangeDetection {
|
2015-05-29 16:34:51 -07:00
|
|
|
static isSupported(): boolean { return JitProtoChangeDetector.isSupported(); }
|
|
|
|
|
2015-05-13 13:25:18 -07:00
|
|
|
createProtoChangeDetector(definition: ChangeDetectorDefinition): ProtoChangeDetector {
|
2015-07-08 10:28:47 -07:00
|
|
|
return new JitProtoChangeDetector(definition);
|
2015-05-01 14:05:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-22 17:11:55 -07:00
|
|
|
export const defaultPipeRegistry: PipeRegistry = CONST_EXPR(new PipeRegistry(defaultPipes));
|