Skip to content

Instantly share code, notes, and snippets.

@blikblum
Created February 3, 2020 22:55
Show Gist options
  • Save blikblum/28bb5f005d1034ac3b773231ea05a95c to your computer and use it in GitHub Desktop.
Save blikblum/28bb5f005d1034ac3b773231ea05a95c to your computer and use it in GitHub Desktop.
Markdium-From React to Web Components: using hooks
useEffect(() => {
const handleNewMessages = snap => {
// avoid updating messages when there are no changes
const changes = snap.docChanges()
if (changes.length) {
setMessages(snap.docs.map(doc => doc.data()))
}
}
const unsubscribe = chatRoomMessages.onSnapshot(handleNewMessages);
return unsubscribe;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment