2015-02-05 13:08:05 -08:00
|
|
|
import {List} from 'angular2/src/facade/collection';
|
2015-03-11 21:11:39 -07:00
|
|
|
import {Locals} from './parser/locals';
|
2015-04-09 07:57:33 -07:00
|
|
|
import {BindingRecord} from './binding_record';
|
2015-05-13 13:01:31 -07:00
|
|
|
import {DirectiveRecord} from './directive_record';
|
2015-03-30 16:54:10 -07:00
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
export class ProtoChangeDetector {
|
|
|
|
instantiate(dispatcher: any): ChangeDetector { return null; }
|
2015-03-30 16:54:10 -07:00
|
|
|
}
|
|
|
|
|
2015-04-13 21:00:52 -07:00
|
|
|
/**
|
|
|
|
* Interface used by Angular to control the change detection strategy for an application.
|
|
|
|
*
|
|
|
|
* Angular implements the following change detection strategies by default:
|
|
|
|
*
|
2015-04-17 13:01:07 -07:00
|
|
|
* - {@link DynamicChangeDetection}: slower, but does not require `eval()`.
|
|
|
|
* - {@link JitChangeDetection}: faster, but requires `eval()`.
|
2015-04-13 21:00:52 -07:00
|
|
|
*
|
2015-05-01 14:05:19 -07:00
|
|
|
* In JavaScript, you should always use `JitChangeDetection`, unless you are in an environment that
|
|
|
|
*has
|
2015-04-13 21:00:52 -07:00
|
|
|
* [CSP](https://developer.mozilla.org/en-US/docs/Web/Security/CSP), such as a Chrome Extension.
|
|
|
|
*
|
2015-05-01 14:05:19 -07:00
|
|
|
* In Dart, use `DynamicChangeDetection` during development. The Angular transformer generates an
|
|
|
|
*analog to the
|
2015-04-17 13:01:07 -07:00
|
|
|
* `JitChangeDetection` strategy at compile time.
|
2015-04-13 21:00:52 -07:00
|
|
|
*
|
|
|
|
*
|
2015-06-15 00:44:20 +01:00
|
|
|
* See: {@link DynamicChangeDetection}, {@link JitChangeDetection},
|
|
|
|
* {@link PreGeneratedChangeDetection}
|
2015-04-13 21:00:52 -07:00
|
|
|
*
|
|
|
|
* # Example
|
|
|
|
* ```javascript
|
2015-04-27 15:30:47 -07:00
|
|
|
* bootstrap(MyApp, [bind(ChangeDetection).toClass(DynamicChangeDetection)]);
|
2015-04-13 21:00:52 -07:00
|
|
|
* ```
|
|
|
|
* @exportedAs angular2/change_detection
|
|
|
|
*/
|
2015-03-30 16:54:10 -07:00
|
|
|
export class ChangeDetection {
|
2015-05-13 13:01:31 -07:00
|
|
|
createProtoChangeDetector(definition: ChangeDetectorDefinition): ProtoChangeDetector {
|
2015-03-30 16:54:10 -07:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2015-01-14 13:51:16 -08:00
|
|
|
|
|
|
|
export class ChangeDispatcher {
|
2015-05-01 14:05:19 -07:00
|
|
|
notifyOnBinding(bindingRecord: BindingRecord, value: any) {}
|
2015-01-14 13:51:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export class ChangeDetector {
|
2015-05-01 14:05:19 -07:00
|
|
|
parent: ChangeDetector;
|
|
|
|
mode: string;
|
2015-01-14 13:51:16 -08:00
|
|
|
|
2015-06-16 08:47:24 +02:00
|
|
|
addChild(cd: ChangeDetector): void {}
|
|
|
|
addShadowDomChild(cd: ChangeDetector): void {}
|
|
|
|
removeChild(cd: ChangeDetector): void {}
|
|
|
|
removeShadowDomChild(cd: ChangeDetector): void {}
|
|
|
|
remove(): void {}
|
|
|
|
hydrate(context: any, locals: Locals, directives: any): void {}
|
|
|
|
dehydrate(): void {}
|
|
|
|
markPathToRootAsCheckOnce(): void {}
|
2015-01-14 13:51:16 -08:00
|
|
|
|
2015-06-16 08:47:24 +02:00
|
|
|
detectChanges(): void {}
|
|
|
|
checkNoChanges(): void {}
|
2015-01-14 13:51:16 -08:00
|
|
|
}
|
2015-05-13 13:01:31 -07:00
|
|
|
|
|
|
|
export class ChangeDetectorDefinition {
|
|
|
|
constructor(public id: string, public strategy: string, public variableNames: List<string>,
|
|
|
|
public bindingRecords: List<BindingRecord>,
|
|
|
|
public directiveRecords: List<DirectiveRecord>) {}
|
2015-05-11 17:59:39 -07:00
|
|
|
}
|