環境
React(create react app)
Firebase
表示使っているモジュール
import { useCollectionData } from 'react-firebase-hooks/firestore';
問題
firestore(firebaseクラウドデータベース)の記事をReactで表示させたいのですが、
TypeError: Cannot read property 'map' of undefined
というエラーが出てうまく表示できません。
不明な現象
一度、mapしている部分をコメントアウトしてから、コメントアウト外すと表示されます。
しかし自分でリロードかけると同じエラーになってしまいます。
この現象はどうすれば解消できるのでしょうか?
詳しい方ご教示お願いします。
jsx
1import { useState } from 'react'; 2import firebase, { storage, db } from '../../Firebase'; 3import { useForm } from 'react-hook-form'; 4import { useCollectionData } from 'react-firebase-hooks/firestore'; 5 6const Upload = () => { 7 const { register, handleSubmit, errors } = useForm(); 8 const user = firebase.auth().currentUser; 9 let authId; 10 let email; 11 let name; 12 let photoURL; 13 14 if (user != null) { 15 user.providerData.forEach(() => { 16 authId = user.uid; 17 email = user.email; 18 name = user.displayName; 19 photoURL = user.photoURL; 20 }); 21 } 22 23 // Render 24 const [ list ] = useCollectionData(db.collection('posts').orderBy('createdAt', 'desc'), { idField: 'docId' }); 25 console.log(list); 26 27 return ( 28 <> 29 {list.map(item => ( 30 <div key={item.docId + String(new Date())}> 31 {authId === item.authId ? ( 32 <> 33 {item.name ? ( 34 <div>{item.name}</div> 35 ) : ( 36 <div>ゲストユーザー</div> 37 )} 38 <div> 39 <div>{item.msg}</div> 40 </div> 41 {item.photoURL ? ( 42 <img src={ item.photoURL } alt="User" /> 43 ) : ( 44 <div>no image</div> 45 )} 46 </> 47 ) : ( 48 <> 49 <div> 50 {item.photoURL ? ( 51 <img src={ item.photoURL } alt="User" /> 52 ) : ( 53 <div>no image</div> 54 )} 55 <div> 56 {item.name ? ( 57 <div>{item.name}</div> 58 ) : ( 59 <div>ゲストユーザー</div> 60 )} 61 <div> 62 <div>{item.msg}</div> 63 </div> 64 </div> 65 </div> 66 </> 67 )} 68 </div> 69 ))} 70 </> 71 ); 72} 73 74export default Upload;
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。