Realtime Chat App in React Native and AWS (Backend 2) 🔴

  Рет қаралды 21,116

notJust․dev

notJust․dev

Күн бұрын

Пікірлер: 61
@notjustdev
@notjustdev 4 жыл бұрын
📚 Enroll in "The Full-stack Mobile Developer" course and become a 6-figure dev in 2023: academy.notjust.dev/
@VikramSingh-qg3nh
@VikramSingh-qg3nh 3 жыл бұрын
sombeody come get her.. :D nice singing
@briann1233
@briann1233 2 жыл бұрын
You can push messages to begining of array: setMessages(messages => ([newMessageFromSubscription, ...messages])) @ 1:30:52
@Zeedub
@Zeedub 3 жыл бұрын
@Vadim just stumbled upon your channel this past week and want to give you some major credit! Ive been a developer for well over 20+ years and your live coding content is some of the best training content I have come across on youtube. Well done sir! Greatly appreciate all your work and effort! Very organized and efficient and not to mention your IDE of choice is WebStorm just like myself 🔥Keep it up brother, I look forward to all your new content!
@notjustdev
@notjustdev 3 жыл бұрын
Hey @Zeedub, you made my day! Thanks for the kind words. This kind of messages make all the invested time and resources worth it and motivate me to never stop doing this. Thank you! 🙏
@endbringer121
@endbringer121 4 жыл бұрын
In the end, with the problem with useEffect, the thing that can make it work is to put [messages] in the dependence array of UseEffect.
@christophermarshall3702
@christophermarshall3702 4 жыл бұрын
Nailed it was going to comment but beat me to it ha.
@chillaf99
@chillaf99 4 жыл бұрын
I learned so much from these live streams, thank you!!!
@notjustdev
@notjustdev 4 жыл бұрын
awesome bro, thanks for joining
@lcd11001
@lcd11001 3 жыл бұрын
Hello, my graphql doesn't require not null for lastMessageID. I can use ID without exclamation mark (47:38). Is it belongs to AWS amplify api version?
@odoohub5010
@odoohub5010 3 жыл бұрын
Hi vadim, i appreciate your effort in training us, but i have a question for you. from 1:18:21 on the video (kzbin.info/www/bejne/i6LCp56Le9OlqdU). if we receive new notification about a new message, when any message is created, even when messages are created in a different room. Don't you think this may become a performance issue, when millions of people in different chatrooms are creating new messages? Dont you think that the millions of users will be receiving all the createdmessages that they dont need ,which needs to be ignored on their device, but can affect their device perfomance or slow the app on their devices? Is there no way to only subscribe for messages that belongs to a particular chatroom?
@lcd11001
@lcd11001 3 жыл бұрын
Can you delete multiple chat rooms with condition like : ID not equal "abc" ? (52:23)
@alirazzaq1541
@alirazzaq1541 3 жыл бұрын
Vadim, the problem in updating the messages.. You setted setMessage([newMessage, ..messages]). This is setting the state instead of updating it. The right way to update the state is setMessage(messages => [newMessage , ...messages]). Or may b setMessage(x => [newMessage , ...x]). Basically x it the prevwous state.
@notjustdev
@notjustdev 3 жыл бұрын
Yeah, that makes sense. Did you try it in this context?
@alirazzaq1541
@alirazzaq1541 3 жыл бұрын
And I forgot to tell you.. I love you man. You are the best.
@alirazzaq1541
@alirazzaq1541 3 жыл бұрын
@@notjustdev Yes.. It worked perfectly.
@notjustdev
@notjustdev 3 жыл бұрын
@@alirazzaq1541 How could I have missed it. Thanks man. Learning together.
@thomasbaidoo5418
@thomasbaidoo5418 3 жыл бұрын
Great channel. My brother and I are following you and improving our skills. Thank You man
@cyberpoint860
@cyberpoint860 2 жыл бұрын
Happy Teachers Day . I learned a lot from you
@shyamkirangarlapadu2282
@shyamkirangarlapadu2282 3 жыл бұрын
Excellent content. Keep going VADIM
@notjustdev
@notjustdev 3 жыл бұрын
Thank you 🙌
@rajpatel9406
@rajpatel9406 4 жыл бұрын
Hey at which time have you shown the demo of this project,like chatting between two mobiles
@notjustdev
@notjustdev 4 жыл бұрын
Somewhere at 1:44:30 I showed how I send messages from AWS (simulating another user) and receiving them realtime in the application
@LauraDiaz-sg7xu
@LauraDiaz-sg7xu 4 жыл бұрын
Vadim! Thank you so much for the tutorials! 👏
@notjustdev
@notjustdev 4 жыл бұрын
I am glad you liked it, Laura
@nickname______
@nickname______ 4 жыл бұрын
Thank you so much for the video 👍💪
@notjustdev
@notjustdev 4 жыл бұрын
Thanks for watching
@hafidjs2974
@hafidjs2974 3 жыл бұрын
Hello sir, i'm from Indonesia.. Thank you so much for the video!
@notjustdev
@notjustdev 3 жыл бұрын
My pleasure!
@richpo9814
@richpo9814 4 жыл бұрын
Just found this channel. Cool bro
@notjustdev
@notjustdev 4 жыл бұрын
Thanks 👍
@christophermarshall3702
@christophermarshall3702 4 жыл бұрын
@@notjustdev Thiago Lanza In the end, with the problem with useEffect, the thing that can make it work is to put [messages] in the dependence array of UseEffect.
@amanguptadev
@amanguptadev 4 жыл бұрын
Hello vadim can you suggest me how can i rearrange ChatListItem depend on last message.....
@explorerthaj1348
@explorerthaj1348 2 жыл бұрын
Hello Brother, thank you for this wonderful video. How can i get updated schema for graphql? older version doesn't support.
@sebastianwilliams8139
@sebastianwilliams8139 3 жыл бұрын
Great tutorial! Is there a way we can prevent creating multiple chatrooms with the same user? It looks like every time we click on the same user it is creating multiple chatrooms as well.
@shubhamsood589
@shubhamsood589 4 жыл бұрын
Hello sir. How to add video call functionality in this?
@amanguptadev
@amanguptadev 4 жыл бұрын
great content after watch this i am very excited to see more videos on your channel. I have a question that when we configure amplify we give aws IAM credentials. so where is credentials are saved and if in future i build my application then these are go with build or not please tell me.....
@Ibrahim-fh6kv
@Ibrahim-fh6kv 4 жыл бұрын
Can you please continue with Instagram clone.
@rob4fu17
@rob4fu17 3 жыл бұрын
Do the call functions work?
@benjaminbertagna3693
@benjaminbertagna3693 2 жыл бұрын
Hey @Vadim may I get some help ? When I implement subscription method with ".subscribe() " (1hour10min) I receive an error which is just "unknow". Even with a try catch I receive this error. I'm not able to fix taht, can you or someone help me ? Btw thanks for your tutorials, it's awesome !!!
@benjaminbertagna3693
@benjaminbertagna3693 2 жыл бұрын
I solved it
@bartoszbukowski6868
@bartoszbukowski6868 2 жыл бұрын
@@benjaminbertagna3693 how did you solve it? i have similar issue too and cannot get done with it...
@alaabashiyi3346
@alaabashiyi3346 4 жыл бұрын
Hello Vadim, while following your guide in the Chatroom subscrption, it works without the useEffect subscription function, it shows instantly on the other user. and when i add the subscription function it also works but it refreshes the chatroom screen, its a bit weird, what do you think ?
@alaabashiyi3346
@alaabashiyi3346 4 жыл бұрын
its fixed now. XD but thanks a lot i really love your tutorials and all your projects on my ToDolist
@notjustdev
@notjustdev 4 жыл бұрын
Awesome bro, keep building
@Nikitosss91
@Nikitosss91 3 жыл бұрын
Thats cool, but can you show how take apk file for android, and also how to deploy app to market
@notjustdev
@notjustdev 3 жыл бұрын
Thanks for the recomendation, I will definetly to a video about deploying in future
@devsmith948
@devsmith948 3 жыл бұрын
Thanks for your good video. I think it is really really good job
@notjustdev
@notjustdev 3 жыл бұрын
So nice of you
@richpo9814
@richpo9814 4 жыл бұрын
Is it possible or you to do a Snapchat clone? I just subscribed.
@sarcasticdna
@sarcasticdna 3 жыл бұрын
I found gold in this channel !
@notjustdev
@notjustdev 3 жыл бұрын
@promaxsolutions1751
@promaxsolutions1751 4 жыл бұрын
Hi vadim please make a tutorial for uber clone.. really appriciated
@notjustdev
@notjustdev 4 жыл бұрын
Thanks for suggestion
@ayodeleayoola9644
@ayodeleayoola9644 4 жыл бұрын
Can you do wechat clone pls?
@notjustdev
@notjustdev 4 жыл бұрын
Added to my list. Thanks for recomendations
@paulo.calazans
@paulo.calazans 4 жыл бұрын
🙌👏👏👏👏👏
@Shinichir0
@Shinichir0 3 жыл бұрын
Cool stuff!! Could you kindly put your face on the right side?
Build a Realtime Chat App in React Native (tutorial for beginners) 🔴
3:49:50
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН
Новый год 2025 на ТНТ "ComedyVision!" @ComedyClubRussia
1:16:27
Let's build WhatsApp with React Native and AWS Amplify [p2] 🔴
3:19:26
React Native just dropped a MASSIVE update
15:06
Mehul - Codedamn
Рет қаралды 71 М.
10 Essential React Native Tips Every Developer Must Know
12:07
Simon Grimm
Рет қаралды 20 М.
I Redesigned the ENTIRE YouTube UI from Scratch
19:10
Juxtopposed
Рет қаралды 940 М.
🔴  Build the Uber clone in React Native (Tutorial for Beginners)
3:43:51
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН