mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
511 lines
16 KiB
JavaScript
511 lines
16 KiB
JavaScript
//////////////////////////////////////////////////
|
|
// Package docs at http://docs.meteor.com/#tracker //
|
|
//////////////////////////////////////////////////
|
|
|
|
/**
|
|
* @namespace Tracker
|
|
* @summary The namespace for Tracker-related methods.
|
|
*/
|
|
Tracker = {};
|
|
|
|
// http://docs.meteor.com/#tracker_active
|
|
|
|
/**
|
|
* @summary True if there is a current computation, meaning that dependencies on reactive data sources will be tracked and potentially cause the current computation to be rerun.
|
|
* @locus Client
|
|
* @type {Boolean}
|
|
*/
|
|
Tracker.active = false;
|
|
|
|
// http://docs.meteor.com/#tracker_currentcomputation
|
|
|
|
/**
|
|
* @summary The current computation, or `null` if there isn't one. The current computation is the [`Tracker.Computation`](#tracker_computation) object created by the innermost active call to `Tracker.autorun`, and it's the computation that gains dependencies when reactive data sources are accessed.
|
|
* @locus Client
|
|
* @type {Tracker.Computation}
|
|
*/
|
|
Tracker.currentComputation = null;
|
|
|
|
var setCurrentComputation = function (c) {
|
|
Tracker.currentComputation = c;
|
|
Tracker.active = !! c;
|
|
};
|
|
|
|
var _debugFunc = function () {
|
|
// We want this code to work without Meteor, and also without
|
|
// "console" (which is technically non-standard and may be missing
|
|
// on some browser we come across, like it was on IE 7).
|
|
//
|
|
// Lazy evaluation because `Meteor` does not exist right away.(??)
|
|
return (typeof Meteor !== "undefined" ? Meteor._debug :
|
|
((typeof console !== "undefined") && console.log ?
|
|
function () { console.log.apply(console, arguments); } :
|
|
function () {}));
|
|
};
|
|
|
|
var _throwOrLog = function (from, e) {
|
|
if (throwFirstError) {
|
|
throw e;
|
|
} else {
|
|
var messageAndStack;
|
|
if (e.stack && e.message) {
|
|
var idx = e.stack.indexOf(e.message);
|
|
if (idx >= 0 && idx <= 10) // allow for "Error: " (at least 7)
|
|
messageAndStack = e.stack; // message is part of e.stack, as in Chrome
|
|
else
|
|
messageAndStack = e.message +
|
|
(e.stack.charAt(0) === '\n' ? '' : '\n') + e.stack; // e.g. Safari
|
|
} else {
|
|
messageAndStack = e.stack || e.message;
|
|
}
|
|
_debugFunc()("Exception from Tracker " + from + " function:",
|
|
messageAndStack);
|
|
}
|
|
};
|
|
|
|
// Takes a function `f`, and wraps it in a `Meteor._noYieldsAllowed`
|
|
// block if we are running on the server. On the client, returns the
|
|
// original function (since `Meteor._noYieldsAllowed` is a
|
|
// no-op). This has the benefit of not adding an unnecessary stack
|
|
// frame on the client.
|
|
var withNoYieldsAllowed = function (f) {
|
|
if ((typeof Meteor === 'undefined') || Meteor.isClient) {
|
|
return f;
|
|
} else {
|
|
return function () {
|
|
var args = arguments;
|
|
Meteor._noYieldsAllowed(function () {
|
|
f.apply(null, args);
|
|
});
|
|
};
|
|
}
|
|
};
|
|
|
|
var nextId = 1;
|
|
// computations whose callbacks we should call at flush time
|
|
var pendingComputations = [];
|
|
// `true` if a Tracker.flush is scheduled, or if we are in Tracker.flush now
|
|
var willFlush = false;
|
|
// `true` if we are in Tracker.flush now
|
|
var inFlush = false;
|
|
// `true` if we are computing a computation now, either first time
|
|
// or recompute. This matches Tracker.active unless we are inside
|
|
// Tracker.nonreactive, which nullfies currentComputation even though
|
|
// an enclosing computation may still be running.
|
|
var inCompute = false;
|
|
// `true` if the `_throwFirstError` option was passed in to the call
|
|
// to Tracker.flush that we are in. When set, throw rather than log the
|
|
// first error encountered while flushing. Before throwing the error,
|
|
// finish flushing (from a finally block), logging any subsequent
|
|
// errors.
|
|
var throwFirstError = false;
|
|
|
|
var afterFlushCallbacks = [];
|
|
|
|
var requireFlush = function () {
|
|
if (! willFlush) {
|
|
setTimeout(Tracker.flush, 0);
|
|
willFlush = true;
|
|
}
|
|
};
|
|
|
|
// Tracker.Computation constructor is visible but private
|
|
// (throws an error if you try to call it)
|
|
var constructingComputation = false;
|
|
|
|
//
|
|
// http://docs.meteor.com/#tracker_computation
|
|
|
|
/**
|
|
* @summary A Computation object represents code that is repeatedly rerun
|
|
* in response to
|
|
* reactive data changes. Computations don't have return values; they just
|
|
* perform actions, such as rerendering a template on the screen. Computations
|
|
* are created using Tracker.autorun. Use stop to prevent further rerunning of a
|
|
* computation.
|
|
* @instancename computation
|
|
*/
|
|
Tracker.Computation = function (f, parent) {
|
|
if (! constructingComputation)
|
|
throw new Error(
|
|
"Tracker.Computation constructor is private; use Tracker.autorun");
|
|
constructingComputation = false;
|
|
|
|
var self = this;
|
|
|
|
// http://docs.meteor.com/#computation_stopped
|
|
|
|
/**
|
|
* @summary True if this computation has been stopped.
|
|
* @locus Client
|
|
* @memberOf Tracker.Computation
|
|
* @instance
|
|
* @name stopped
|
|
*/
|
|
self.stopped = false;
|
|
|
|
// http://docs.meteor.com/#computation_invalidated
|
|
|
|
/**
|
|
* @summary True if this computation has been invalidated (and not yet rerun), or if it has been stopped.
|
|
* @locus Client
|
|
* @memberOf Tracker.Computation
|
|
* @instance
|
|
* @name invalidated
|
|
* @type {Boolean}
|
|
*/
|
|
self.invalidated = false;
|
|
|
|
// http://docs.meteor.com/#computation_firstrun
|
|
|
|
/**
|
|
* @summary True during the initial run of the computation at the time `Tracker.autorun` is called, and false on subsequent reruns and at other times.
|
|
* @locus Client
|
|
* @memberOf Tracker.Computation
|
|
* @instance
|
|
* @name firstRun
|
|
* @type {Boolean}
|
|
*/
|
|
self.firstRun = true;
|
|
|
|
self._id = nextId++;
|
|
self._onInvalidateCallbacks = [];
|
|
// the plan is at some point to use the parent relation
|
|
// to constrain the order that computations are processed
|
|
self._parent = parent;
|
|
self._func = f;
|
|
self._recomputing = false;
|
|
|
|
var errored = true;
|
|
try {
|
|
self._compute();
|
|
errored = false;
|
|
} finally {
|
|
self.firstRun = false;
|
|
if (errored)
|
|
self.stop();
|
|
}
|
|
};
|
|
|
|
// http://docs.meteor.com/#computation_oninvalidate
|
|
|
|
/**
|
|
* @summary Registers `callback` to run when this computation is next invalidated, or runs it immediately if the computation is already invalidated. The callback is run exactly once and not upon future invalidations unless `onInvalidate` is called again after the computation becomes valid again.
|
|
* @locus Client
|
|
* @param {Function} callback Function to be called on invalidation. Receives one argument, the computation that was invalidated.
|
|
*/
|
|
Tracker.Computation.prototype.onInvalidate = function (f) {
|
|
var self = this;
|
|
|
|
if (typeof f !== 'function')
|
|
throw new Error("onInvalidate requires a function");
|
|
|
|
if (self.invalidated) {
|
|
Tracker.nonreactive(function () {
|
|
withNoYieldsAllowed(f)(self);
|
|
});
|
|
} else {
|
|
self._onInvalidateCallbacks.push(f);
|
|
}
|
|
};
|
|
|
|
// http://docs.meteor.com/#computation_invalidate
|
|
|
|
/**
|
|
* @summary Invalidates this computation so that it will be rerun.
|
|
* @locus Client
|
|
*/
|
|
Tracker.Computation.prototype.invalidate = function () {
|
|
var self = this;
|
|
if (! self.invalidated) {
|
|
// if we're currently in _recompute(), don't enqueue
|
|
// ourselves, since we'll rerun immediately anyway.
|
|
if (! self._recomputing && ! self.stopped) {
|
|
requireFlush();
|
|
pendingComputations.push(this);
|
|
}
|
|
|
|
self.invalidated = true;
|
|
|
|
// callbacks can't add callbacks, because
|
|
// self.invalidated === true.
|
|
for(var i = 0, f; f = self._onInvalidateCallbacks[i]; i++) {
|
|
Tracker.nonreactive(function () {
|
|
withNoYieldsAllowed(f)(self);
|
|
});
|
|
}
|
|
self._onInvalidateCallbacks = [];
|
|
}
|
|
};
|
|
|
|
// http://docs.meteor.com/#computation_stop
|
|
|
|
/**
|
|
* @summary Prevents this computation from rerunning.
|
|
* @locus Client
|
|
*/
|
|
Tracker.Computation.prototype.stop = function () {
|
|
if (! this.stopped) {
|
|
this.stopped = true;
|
|
this.invalidate();
|
|
}
|
|
};
|
|
|
|
Tracker.Computation.prototype._compute = function () {
|
|
var self = this;
|
|
self.invalidated = false;
|
|
|
|
var previous = Tracker.currentComputation;
|
|
setCurrentComputation(self);
|
|
var previousInCompute = inCompute;
|
|
inCompute = true;
|
|
try {
|
|
withNoYieldsAllowed(self._func)(self);
|
|
} finally {
|
|
setCurrentComputation(previous);
|
|
inCompute = false;
|
|
}
|
|
};
|
|
|
|
Tracker.Computation.prototype._recompute = function () {
|
|
var self = this;
|
|
|
|
self._recomputing = true;
|
|
try {
|
|
while (self.invalidated && ! self.stopped) {
|
|
try {
|
|
self._compute();
|
|
} catch (e) {
|
|
_throwOrLog("recompute", e);
|
|
}
|
|
// If _compute() invalidated us, we run again immediately.
|
|
// A computation that invalidates itself indefinitely is an
|
|
// infinite loop, of course.
|
|
//
|
|
// We could put an iteration counter here and catch run-away
|
|
// loops.
|
|
}
|
|
} finally {
|
|
self._recomputing = false;
|
|
}
|
|
};
|
|
|
|
//
|
|
// http://docs.meteor.com/#tracker_dependency
|
|
|
|
/**
|
|
* @summary A Dependency represents an atomic unit of reactive data that a
|
|
* computation might depend on. Reactive data sources such as Session or
|
|
* Minimongo internally create different Dependency objects for different
|
|
* pieces of data, each of which may be depended on by multiple computations.
|
|
* When the data changes, the computations are invalidated.
|
|
* @class
|
|
* @instanceName dependency
|
|
*/
|
|
Tracker.Dependency = function () {
|
|
this._dependentsById = {};
|
|
};
|
|
|
|
// http://docs.meteor.com/#dependency_depend
|
|
//
|
|
// Adds `computation` to this set if it is not already
|
|
// present. Returns true if `computation` is a new member of the set.
|
|
// If no argument, defaults to currentComputation, or does nothing
|
|
// if there is no currentComputation.
|
|
|
|
/**
|
|
* @summary Declares that the current computation (or `fromComputation` if given) depends on `dependency`. The computation will be invalidated the next time `dependency` changes.
|
|
|
|
If there is no current computation and `depend()` is called with no arguments, it does nothing and returns false.
|
|
|
|
Returns true if the computation is a new dependent of `dependency` rather than an existing one.
|
|
* @locus Client
|
|
* @param {Tracker.Computation} [fromComputation] An optional computation declared to depend on `dependency` instead of the current computation.
|
|
* @returns {Boolean}
|
|
*/
|
|
Tracker.Dependency.prototype.depend = function (computation) {
|
|
if (! computation) {
|
|
if (! Tracker.active)
|
|
return false;
|
|
|
|
computation = Tracker.currentComputation;
|
|
}
|
|
var self = this;
|
|
var id = computation._id;
|
|
if (! (id in self._dependentsById)) {
|
|
self._dependentsById[id] = computation;
|
|
computation.onInvalidate(function () {
|
|
delete self._dependentsById[id];
|
|
});
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
// http://docs.meteor.com/#dependency_changed
|
|
|
|
/**
|
|
* @summary Invalidate all dependent computations immediately and remove them as dependents.
|
|
* @locus Client
|
|
*/
|
|
Tracker.Dependency.prototype.changed = function () {
|
|
var self = this;
|
|
for (var id in self._dependentsById)
|
|
self._dependentsById[id].invalidate();
|
|
};
|
|
|
|
// http://docs.meteor.com/#dependency_hasdependents
|
|
|
|
/**
|
|
* @summary True if this Dependency has one or more dependent Computations, which would be invalidated if this Dependency were to change.
|
|
* @locus Client
|
|
* @returns {Boolean}
|
|
*/
|
|
Tracker.Dependency.prototype.hasDependents = function () {
|
|
var self = this;
|
|
for(var id in self._dependentsById)
|
|
return true;
|
|
return false;
|
|
};
|
|
|
|
// http://docs.meteor.com/#tracker_flush
|
|
|
|
/**
|
|
* @summary Process all reactive updates immediately and ensure that all invalidated computations are rerun.
|
|
* @locus Client
|
|
*/
|
|
Tracker.flush = function (_opts) {
|
|
// XXX What part of the comment below is still true? (We no longer
|
|
// have Spark)
|
|
//
|
|
// Nested flush could plausibly happen if, say, a flush causes
|
|
// DOM mutation, which causes a "blur" event, which runs an
|
|
// app event handler that calls Tracker.flush. At the moment
|
|
// Spark blocks event handlers during DOM mutation anyway,
|
|
// because the LiveRange tree isn't valid. And we don't have
|
|
// any useful notion of a nested flush.
|
|
//
|
|
// https://app.asana.com/0/159908330244/385138233856
|
|
if (inFlush)
|
|
throw new Error("Can't call Tracker.flush while flushing");
|
|
|
|
if (inCompute)
|
|
throw new Error("Can't flush inside Tracker.autorun");
|
|
|
|
inFlush = true;
|
|
willFlush = true;
|
|
throwFirstError = !! (_opts && _opts._throwFirstError);
|
|
|
|
var finishedTry = false;
|
|
try {
|
|
while (pendingComputations.length ||
|
|
afterFlushCallbacks.length) {
|
|
|
|
// recompute all pending computations
|
|
while (pendingComputations.length) {
|
|
var comp = pendingComputations.shift();
|
|
comp._recompute();
|
|
}
|
|
|
|
if (afterFlushCallbacks.length) {
|
|
// call one afterFlush callback, which may
|
|
// invalidate more computations
|
|
var func = afterFlushCallbacks.shift();
|
|
try {
|
|
func();
|
|
} catch (e) {
|
|
_throwOrLog("afterFlush", e);
|
|
}
|
|
}
|
|
}
|
|
finishedTry = true;
|
|
} finally {
|
|
if (! finishedTry) {
|
|
// we're erroring
|
|
inFlush = false; // needed before calling `Tracker.flush()` again
|
|
Tracker.flush({_throwFirstError: false}); // finish flushing
|
|
}
|
|
willFlush = false;
|
|
inFlush = false;
|
|
}
|
|
};
|
|
|
|
// http://docs.meteor.com/#tracker_autorun
|
|
//
|
|
// Run f(). Record its dependencies. Rerun it whenever the
|
|
// dependencies change.
|
|
//
|
|
// Returns a new Computation, which is also passed to f.
|
|
//
|
|
// Links the computation to the current computation
|
|
// so that it is stopped if the current computation is invalidated.
|
|
|
|
/**
|
|
* @summary Run a function now and rerun it later whenever its dependencies change. Returns a Computation object that can be used to stop or observe the rerunning.
|
|
* @locus Client
|
|
* @param {Function} runFunc The function to run. It receives one argument: the Computation object that will be returned.
|
|
* @returns {Tracker.Computation}
|
|
*/
|
|
Tracker.autorun = function (f) {
|
|
if (typeof f !== 'function')
|
|
throw new Error('Tracker.autorun requires a function argument');
|
|
|
|
constructingComputation = true;
|
|
var c = new Tracker.Computation(f, Tracker.currentComputation);
|
|
|
|
if (Tracker.active)
|
|
Tracker.onInvalidate(function () {
|
|
c.stop();
|
|
});
|
|
|
|
return c;
|
|
};
|
|
|
|
// http://docs.meteor.com/#tracker_nonreactive
|
|
//
|
|
// Run `f` with no current computation, returning the return value
|
|
// of `f`. Used to turn off reactivity for the duration of `f`,
|
|
// so that reactive data sources accessed by `f` will not result in any
|
|
// computations being invalidated.
|
|
|
|
/**
|
|
* @summary Run a function without tracking dependencies.
|
|
* @locus Client
|
|
* @param {Function} func A function to call immediately.
|
|
*/
|
|
Tracker.nonreactive = function (f) {
|
|
var previous = Tracker.currentComputation;
|
|
setCurrentComputation(null);
|
|
try {
|
|
return f();
|
|
} finally {
|
|
setCurrentComputation(previous);
|
|
}
|
|
};
|
|
|
|
// http://docs.meteor.com/#tracker_oninvalidate
|
|
|
|
/**
|
|
* @summary Registers a new [`onInvalidate`](#computation_oninvalidate) callback on the current computation (which must exist), to be called immediately when the current computation is invalidated or stopped.
|
|
* @locus Client
|
|
* @param {Function} callback A callback function that will be invoked as `func(c)`, where `c` is the computation on which the callback is registered.
|
|
*/
|
|
Tracker.onInvalidate = function (f) {
|
|
if (! Tracker.active)
|
|
throw new Error("Tracker.onInvalidate requires a currentComputation");
|
|
|
|
Tracker.currentComputation.onInvalidate(f);
|
|
};
|
|
|
|
// http://docs.meteor.com/#tracker_afterflush
|
|
|
|
/**
|
|
* @summary Schedules a function to be called during the next flush, or later in the current flush if one is in progress, after all invalidated computations have been rerun. The function will be run once and not on subsequent flushes unless `afterFlush` is called again.
|
|
* @locus Client
|
|
* @param {Function} callback A function to call at flush time.
|
|
*/
|
|
Tracker.afterFlush = function (f) {
|
|
afterFlushCallbacks.push(f);
|
|
requireFlush();
|
|
};
|