fixed typo in rtdb get node and added auto setup for firestore and rtdb get

This commit is contained in:
Peter Svensson
2019-07-12 15:00:44 +02:00
parent 1e3cad7906
commit 2331c7d01e
5 changed files with 13 additions and 7 deletions

View File

@ -12,6 +12,13 @@ module.exports = function(RED) {
this.admin = c.admin
}
const setup = ()=>{
if(unsub){
unsub()
}
this.admin.firestore().doc(path).onSnapshot(cb)
}
const cb = (res)=>{
console.log('firestore get result '+res)
console.dir(res)
@ -23,14 +30,12 @@ module.exports = function(RED) {
node.on('input', function(msg) {
if(msg && msg.payload){
const path = msg.payload.path
if(unsub){
unsub()
}
this.admin.firestore().doc(path).onSnapshot(cb)
setup()
}
}.bind(this));
setup()
}
RED.nodes.registerType("firestore-get", FirebaseAdmin);