React Chat App Full Tutorial 2024 | Realtime Chat Application Project with Firebase

React Chat App Full Tutorial 2024 | Realtime Chat Application Project with Firebase

Lama Dev

11 месяцев назад

354,366 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@Rahulbabu-hh6dx
@Rahulbabu-hh6dx - 16.10.2024 22:15

anyone can help me to get the full code !!

Ответить
@Rahulbabu-hh6dx
@Rahulbabu-hh6dx - 17.10.2024 10:39

tht scroll feaure mine is visible that thick ? why is it something related with the os

Ответить
@dmytrot5238
@dmytrot5238 - 17.10.2024 21:07

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?

Ответить
@gireeswar18
@gireeswar18 - 20.10.2024 16:24

Yo! Finally finished this project!

Ответить
@TheProgrammizz
@TheProgrammizz - 22.10.2024 13:50

is it responsive?

Ответить
@FaselGodbcho-e7w
@FaselGodbcho-e7w - 23.10.2024 08:06

Thanks for the comprehensive tutorial

Ответить
@sharmastyles2749
@sharmastyles2749 - 26.10.2024 11:36

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 🙏🙏

Ответить
@PranavSharma44
@PranavSharma44 - 26.10.2024 21:13

He didn't added the Calling functionality??

Ответить
@PranavSharma44
@PranavSharma44 - 27.10.2024 14:01

I want to deploy this on GitHub pages, how can I do that, please tell me how to do that....?

Ответить
@tradermann
@tradermann - 30.10.2024 17:19

Lots of info, but mediocre presentation: you rush through the concepts without explaining how stuff works, especially when it comes to the Firebase stuff.

Ответить
@newsbollywood5589
@newsbollywood5589 - 01.11.2024 08:40

Firebase storage is not free

Ответить
@glennbraggs4643
@glennbraggs4643 - 01.11.2024 08:53

does this use react 17 or 18?

Ответить
@ulugbekatakhanov1431
@ulugbekatakhanov1431 - 02.11.2024 09:36

is it possible to create this app using Next.js?

Ответить
@subhanullahadelyar
@subhanullahadelyar - 05.11.2024 04:43

When I downloaded the source code it doesn't work and doesn't show anything in the website.

Ответить
@umarhayatudeen2307
@umarhayatudeen2307 - 08.11.2024 17:36

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;

Ответить
@HaloRupture_Dev-Team
@HaloRupture_Dev-Team - 08.11.2024 21:05

sorry i may be dumb but these are real people right

Ответить
@ShivamKumarSah-q4r
@ShivamKumarSah-q4r - 10.11.2024 20:23

Kindly provide the whole source code in the GitHub.

Ответить
@aravindr4630
@aravindr4630 - 17.11.2024 21:08

cannot use firebasestorage now its need payment any otherway?

Ответить
@ClashGamer-u8p
@ClashGamer-u8p - 18.11.2024 06:38

when i go to setup firebase storage, get started option was there upgrade will be shown.

Ответить
@moarghostnstuff
@moarghostnstuff - 18.11.2024 12:31

all the snippets work except for compt and comp. Am i missing an extension in vs code?

Ответить
@sundar263
@sundar263 - 28.11.2024 08:33

Could someone tell me what to do with that firebase storage since its requiring upgrade to use is there any alternative

Ответить
@SatyakalpanaM
@SatyakalpanaM - 28.11.2024 09:17

at run npm dev what should i write at dev

Ответить
@truptihankare3404
@truptihankare3404 - 28.11.2024 12:45

Do you have chat app in react using mysql without firebase bcz its paid

Ответить
@agikedwin8589
@agikedwin8589 - 28.11.2024 21:22

Powerful, well explained. You're a great teacher sir.

Ответить
@tusharjha7017
@tusharjha7017 - 29.11.2024 14:16

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

Ответить
@avenolchits-o7l
@avenolchits-o7l - 01.12.2024 17:22

the best layout i have seen sofar !!!

Ответить
@Бендик667
@Бендик667 - 02.12.2024 20:35

does this app have a server or not?

Ответить
@aryanchauhan08
@aryanchauhan08 - 08.12.2024 17:27

did that camera video call and voice call works?

Ответить
@Technirva
@Technirva - 10.12.2024 14:21

timeago.js file are not present in github
please update the github

Ответить
@BeatBounceMusic007
@BeatBounceMusic007 - 14.12.2024 07:31

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

Ответить
@nana-p7q7u
@nana-p7q7u - 16.12.2024 07:54

39.09

Ответить
@frapposama8188
@frapposama8188 - 04.01.2025 02:27

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

Ответить
@Wtfeeeeeec
@Wtfeeeeeec - 08.01.2025 07:26

when your to do list project is actually useful when doing some project like social media, e commerce, wow thank you

Ответить
@regiouswithme
@regiouswithme - 09.01.2025 10:09

i need some help in firebase storage part
anyonee????????

Ответить
@dravidjones8447
@dravidjones8447 - 13.01.2025 13:31

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.

Ответить
@RanjeetKumar-n5y6v
@RanjeetKumar-n5y6v - 13.01.2025 22:20

When i am trying to connect my Firebase Storage , it shows me to upgrade my account what should i do ?

Ответить
@nallaganchuraviteja5828
@nallaganchuraviteja5828 - 16.01.2025 09:39

can you add group chat as well

Ответить
@Mir0nHasen
@Mir0nHasen - 20.01.2025 08:59

what the hell with source code ? No code found lol

Ответить
@nanakwakubantion1583
@nanakwakubantion1583 - 22.01.2025 07:08

Please where is the full source code

Ответить
@YOWAIMU-w2e
@YOWAIMU-w2e - 29.01.2025 23:59

guys, is it me or did firebase free storage get cancelled? it always tells me to upgrade plan

Ответить
@dennisferno4666
@dennisferno4666 - 02.02.2025 02:20

Firebase storage is not more free ? What to do?😢

Ответить
@digeeshdigeesh1915
@digeeshdigeesh1915 - 02.02.2025 14:53

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

Ответить
@miraculer_2.0
@miraculer_2.0 - 03.02.2025 20:42

you are so cute when you say "just like that", anyways, this was very helpful! thanks!

Ответить
@recalcitrate1688
@recalcitrate1688 - 07.02.2025 21:29

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

Ответить
@ankitgupta9154
@ankitgupta9154 - 15.02.2025 08:05

you did not upload your backend

Ответить
@AdithyaDVDM
@AdithyaDVDM - 19.02.2025 05:40

Can we chat with others from other devices in real time ?

Ответить