Skip to content

Commit 9438672

Browse files
committed
Add deliver() and discardChanges() methods to Stateful.
Previously they were just in Invalidating. The new methods call deliver() and discardChanges() on every listener registered via Stateful#observe(). Invalidating has a minor behavior change: deliver() and discardChanges() now affect every listener registered via observe(), not just the two listeners registered by Invalidating itself. Fixes #42.
1 parent 7256144 commit 9438672

File tree

3 files changed

+64
-23
lines changed

3 files changed

+64
-23
lines changed

Invalidating.js

-19
Original file line numberDiff line numberDiff line change
@@ -51,25 +51,6 @@ define([
5151
return this._hComputing;
5252
},
5353

54-
/**
55-
* Synchronously deliver change records for computed properties and then UI rendering
56-
* so that `refreshingRendering()` is called if there are pending change records.
57-
*/
58-
deliver: function () {
59-
this._hComputing && this._hComputing.deliver();
60-
this._hRendering && this._hRendering.deliver();
61-
return this._hComputing;
62-
},
63-
64-
/**
65-
* Discard change records.
66-
*/
67-
discardChanges: function () {
68-
this._hComputing && this._hComputing.discardChanges();
69-
this._hRendering && this._hRendering.discardChanges();
70-
return this._hComputing;
71-
},
72-
7354
/**
7455
* Callback function to calculate computed properties upon property changes.
7556
* @param {Object} newValues The hash table of new property values, keyed by property names.

Stateful.js

+34-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
/** @module decor/Stateful */
22
define([
3+
"dcl/advise",
34
"dcl/dcl",
45
"./features",
56
"./Observable"
6-
], function (dcl, has, Observable) {
7+
], function (advise, dcl, has, Observable) {
78
var apn = {};
89

910
/**
@@ -215,6 +216,15 @@ define([
215216
}, this);
216217
},
217218

219+
/**
220+
* Get list of properties that Stateful#observe() should observe.
221+
* @returns {string[]} list of properties
222+
* @protected
223+
*/
224+
getPropsToObserve: function () {
225+
return this.constructor._props;
226+
},
227+
218228
/**
219229
* Observes for change in properties.
220230
* Callback is called at the end of micro-task of changes with a hash table of
@@ -246,9 +256,31 @@ define([
246256
* stateful.baz = 10;
247257
*/
248258
observe: function (callback) {
249-
var h = new Stateful.PropertyListObserver(this, this.constructor._props);
259+
// create new listener
260+
var h = new Stateful.PropertyListObserver(this, this.getPropsToObserve());
250261
h.open(callback, this);
262+
263+
// make this.deliver() and this.discardComputing() call deliver() and discardComputing() on new listener
264+
var a1 = advise.after(this, "deliver", h.deliver.bind(h)),
265+
a2 = advise.after(this, "discardChanges", h.discardChanges.bind(h));
266+
advise.before(h, "close", function () {
267+
a1.unadvise();
268+
a2.unadvise();
269+
});
270+
251271
return h;
272+
},
273+
274+
/**
275+
* Synchronously deliver change records to all listeners registered via `observe()`.
276+
*/
277+
deliver: function () {
278+
},
279+
280+
/**
281+
* Discard change records for all listeners registered via `observe()`.
282+
*/
283+
discardChanges: function () {
252284
}
253285
});
254286

tests/unit/Stateful.js

+30-2
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,35 @@ define([
358358
hObserve.deliver();
359359
assert.deepEqual(changes, [{foo: "Foo1"}]);
360360
},
361+
"Stateful#deliver(), Stateful#discardChanges()": function () {
362+
var stateful = new (dcl(Stateful, {
363+
foo: undefined,
364+
bar: undefined
365+
}))({
366+
foo: "Foo0",
367+
bar: "Bar0"
368+
});
369+
var log = "";
370+
stateful.observe(function () {
371+
log += "first";
372+
});
373+
stateful.observe(function () {
374+
log += ", second";
375+
});
376+
stateful.foo = "Foo1";
377+
stateful.bar = "Bar1";
378+
stateful.deliver();
379+
assert.strictEqual(log, "first, second", "deliver()");
380+
381+
log = "";
382+
stateful.foo = "Foo2";
383+
stateful.bar = "Bar2";
384+
stateful.discardChanges();
385+
stateful.deliver();
386+
setTimeout(this.async().callback(function () {
387+
assert.strictEqual(log, "", "discardChanges()");
388+
}), 10);
389+
},
361390
"observe filter": function () {
362391
// Check to make sure reported changes are consistent between platforms with and without Object.observe()
363392
// native support
@@ -386,7 +415,6 @@ define([
386415
stateful.foo = 22;
387416
stateful.anotherFunc = function () { };
388417
stateful.instanceProp = 33;
389-
},
390-
418+
}
391419
});
392420
});

0 commit comments

Comments
 (0)