我想在我的Webapp中处理在线和离线状态。
这样用户可以看到谁在线和谁不在。
我发现这个很棒的教程很好地解释了它,但是我被困住了。
https://blog.campvanilla.com/firebase-firestore-guide-how-to-user-presence-online-offline-basics-66dc27f67802
我觉得cloud-functions
有问题,因为我在那里出错了。
此外,该教程是从2017年12月15日开始的,我知道cloud-functions
已更新,但我不知道如何更新代码。
链接到文档:https://firebase.google.com/docs/functions/beta-v1-diff
有人可以看一下本教程吗,也许可以帮助我吗?
云功能:
const functions = require('firebase-functions');
const Firestore = require('@google-cloud/firestore');
const firestore = new Firestore();
exports.onUserStatusChanged = functions.database
.ref('/status/{userId}') // Reference to the Firebase RealTime database key
.onUpdate((event, context) => {
const usersRef = firestore.collection('/users'); // Create a reference to
the Firestore Collection
return event.before.ref.once('value')
.then(statusSnapshot => snapShot.val()) // Get latest value from the Firebase Realtime database
.then(status => {
// check if the value is 'offline'
if (status === 'offline') {
// Set the Firestore's document's online value to false
usersRef
.doc(event.params.userId)
.set({
online: false
}, {
merge: true
});
}
return
})
});
最佳答案
我将发布完整功能的代码,以帮助那些像我一样坚持使用它的人。
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
const firestore = functions.firestore;
exports.onUserStatusChange = functions.database
.ref('/status/{userId}')
.onUpdate((event, context) => {
var db = admin.firestore();
var fieldValue = require("firebase-admin").firestore.FieldValue;
const usersRef = db.collection("users");
var snapShot = event.after;
return event.after.ref.once('value')
.then(statusSnap => snapShot.val())
.then(status => {
if (status === 'offline'){
usersRef
.doc(context.params.userId)
.set({
online: false
}, {merge: true});
}
return null;
})
});
关于javascript - 在Firebase中处理用户的在线和离线状态,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51768240/