-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tracker.js
639 lines (558 loc) · 19.4 KB
/
tracker.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
// CHANGE FOR NPM:
let Tracker, Deps;
/////////////////////////////////////////////////////
// Package docs at http://docs.meteor.com/#tracker //
/////////////////////////////////////////////////////
/**
* @namespace Tracker
* @summary The namespace for Tracker-related methods.
*/
Tracker = {};
/**
* @namespace Deps
* @deprecated
*/
Deps = 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;
function setCurrentComputation(c) {
Tracker.currentComputation = c;
Tracker.active = !! c;
}
function _debugFunc() {
// 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.error ?
function () { console.error.apply(console, arguments); } :
function () {}));
}
function _maybeSuppressMoreLogs(messagesLength) {
// Sometimes when running tests, we intentionally suppress logs on expected
// printed errors. Since the current implementation of _throwOrLog can log
// multiple separate log messages, suppress all of them if at least one suppress
// is expected as we still want them to count as one.
if (typeof Meteor !== "undefined") {
if (Meteor._suppressed_log_expected()) {
Meteor._suppress_log(messagesLength - 1);
}
}
}
function _throwOrLog(from, e) {
if (throwFirstError) {
throw e;
} else {
var printArgs = ["Exception from Tracker " + from + " function:"];
if (e.stack && e.message && e.name) {
var idx = e.stack.indexOf(e.message);
if (idx < 0 || idx > e.name.length + 2) { // check for "Error: "
// message is not part of the stack
var message = e.name + ": " + e.message;
printArgs.push(message);
}
}
printArgs.push(e.stack);
_maybeSuppressMoreLogs(printArgs.length);
for (var i = 0; i < printArgs.length; i++) {
_debugFunc()(printArgs[i]);
}
}
}
// 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.
function withNoYieldsAllowed(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 = [];
function requireFlush() {
if (! willFlush) {
// We want this code to work without Meteor, see debugFunc above
if (typeof Meteor !== "undefined")
Meteor._setImmediate(Tracker._runFlush);
else
setTimeout(Tracker._runFlush, 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 = class Computation {
constructor(f, parent, onError) {
if (! constructingComputation)
throw new Error(
"Tracker.Computation constructor is private; use Tracker.autorun");
constructingComputation = false;
// http://docs.meteor.com/#computation_stopped
/**
* @summary True if this computation has been stopped.
* @locus Client
* @memberOf Tracker.Computation
* @instance
* @name stopped
*/
this.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}
*/
this.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}
*/
this.firstRun = true;
this._id = nextId++;
this._onInvalidateCallbacks = [];
this._onStopCallbacks = [];
// the plan is at some point to use the parent relation
// to constrain the order that computations are processed
this._parent = parent;
this._func = f;
this._onError = onError;
this._recomputing = false;
var errored = true;
try {
this._compute();
errored = false;
} finally {
this.firstRun = false;
if (errored)
this.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.
*/
onInvalidate(f) {
if (typeof f !== 'function')
throw new Error("onInvalidate requires a function");
if (this.invalidated) {
Tracker.nonreactive(() => {
withNoYieldsAllowed(f)(this);
});
} else {
this._onInvalidateCallbacks.push(f);
}
}
/**
* @summary Registers `callback` to run when this computation is stopped, or runs it immediately if the computation is already stopped. The callback is run after any `onInvalidate` callbacks.
* @locus Client
* @param {Function} callback Function to be called on stop. Receives one argument, the computation that was stopped.
*/
onStop(f) {
if (typeof f !== 'function')
throw new Error("onStop requires a function");
if (this.stopped) {
Tracker.nonreactive(() => {
withNoYieldsAllowed(f)(this);
});
} else {
this._onStopCallbacks.push(f);
}
}
// http://docs.meteor.com/#computation_invalidate
/**
* @summary Invalidates this computation so that it will be rerun.
* @locus Client
*/
invalidate() {
if (! this.invalidated) {
// if we're currently in _recompute(), don't enqueue
// ourselves, since we'll rerun immediately anyway.
if (! this._recomputing && ! this.stopped) {
requireFlush();
pendingComputations.push(this);
}
this.invalidated = true;
// callbacks can't add callbacks, because
// this.invalidated === true.
for(var i = 0, f; f = this._onInvalidateCallbacks[i]; i++) {
Tracker.nonreactive(() => {
withNoYieldsAllowed(f)(this);
});
}
this._onInvalidateCallbacks = [];
}
}
// http://docs.meteor.com/#computation_stop
/**
* @summary Prevents this computation from rerunning.
* @locus Client
*/
stop() {
if (! this.stopped) {
this.stopped = true;
this.invalidate();
for(var i = 0, f; f = this._onStopCallbacks[i]; i++) {
Tracker.nonreactive(() => {
withNoYieldsAllowed(f)(this);
});
}
this._onStopCallbacks = [];
}
}
_compute() {
this.invalidated = false;
var previous = Tracker.currentComputation;
setCurrentComputation(this);
var previousInCompute = inCompute;
inCompute = true;
try {
withNoYieldsAllowed(this._func)(this);
} finally {
setCurrentComputation(previous);
inCompute = previousInCompute;
}
}
_needsRecompute() {
return this.invalidated && ! this.stopped;
}
_recompute() {
this._recomputing = true;
try {
if (this._needsRecompute()) {
try {
this._compute();
} catch (e) {
if (this._onError) {
this._onError(e);
} else {
_throwOrLog("recompute", e);
}
}
}
} finally {
this._recomputing = false;
}
}
/**
* @summary Process the reactive updates for this computation immediately
* and ensure that the computation is rerun. The computation is rerun only
* if it is invalidated.
* @locus Client
*/
flush() {
if (this._recomputing)
return;
this._recompute();
}
/**
* @summary Causes the function inside this computation to run and
* synchronously process all reactive updtes.
* @locus Client
*/
run() {
this.invalidate();
this.flush();
}
};
//
// 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 = class Dependency {
constructor() {
this._dependentsById = Object.create(null);
}
// 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}
*/
depend(computation) {
if (! computation) {
if (! Tracker.active)
return false;
computation = Tracker.currentComputation;
}
var id = computation._id;
if (! (id in this._dependentsById)) {
this._dependentsById[id] = computation;
computation.onInvalidate(() => {
delete this._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
*/
changed() {
for (var id in this._dependentsById)
this._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}
*/
hasDependents() {
for (var id in this._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 (options) {
Tracker._runFlush({ finishSynchronously: true,
throwFirstError: options && options._throwFirstError });
};
/**
* @summary 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.
* @locus Client
* @returns {Boolean}
*/
Tracker.inFlush = function () {
return inFlush;
}
// Run all pending computations and afterFlush callbacks. If we were not called
// directly via Tracker.flush, this may return before they're all done to allow
// the event loop to run a little before continuing.
Tracker._runFlush = function (options) {
// 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 (Tracker.inFlush())
throw new Error("Can't call Tracker.flush while flushing");
if (inCompute)
throw new Error("Can't flush inside Tracker.autorun");
options = options || {};
inFlush = true;
willFlush = true;
throwFirstError = !! options.throwFirstError;
var recomputedCount = 0;
var finishedTry = false;
try {
while (pendingComputations.length ||
afterFlushCallbacks.length) {
// recompute all pending computations
while (pendingComputations.length) {
var comp = pendingComputations.shift();
comp._recompute();
if (comp._needsRecompute()) {
pendingComputations.unshift(comp);
}
if (! options.finishSynchronously && ++recomputedCount > 1000) {
finishedTry = true;
return;
}
}
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 due to throwFirstError being true.
inFlush = false; // needed before calling `Tracker.flush()` again
// finish flushing
Tracker._runFlush({
finishSynchronously: options.finishSynchronously,
throwFirstError: false
});
}
willFlush = false;
inFlush = false;
if (pendingComputations.length || afterFlushCallbacks.length) {
// We're yielding because we ran a bunch of computations and we aren't
// required to finish synchronously, so we'd like to give the event loop a
// chance. We should flush again soon.
if (options.finishSynchronously) {
throw new Error("still have more to do?"); // shouldn't happen
}
setTimeout(requireFlush, 10);
}
}
};
// 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.
/**
* @callback Tracker.ComputationFunction
* @param {Tracker.Computation}
*/
/**
* @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 {Tracker.ComputationFunction} runFunc The function to run. It receives
* one argument: the Computation object that will be returned.
* @param {Object} [options]
* @param {Function} options.onError Optional. The function to run when an error
* happens in the Computation. The only argument it receives is the Error
* thrown. Defaults to the error being logged to the console.
* @returns {Tracker.Computation}
*/
Tracker.autorun = function (f, options) {
if (typeof f !== 'function')
throw new Error('Tracker.autorun requires a function argument');
options = options || {};
constructingComputation = true;
var c = new Tracker.Computation(
f, Tracker.currentComputation, options.onError);
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();
};
// CHANGE FOR NPM:
export {Tracker, Deps};