2015-02-02 16:25:34 -08:00
|
|
|
import {List} from 'facade/src/collection';
|
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 {
|
|
|
|
onRecordChange(groupMemento, records:List<ChangeRecord>) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
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() {}
|
|
|
|
setContext(context:any) {}
|
2015-02-02 17:40:54 -08:00
|
|
|
markPathToRootAsCheckOnce() {}
|
2015-01-14 13:51:16 -08:00
|
|
|
|
|
|
|
detectChanges() {}
|
|
|
|
checkNoChanges() {}
|
|
|
|
}
|