-
-
Notifications
You must be signed in to change notification settings - Fork 680
Open
Description
Unhandled Rejection (FirebaseError): Function addDoc() called with invalid data. Unsupported field value: undefined (found in field uid in document messages/fD7NB3iC5mSIaqZhvzSY)
I already did:
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if true;
}
}
}
for fire store:
import React, { useRef, useState } from 'react';
import './App.css';
import firebase from 'firebase/app';
import 'firebase/firestore';
import 'firebase/auth';
import 'firebase/analytics';
import { useAuthState } from 'react-firebase-hooks/auth';
import { useCollectionData } from 'react-firebase-hooks/firestore';
const auth = firebase.auth();
const firestore = firebase.firestore();
function App() {
const [user] = useAuthState(auth);
return (
<div className="App">
<header>
<h1>💬💬💬</h1>
<SignOut />
</header>
<section>
{user ? <ChatRoom /> : <SignIn/>}
</section>
</div>
);
}
function SignIn() {
const signInWithGoogle = () => {
const provider = new firebase.auth.GoogleAuthProvider();
auth.signInWithPopup(provider);
}
return (
<button onClick={signInWithGoogle}>Sign in with Google</button>
)
}
function SignOut() {
return auth.currentUser && (
<button onClick={() => auth.signOut()}>Sign Out</button>
)
}
function ChatRoom() {
const dummy= useRef();
const messagesRef = firestore.collection('messages');
const query = messagesRef.orderBy('createdAt').limit(25);
const [messages] = useCollectionData(query, {idField: 'id'});
const [formValue, setFormValue] = useState('');
const sendMessage = async(e) =>{
e.preventDefault();
const {uid,photoURL}= auth.updateCurrentUser;
await messagesRef.add({
text: formValue,
createdAt: firebase.firestore.FieldValue.serverTimestamp(),
uid,
photoURL
});
setFormValue('');
dummy.current.scrollIntoView({ behavior: 'smooth' });
}
return (
<>
<main>
{messages&& messages.map(msg => <ChatMessage key={msg.id} />)}
<span ref={dummy}></span>
</main>
<form onSubmit={sendMessage}>
<input value={formValue} onChange={(e) => setFormValue(e.target.value)} placeholder="say something nice" />
<button type="submit" disabled={!formValue}>🎯</button>
</form>
</>
)
}
function ChatMessage(props) {
const {text, uid, photoURL}= props.message;
const messageClass= uid === auth.currentUser.uid ? 'sent' : 'received';
return (<>
<div classname={`messages ${messageClass}`}>
<img src={photoURL || 'https://api.adorable.io/avatars/23/[email protected]'} alt="" />
<p>{text}</p>
</div>
</>
)
}
export default App;
I read App.js in source code over and I can't seem to find the field that is returning empty.
Metadata
Metadata
Assignees
Labels
No labels