I have an array, I push doc data from firebase into that array and I want to display a table row for each doc. The problem is that the map method won’t do anything.
JavaScript
x
36
36
1
const [allScores,setAllScores] = useState([])
2
3
4
async function getAllScores(){
5
const q = query(collection(db, "allScores"), orderBy("score", "desc"));
6
const querySnapshot = await getDocs(q);
7
querySnapshot.forEach((doc) => {
8
// doc.data() is never undefined for query doc snapshots
9
/* allScores.push(doc.data()) */
10
allScores.push(doc.data())
11
})
12
}
13
useEffect(() => {
14
getAllScores()
15
}, [])
16
17
<table className="text-white text-center">
18
<tbody>
19
<tr>
20
<td className="px-[205px] text-xl">Place</td>
21
<td className="px-[205px] text-xl">User</td>
22
<td className="px-[205px] text-xl">Score</td>
23
<td className="px-[205px] text-xl">Scored at</td>
24
</tr>
25
{allScores.map(score => (
26
place = place + 1,
27
<tr>
28
<td className="px-[205px] text-xl w-auto">{place}</td>
29
<td className="px-[205px] text-xl w-auto">{score.playerName}</td>
30
<td className="px-[205px] text-xl w-auto">{score.score}</td>
31
{/* <td className="px-[210px] text-xl">{score.scoredAt}</td> */}
32
</tr>
33
))}
34
</tbody>
35
</table>
36
Advertisement
Answer
First of all, you need to update the state by setAllScores
JavaScript
1
10
10
1
async function getAllScores(){
2
const q = query(collection(db, "allScores"), orderBy("score", "desc"));
3
const querySnapshot = await getDocs(q);
4
querySnapshot.forEach((doc) => {
5
setAllScores(prev => {
6
return [prev, doc.data()]
7
}
8
})
9
}
10