2015-04-14 07:47:12 -07:00
|
|
|
import {ChangeDetector} from './interfaces';
|
|
|
|
import {CHECK_ONCE, DETACHED, CHECK_ALWAYS} from './constants';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Controls change detection.
|
|
|
|
*
|
2015-05-01 14:05:19 -07:00
|
|
|
* {@link ChangeDetectorRef} allows requesting checks for detectors that rely on observables. It
|
|
|
|
*also allows detaching and
|
2015-04-14 07:47:12 -07:00
|
|
|
* attaching change detector subtrees.
|
|
|
|
*
|
|
|
|
* @exportedAs angular2/change_detection
|
|
|
|
*/
|
|
|
|
export class ChangeDetectorRef {
|
2015-05-01 14:05:19 -07:00
|
|
|
constructor(private _cd: ChangeDetector) {}
|
2015-04-14 07:47:12 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Request to check all ON_PUSH ancestors.
|
|
|
|
*/
|
2015-06-16 08:47:24 +02:00
|
|
|
requestCheck(): void { this._cd.markPathToRootAsCheckOnce(); }
|
2015-04-14 07:47:12 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Detaches the change detector from the change detector tree.
|
|
|
|
*
|
|
|
|
* The detached change detector will not be checked until it is reattached.
|
|
|
|
*/
|
2015-06-16 08:47:24 +02:00
|
|
|
detach(): void { this._cd.mode = DETACHED; }
|
2015-04-14 07:47:12 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reattach the change detector to the change detector tree.
|
|
|
|
*
|
2015-05-01 14:05:19 -07:00
|
|
|
* This also requests a check of this change detector. This reattached change detector will be
|
|
|
|
*checked during the
|
2015-04-14 07:47:12 -07:00
|
|
|
* next change detection run.
|
|
|
|
*/
|
2015-06-16 08:47:24 +02:00
|
|
|
reattach(): void {
|
2015-04-14 07:47:12 -07:00
|
|
|
this._cd.mode = CHECK_ALWAYS;
|
|
|
|
this.requestCheck();
|
|
|
|
}
|
2015-04-17 13:01:07 -07:00
|
|
|
}
|