-
Notifications
You must be signed in to change notification settings - Fork 4
/
angularFire.js
239 lines (216 loc) · 6.4 KB
/
angularFire.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
"use strict";
angular.module("firebase", []).value("Firebase", Firebase);
// Implicit syncing. angularFire binds a model to $scope and keeps the dat
// synchronized with a Firebase location both ways.
// TODO: Optimize to use child events instead of whole "value".
angular.module("firebase").factory("angularFire", ["$q", "$parse", "$timeout",
function($q, $parse, $timeout) {
return function(ref, scope, name, ret) {
var af = new AngularFire($q, $parse, $timeout, ref);
return af.associate(scope, name, ret);
};
}
]);
function AngularFire($q, $parse, $timeout, ref) {
this._q = $q;
this._parse = $parse;
this._timeout = $timeout;
this._initial = true;
this._remoteValue = false;
if (typeof ref == "string") {
this._fRef = new Firebase(ref);
} else {
this._fRef = ref;
}
}
AngularFire.prototype = {
disassociate: function() {
var self = this;
if (self._unregister) {
self._unregister();
}
this._fRef.off("value");
},
associate: function($scope, name, ret) {
var self = this;
if (ret == undefined) {
ret = [];
}
var deferred = this._q.defer();
var promise = deferred.promise;
this._fRef.on("value", function(snap) {
var resolve = false;
if (deferred) {
resolve = deferred;
deferred = false;
}
self._remoteValue = ret;
if (snap && snap.val() != undefined) {
var val = snap.val();
if (typeof val != typeof ret) {
self._log("Error: type mismatch");
return;
}
// Also distinguish between objects and arrays.
var check = Object.prototype.toString;
if (check.call(ret) != check.call(val)) {
self._log("Error: type mismatch");
return;
}
self._remoteValue = angular.copy(val);
if (angular.equals(val, self._parse(name)($scope))) {
return;
}
}
self._timeout(function() {
self._resolve($scope, name, resolve, self._remoteValue)
});
});
return promise;
},
_log: function(msg) {
if (console && console.log) {
console.log(msg);
}
},
_resolve: function($scope, name, deferred, val) {
var self = this;
this._parse(name).assign($scope, angular.copy(val));
this._remoteValue = angular.copy(val);
if (deferred) {
deferred.resolve(function() {
self.disassociate();
});
this._watch($scope, name);
}
},
_watch: function($scope, name) {
// Watch for local changes.
var self = this;
self._unregister = $scope.$watch(name, function() {
if (self._initial) {
self._initial = false;
return;
}
var val = JSON.parse(angular.toJson(self._parse(name)($scope)));
if (angular.equals(val, self._remoteValue)) {
return;
}
self._fRef.ref().set(val);
}, true);
}
};
// Explicit syncing. Provides a collection object you can modify.
// Original code by @petebacondarwin, from:
// https://github.com/petebacondarwin/angular-firebase/blob/master/ng-firebase-collection.js
angular.module("firebase").factory("angularFireCollection", ["$timeout", function($timeout) {
function angularFireItem(ref, index) {
this.$ref = ref.ref();
this.$id = ref.name();
this.$index = index;
angular.extend(this, {priority:ref.getPriority()}, ref.val());
}
return function(collectionUrlOrRef, initialCb) {
var collection = [];
var indexes = {};
var collectionRef;
if (typeof collectionUrlOrRef == "string") {
collectionRef = new Firebase(collectionUrlOrRef);
} else {
collectionRef = collectionUrlOrRef;
}
function getIndex(prevId) {
return prevId ? indexes[prevId] + 1 : 0;
}
function addChild(index, item) {
indexes[item.$id] = index;
collection.splice(index, 0, item);
}
function removeChild(id) {
var index = indexes[id];
// Remove the item from the collection.
collection.splice(index, 1);
indexes[id] = undefined;
}
function updateChild (index, item) {
collection[index] = item;
}
function moveChild (from, to, item) {
collection.splice(from, 1);
collection.splice(to, 0, item);
updateIndexes(from, to);
}
function updateIndexes(from, to) {
var length = collection.length;
to = to || length;
if (to > length) {
to = length;
}
for (var index = from; index < to; index++) {
var item = collection[index];
item.$index = indexes[item.$id] = index;
}
}
if (initialCb && typeof initialCb == "function") {
collectionRef.once("value", initialCb);
}
collectionRef.on("child_added", function(data, prevId) {
$timeout(function() {
var index = getIndex(prevId);
addChild(index, new angularFireItem(data, index));
updateIndexes(index);
});
});
collectionRef.on("child_removed", function(data) {
$timeout(function() {
var id = data.name();
var pos = indexes[id];
removeChild(id);
updateIndexes(pos);
});
});
collectionRef.on("child_changed", function(data, prevId) {
$timeout(function() {
var index = indexes[data.name()];
var newIndex = getIndex(prevId);
var item = new angularFireItem(data, index);
updateChild(index, item);
if (newIndex !== index) {
moveChild(index, newIndex, item);
}
});
});
collectionRef.on("child_moved", function(ref, prevId) {
$timeout(function() {
var oldIndex = indexes[ref.name()];
var newIndex = getIndex(prevId);
var item = collection[oldIndex];
moveChild(oldIndex, newIndex, item);
});
});
collection.add = function(item, cb) {
var ref;
if (!cb) {
ref = collectionRef.ref().push(item);
} else {
ref = collectionRef.ref().push(item, cb);
}
return ref;
};
collection.remove = function(itemOrId) {
var item = angular.isString(itemOrId) ? collection[indexes[itemOrId]] : itemOrId;
item.$ref.remove();
};
collection.update = function(itemOrId) {
var item = angular.isString(itemOrId) ? collection[indexes[itemOrId]] : itemOrId;
var copy = {};
angular.forEach(item, function(value, key) {
if (key.indexOf("$") !== 0) {
copy[key] = value;
}
});
item.$ref.set(copy);
};
return collection;
};
}]);