The way you wrote the code for a set or created a reaction to a specific video is wrong.
const usersRef = db.collection(documentFirebase).doc(video_id);As you can say above line will give you the proper reference to database path.
const userDoc = await usersRef.get();
Now when you using async/await you should put the retrieved data in a variable to read that later, async/await does not support .then()
if (userDoc.data() === undefined) {
usersRef.set({
reaction_love: 0,
reaction_laugh: 0,
reaction_cry: 0
});
}
Apps.disPlayNumberAtHome(doc.data());
This will help you to get the data and show it to the screen.
For further details about
async/await, If you still facing an issue, ping me. Thanks