Комментарии:
anyone can help me to get the full code !!
Ответитьtht scroll feaure mine is visible that thick ? why is it something related with the os
ОтветитьThanks a ton for this tutorial! Just finished coding, everything works perfectly. Have just one question - when you choose image file, looks like this only sends picture to chat locally in browser. Upload logic is implemented in "handleSend" which will be be returned immediately in case we don't have text non-empty. Is this kind of a bug you think?
ОтветитьYo! Finally finished this project!
Ответитьis it responsive?
ОтветитьThanks for the comprehensive tutorial
ОтветитьOMG I never completed this level of project till now but in 3 days I completed a large scalable application all credit goes to you 🙏🙏
ОтветитьHe didn't added the Calling functionality??
ОтветитьI want to deploy this on GitHub pages, how can I do that, please tell me how to do that....?
ОтветитьLots of info, but mediocre presentation: you rush through the concepts without explaining how stuff works, especially when it comes to the Firebase stuff.
ОтветитьFirebase storage is not free
Ответитьdoes this use react 17 or 18?
Ответитьis it possible to create this app using Next.js?
ОтветитьWhen I downloaded the source code it doesn't work and doesn't show anything in the website.
Ответитьafter i click on add user , the added user list does not appear on the left hand side of the chat app
here is the code, i need help please
import React, { useState } from "react";
import "./AddUser.css";
import { collection, getDocs, query, where } from "firebase/firestore";
import { db } from "../../../../lib/firebase";
const AddUser = () => {
const [user, setUser] = useState(null);
const handleSearch = async (e) => {
e.preventDefault();
const formData = new FormData(e.target);
const username = formData.get("username");
try {
const userRef = collection(db, "users");
const q = query(userRef, where("username", "==", username));
const querySnapShot = await getDocs(q);
if (!querySnapShot.empty) {
setUser(querySnapShot.docs[0].data());
}
} catch (error) {
console.log(error);
}
};
return (
<div className="adduser">
<form onSubmit={handleSearch}>
<input type="text" name="username" placeholder="username" />
<button>Search</button>
</form>
{user && (
<div className="user">
<div className="detail">
<img src={user.avatar || "./avatar.png"} alt="" />
<span>{user.username}</span>
</div>
<button>Add User</button>
</div>
)}
</div>
);
};
export default AddUser;
sorry i may be dumb but these are real people right
ОтветитьKindly provide the whole source code in the GitHub.
Ответитьcannot use firebasestorage now its need payment any otherway?
Ответитьwhen i go to setup firebase storage, get started option was there upgrade will be shown.
Ответитьall the snippets work except for compt and comp. Am i missing an extension in vs code?
ОтветитьCould someone tell me what to do with that firebase storage since its requiring upgrade to use is there any alternative
Ответитьat run npm dev what should i write at dev
ОтветитьDo you have chat app in react using mysql without firebase bcz its paid
ОтветитьPowerful, well explained. You're a great teacher sir.
Ответитьi accidentally deleted mu users collection is ther any way to make database function as before and can i progress in project with this problem
Ответитьthe best layout i have seen sofar !!!
Ответитьdoes this app have a server or not?
Ответитьdid that camera video call and voice call works?
Ответитьtimeago.js file are not present in github
please update the github
Hi, when i perform add user action, it shows me this error "TypeError: n.indexOf is not a function" and chats does not update. please help me out. i am hustling with this one for past couple of days @LamaDev
Ответить39.09
Ответитьis anyone else having probems adding credit card for GCP? The Firebase storage is only available on the blaze plan and trying to upgrade but i keep getting an error " This action couldn’t be completed. [OR_BACR2_44]" . Even with using multiple cards. This seems to be an ongoing issue for everyone. Let me know if anyone has solved this issue
Ответитьwhen your to do list project is actually useful when doing some project like social media, e commerce, wow thank you
Ответитьi need some help in firebase storage part
anyonee????????
Awesome project!
But there is one problem, we can add the same user multiple times!
Do some validation
const userchatref1 = doc(db, "userchats", user.id)
const docSnap = await getDoc(userchatref1)
const chats = docSnap.data().chats.filter((item) => item.receiverId === currentUserId)
If(chats.length >=1) return toast.error("User is already added")
And
Firebase storage is not free. So you can convert the image into base64 and save it in the database.
When i am trying to connect my Firebase Storage , it shows me to upgrade my account what should i do ?
Ответитьcan you add group chat as well
Ответитьwhat the hell with source code ? No code found lol
ОтветитьPlease where is the full source code
Ответитьguys, is it me or did firebase free storage get cancelled? it always tells me to upgrade plan
ОтветитьFirebase storage is not more free ? What to do?😢
ОтветитьIn this time I use firebase it will ask upgrade a project plan what can I do .. and How to get the storage for free
Ответитьyou are so cute when you say "just like that", anyways, this was very helpful! thanks!
Ответитьcause I have an error I disliked it. the error is in firebase. If you write more react and when you finish it then write firebase it might be better, I stuck in the middle so dislike
Ответитьyou did not upload your backend
ОтветитьCan we chat with others from other devices in real time ?
Ответить