forked from vuejs/vuefire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvuefire.js
289 lines (263 loc) · 6.81 KB
/
vuefire.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
var Vue // late binding
/**
* Returns the key of a Firebase snapshot across SDK versions.
*
* @param {FirebaseSnapshot} snapshot
* @return {string|null}
*/
function _getKey (snapshot) {
return typeof snapshot.key === 'function'
? snapshot.key()
: snapshot.key
}
/**
* Returns the original reference of a Firebase reference or query across SDK versions.
*
* @param {FirebaseReference|FirebaseQuery} refOrQuery
* @return {FirebaseReference}
*/
function _getRef (refOrQuery) {
if (typeof refOrQuery.ref === 'function') {
refOrQuery = refOrQuery.ref()
} else if (typeof refOrQuery.ref === 'object') {
refOrQuery = refOrQuery.ref
}
return refOrQuery
}
/**
* Check if a value is an object.
*
* @param {*} val
* @return {boolean}
*/
function isObject (val) {
return Object.prototype.toString.call(val) === '[object Object]'
}
/**
* Convert firebase snapshot into a bindable data record.
*
* @param {FirebaseSnapshot} snapshot
* @return {Object}
*/
function createRecord (snapshot) {
var value = snapshot.val()
var res = isObject(value)
? value
: { '.value': value }
res['.key'] = _getKey(snapshot)
return res
}
/**
* Find the index for an object with given key.
*
* @param {array} array
* @param {string} key
* @return {number}
*/
function indexForKey (array, key) {
for (var i = 0; i < array.length; i++) {
if (array[i]['.key'] === key) {
return i
}
}
/* istanbul ignore next */
return -1
}
/**
* Bind a firebase data source to a key on a vm.
*
* @param {Vue} vm
* @param {string} key
* @param {object} source
*/
function bind (vm, key, source) {
var asObject = false
var cancelCallback = null
var readyCallback = null
// check { source, asArray, cancelCallback } syntax
if (isObject(source) && source.hasOwnProperty('source')) {
asObject = source.asObject
cancelCallback = source.cancelCallback
readyCallback = source.readyCallback
source = source.source
}
if (!isObject(source)) {
throw new Error('VueFire: invalid Firebase binding source.')
}
var ref = _getRef(source)
vm.$firebaseRefs[key] = ref
vm._firebaseSources[key] = source
// bind based on initial value type
if (asObject) {
bindAsObject(vm, key, source, cancelCallback)
} else {
bindAsArray(vm, key, source, cancelCallback)
}
if (readyCallback) {
source.once('value', readyCallback.bind(vm))
}
}
/**
* Define a reactive property in a given vm if it's not defined
* yet
*
* @param {Vue} vm
* @param {string} key
* @param {*} val
*/
function defineReactive (vm, key, val) {
if (key in vm) {
vm[key] = val
} else {
Vue.util.defineReactive(vm, key, val)
}
}
/**
* Bind a firebase data source to a key on a vm as an Array.
*
* @param {Vue} vm
* @param {string} key
* @param {object} source
* @param {function|null} cancelCallback
*/
function bindAsArray (vm, key, source, cancelCallback) {
var array = []
defineReactive(vm, key, array)
var onAdd = source.on('child_added', function (snapshot, prevKey) {
var index = prevKey ? indexForKey(array, prevKey) + 1 : 0
array.splice(index, 0, createRecord(snapshot))
}, cancelCallback)
var onRemove = source.on('child_removed', function (snapshot) {
var index = indexForKey(array, _getKey(snapshot))
array.splice(index, 1)
}, cancelCallback)
var onChange = source.on('child_changed', function (snapshot) {
var index = indexForKey(array, _getKey(snapshot))
array.splice(index, 1, createRecord(snapshot))
}, cancelCallback)
var onMove = source.on('child_moved', function (snapshot, prevKey) {
var index = indexForKey(array, _getKey(snapshot))
var record = array.splice(index, 1)[0]
var newIndex = prevKey ? indexForKey(array, prevKey) + 1 : 0
array.splice(newIndex, 0, record)
}, cancelCallback)
vm._firebaseListeners[key] = {
child_added: onAdd,
child_removed: onRemove,
child_changed: onChange,
child_moved: onMove
}
}
/**
* Bind a firebase data source to a key on a vm as an Object.
*
* @param {Vue} vm
* @param {string} key
* @param {Object} source
* @param {function|null} cancelCallback
*/
function bindAsObject (vm, key, source, cancelCallback) {
defineReactive(vm, key, {})
var cb = source.on('value', function (snapshot) {
vm[key] = createRecord(snapshot)
}, cancelCallback)
vm._firebaseListeners[key] = { value: cb }
}
/**
* Unbind a firebase-bound key from a vm.
*
* @param {Vue} vm
* @param {string} key
*/
function unbind (vm, key) {
var source = vm._firebaseSources && vm._firebaseSources[key]
if (!source) {
throw new Error(
'VueFire: unbind failed: "' + key + '" is not bound to ' +
'a Firebase reference.'
)
}
var listeners = vm._firebaseListeners[key]
for (var event in listeners) {
source.off(event, listeners[event])
}
vm[key] = null
vm.$firebaseRefs[key] = null
vm._firebaseSources[key] = null
vm._firebaseListeners[key] = null
}
/**
* Ensure the related bookkeeping variables on an instance.
*
* @param {Vue} vm
*/
function ensureRefs (vm) {
if (!vm.$firebaseRefs) {
vm.$firebaseRefs = Object.create(null)
vm._firebaseSources = Object.create(null)
vm._firebaseListeners = Object.create(null)
}
}
var init = function () {
var bindings = this.$options.firebase
if (typeof bindings === 'function') bindings = bindings.call(this)
if (!bindings) return
ensureRefs(this)
for (var key in bindings) {
bind(this, key, bindings[key])
}
}
var VueFireMixin = {
created: init, // 1.x and 2.x
beforeDestroy: function () {
if (!this.$firebaseRefs) return
for (var key in this.$firebaseRefs) {
if (this.$firebaseRefs[key]) {
this.$unbind(key)
}
}
this.$firebaseRefs = null
this._firebaseSources = null
this._firebaseListeners = null
}
}
/**
* Install function passed to Vue.use() in manual installation.
*
* @param {function} _Vue
*/
function install (_Vue) {
Vue = _Vue
Vue.mixin(VueFireMixin)
// use object-based merge strategy
// TODO This makes impossible to merge functions
var mergeStrats = Vue.config.optionMergeStrategies
mergeStrats.firebase = mergeStrats.methods
// extend instance methods
Vue.prototype.$bindAsObject = function (key, source, cancelCallback, readyCallback) {
ensureRefs(this)
bind(this, key, {
source: source,
asObject: true,
cancelCallback: cancelCallback,
readyCallback: readyCallback
})
}
Vue.prototype.$bindAsArray = function (key, source, cancelCallback, readyCallback) {
ensureRefs(this)
bind(this, key, {
source: source,
cancelCallback: cancelCallback,
readyCallback: readyCallback
})
}
Vue.prototype.$unbind = function (key) {
unbind(this, key)
}
}
// auto install
/* istanbul ignore if */
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue)
}
module.exports = install