forked from Raynos/mercury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobserv-backbone.js
69 lines (57 loc) · 1.72 KB
/
observ-backbone.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
'use strict';
/* This is a reference implementation of how to recursively
observ a Backbone.Model.
A proper implementation is going to need a bunch of
performance optimizations
*/
module.exports = toObserv;
// given some model returns an observable of the model state
function toObserv(model) {
// return an obect
return function observ(listener) {
// observ() with no args must return state
if (!listener) {
return serialize(model);
}
// observ(listener) should notify the listener on
// every change
listen(model, function serializeModel() {
listener(serialize(model));
});
};
}
// convert a Backbone model to JSON
function serialize(model) {
var data = model.toJSON();
Object.keys(data).forEach(function serializeRecur(key) {
var value = data[key];
// if any value can be serialized toJSON() then do it
if (value && value.toJSON) {
data[key] = data[key].toJSON();
}
});
return data;
}
// listen to a Backbone model
function listen(model, listener) {
model.on('change', listener);
model.values().forEach(function listenRecur(value) {
var isCollection = value && value._byId;
if (!isCollection) {
return;
}
// for each collection listen to it
// console.log('listenCollection')
listenCollection(value, listener);
});
}
// listen to a Backbone collection
function listenCollection(collection, listener) {
collection.forEach(function listenModel(model) {
listen(model, listener);
});
collection.on('add', function onAdd(model) {
listen(model, listener);
listener();
});
}