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-01-14 13:51:16 -08:00
|
|
|
|
|
|
|
export class ChangeRecord {
|
|
|
|
bindingMemento:any;
|
|
|
|
change:any;
|
|
|
|
|
|
|
|
constructor(bindingMemento, change) {
|
|
|
|
this.bindingMemento = bindingMemento;
|
|
|
|
this.change = change;
|
|
|
|
}
|
|
|
|
|
|
|
|
//REMOVE IT
|
|
|
|
get currentValue() {
|
|
|
|
return this.change.currentValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
get previousValue() {
|
|
|
|
return this.change.previousValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-01 12:09:35 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CHECK_ONCE means that after calling detectChanges the mode of the change detector
|
|
|
|
* will become CHECKED.
|
|
|
|
*/
|
|
|
|
export const CHECK_ONCE="CHECK_ONCE";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CHECKED means that the change detector should be skipped until its mode changes to
|
|
|
|
* CHECK_ONCE or CHECK_ALWAYS.
|
|
|
|
*/
|
|
|
|
export const CHECKED="CHECKED";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CHECK_ALWAYS means that after calling detectChanges the mode of the change detector
|
|
|
|
* will remain CHECK_ALWAYS.
|
|
|
|
*/
|
|
|
|
export const CHECK_ALWAYS="ALWAYS_CHECK";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DETACHED means that the change detector sub tree is not a part of the main tree and
|
|
|
|
* should be skipped.
|
|
|
|
*/
|
|
|
|
export const DETACHED="DETACHED";
|
|
|
|
|
2015-01-14 13:51:16 -08:00
|
|
|
export class ChangeDispatcher {
|
2015-02-06 13:35:05 -08:00
|
|
|
onRecordChange(directiveMemento, records:List<ChangeRecord>) {}
|
2015-01-14 13:51:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export class ChangeDetector {
|
|
|
|
parent:ChangeDetector;
|
2015-02-01 12:09:35 -08:00
|
|
|
mode:string;
|
2015-01-14 13:51:16 -08:00
|
|
|
|
|
|
|
addChild(cd:ChangeDetector) {}
|
|
|
|
removeChild(cd:ChangeDetector) {}
|
|
|
|
remove() {}
|
2015-03-11 21:11:39 -07:00
|
|
|
hydrate(context:any, locals:Locals) {}
|
2015-02-27 07:56:50 -08:00
|
|
|
dehydrate() {}
|
2015-02-02 17:40:54 -08:00
|
|
|
markPathToRootAsCheckOnce() {}
|
2015-01-14 13:51:16 -08:00
|
|
|
|
|
|
|
detectChanges() {}
|
|
|
|
checkNoChanges() {}
|
|
|
|
}
|