aboutsummaryrefslogtreecommitdiffstats
path: root/src/Scope.js
diff options
context:
space:
mode:
authorMisko Hevery2011-08-11 15:19:26 -0700
committerMisko Hevery2011-08-12 16:18:41 -0700
commit3f99cdbdc30e85c2100acd7cbe67052befd08776 (patch)
treedd16babb99b2874cdde91cecde85e1d1ed6e7ccd /src/Scope.js
parent13e7df68a65b0dd2eb4eed673f7b8e3e702d72a9 (diff)
downloadangular.js-3f99cdbdc30e85c2100acd7cbe67052befd08776.tar.bz2
feat(scope): $evalAsync support
Diffstat (limited to 'src/Scope.js')
-rw-r--r--src/Scope.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/Scope.js b/src/Scope.js
index ffac1317..af956de2 100644
--- a/src/Scope.js
+++ b/src/Scope.js
@@ -96,6 +96,7 @@ function Scope() {
this.$$phase = this.$parent = this.$$watchers =
this.$$nextSibling = this.$$childHead = this.$$childTail = null;
this['this'] = this.$root = this;
+ this.$$asyncQueue = [];
}
/**
@@ -168,6 +169,7 @@ Scope.prototype = {
child['this'] = child;
child.$parent = this;
child.$id = nextUid();
+ child.$$asyncQueue = [];
child.$$phase = child.$$watchers =
child.$$nextSibling = child.$$childHead = child.$$childTail = null;
if (this.$$childHead) {
@@ -319,6 +321,7 @@ Scope.prototype = {
var child,
watch, value, last,
watchers = this.$$watchers,
+ asyncQueue = this.$$asyncQueue,
length, count = 0,
dirtyCount, ttl = 100,
recheck = !this.$parent || !this.$parent.$$phase;
@@ -328,6 +331,13 @@ Scope.prototype = {
}
this.$$phase = '$digest';
do {
+ while(asyncQueue.length) {
+ try {
+ this.$eval(asyncQueue.shift());
+ } catch (e) {
+ this.$service('$exceptionHandler')(e);
+ }
+ }
dirtyCount = 0;
if (watchers) {
// process our watches
@@ -441,6 +451,34 @@ Scope.prototype = {
/**
* @workInProgress
* @ngdoc function
+ * @name angular.scope.$evalAsync
+ * @function
+ *
+ * @description
+ * Executes the expression on the current scope at a later point in time.
+ *
+ * The `$evalAsync` makes no guarantees as to when the `expression` will be executed, only that:
+ *
+ * - it will execute in the current script execution context (before any DOM rendering).
+ * - at least one {@link angular.scope.$digest $digest cycle} will be performed after
+ * `expression` execution.
+ *
+ * Any exceptions from the execution of the expression are forwarded to the
+ * {@link angular.service.$exceptionHandler $exceptionHandler} service.
+ *
+ * @param {(string|function())=} expression An angular expression to be executed.
+ *
+ * - `string`: execute using the rules as defined in {@link guide/dev_guide.expressions expression}.
+ * - `function(scope)`: execute the function with the current `scope` parameter.
+ *
+ */
+ $evalAsync: function(expr) {
+ this.$$asyncQueue.push(expr);
+ },
+
+ /**
+ * @workInProgress
+ * @ngdoc function
* @name angular.scope.$apply
* @function
*