Created
July 28, 2017 10:38
-
-
Save deltaepsilon/33fbb14eb30ae246be331493678a148a to your computer and use it in GitHub Desktop.
A Polymer 2.0 mixin to watch a bunch of Firebase refs. Returns an observable.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof window.FirebaseMixin == 'undefined') { | |
window.FirebaseMixin = superclass => { | |
if (!superclass) { | |
superclass = class Superclass {}; | |
} | |
return class extends superclass { | |
constructor() { | |
super(); | |
this.__firebaseMixinInit(); | |
} | |
__firebaseMixinInit() { | |
this.__modelsToLoad = 0; | |
this.__watchSubjects = []; | |
} | |
noop() {} | |
watchModel({ ref, property }) { | |
const model = this; | |
const subject = new Rx.Subject(); | |
const handler = ref.on('value', snap => { | |
this[property] = snap.val(); | |
subject.next({ model: this, property }); | |
}); | |
const subscription = subject.filter(res => !res.ready).subscribe(res => { | |
this.__modelsToLoad--; | |
if (this.__modelsToLoad == 0) { | |
subscription.unsubscribe(); | |
setTimeout(() => { | |
subject.next({ model, ready: true }); | |
}); | |
} | |
}); | |
subject.subscribe(this.noop, this.noop, () => ref.off('value', handler)); | |
this.__modelsToLoad++; | |
this.__watchSubjects.push(subject); | |
return subject; | |
} | |
unwatchModels() { | |
this.__watchSubjects.forEach(subject => subject.complete()); | |
this.__firebaseMixinInit(); | |
} | |
toArray(obj) { | |
const result = []; | |
for (let key in obj) { | |
let value = obj[key]; | |
value.__key = key; | |
result.push(value); | |
} | |
return result; | |
} | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment