angular2
Version:
Angular 2 - a web framework for modern web apps
133 lines • 5.16 kB
JavaScript
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") return Reflect.decorate(decorators, target, key, desc);
switch (arguments.length) {
case 2: return decorators.reduceRight(function(o, d) { return (d && d(o)) || o; }, target);
case 3: return decorators.reduceRight(function(o, d) { return (d && d(target, key)), void 0; }, void 0);
case 4: return decorators.reduceRight(function(o, d) { return (d && d(target, key, o)) || o; }, desc);
}
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { Injectable } from 'angular2/src/core/di';
import { DOM } from 'angular2/src/core/dom/dom_adapter';
import { Map, MapWrapper } from 'angular2/src/facade/collection';
import { CONST, CONST_EXPR } from 'angular2/src/facade/lang';
import { BaseException } from 'angular2/src/facade/exceptions';
import { NgZone } from '../zone/ng_zone';
import { PromiseWrapper, ObservableWrapper } from 'angular2/src/facade/async';
/**
* The Testability service provides testing hooks that can be accessed from
* the browser and by services such as Protractor. Each bootstrapped Angular
* application on the page will have an instance of Testability.
*/
export let Testability = class {
constructor(_ngZone) {
/** @internal */
this._pendingCount = 0;
/** @internal */
this._callbacks = [];
/** @internal */
this._isAngularEventPending = false;
this._watchAngularEvents(_ngZone);
}
/** @internal */
_watchAngularEvents(_ngZone) {
ObservableWrapper.subscribe(_ngZone.onTurnStart, (_) => { this._isAngularEventPending = true; });
_ngZone.runOutsideAngular(() => {
ObservableWrapper.subscribe(_ngZone.onEventDone, (_) => {
if (!_ngZone.hasPendingTimers) {
this._isAngularEventPending = false;
this._runCallbacksIfReady();
}
});
});
}
increasePendingRequestCount() {
this._pendingCount += 1;
return this._pendingCount;
}
decreasePendingRequestCount() {
this._pendingCount -= 1;
if (this._pendingCount < 0) {
throw new BaseException('pending async requests below zero');
}
this._runCallbacksIfReady();
return this._pendingCount;
}
isStable() { return this._pendingCount == 0 && !this._isAngularEventPending; }
/** @internal */
_runCallbacksIfReady() {
if (!this.isStable()) {
return; // Not ready
}
// Schedules the call backs in a new frame so that it is always async.
PromiseWrapper.resolve(null).then((_) => {
while (this._callbacks.length !== 0) {
(this._callbacks.pop())();
}
});
}
whenStable(callback) {
this._callbacks.push(callback);
this._runCallbacksIfReady();
}
getPendingRequestCount() { return this._pendingCount; }
// This only accounts for ngZone, and not pending counts. Use `whenStable` to
// check for stability.
isAngularEventPending() { return this._isAngularEventPending; }
findBindings(using, provider, exactMatch) {
// TODO(juliemr): implement.
return [];
}
findProviders(using, provider, exactMatch) {
// TODO(juliemr): implement.
return [];
}
};
Testability = __decorate([
Injectable(),
__metadata('design:paramtypes', [NgZone])
], Testability);
export let TestabilityRegistry = class {
constructor() {
/** @internal */
this._applications = new Map();
testabilityGetter.addToWindow(this);
}
registerApplication(token, testability) {
this._applications.set(token, testability);
}
getAllTestabilities() { return MapWrapper.values(this._applications); }
findTestabilityInTree(elem, findInAncestors = true) {
if (elem == null) {
return null;
}
if (this._applications.has(elem)) {
return this._applications.get(elem);
}
else if (!findInAncestors) {
return null;
}
if (DOM.isShadowRoot(elem)) {
return this.findTestabilityInTree(DOM.getHost(elem));
}
return this.findTestabilityInTree(DOM.parentElement(elem));
}
};
TestabilityRegistry = __decorate([
Injectable(),
__metadata('design:paramtypes', [])
], TestabilityRegistry);
let NoopGetTestability = class {
addToWindow(registry) { }
};
NoopGetTestability = __decorate([
CONST(),
__metadata('design:paramtypes', [])
], NoopGetTestability);
export function setTestabilityGetter(getter) {
testabilityGetter = getter;
}
var testabilityGetter = CONST_EXPR(new NoopGetTestability());
//# sourceMappingURL=testability.js.map