@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!
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! 🙏
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 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.
Hi vadim, i appreciate your effort in training us, but i have a question for you. from 1:18:21 on the video (ua-cam.com/video/Uq_vkUFnrss/v-deo.html). 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?
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.....
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.
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 ?
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 !!!
@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!
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! 🙏
Great channel. My brother and I are following you and improving our skills. Thank You man
I learned so much from these live streams, thank you!!!
awesome bro, thanks for joining
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.
Nailed it was going to comment but beat me to it ha.
📚 Enroll in "The Full-stack Mobile Developer" course and become a 6-figure dev in 2023: academy.notjust.dev/
sombeody come get her.. :D nice singing
Vadim! Thank you so much for the tutorials! 👏
I am glad you liked it, Laura
You can push messages to begining of array: setMessages(messages => ([newMessageFromSubscription, ...messages])) @ 1:30:52
Hello sir, i'm from Indonesia..
Thank you so much for the video!
My pleasure!
Happy Teachers Day . I learned a lot from you
Excellent content. Keep going VADIM
Thank you 🙌
Thank you so much for the video 👍💪
Thanks for watching
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.
Yeah, that makes sense. Did you try it in this context?
And I forgot to tell you.. I love you man. You are the best.
@@notjustdev Yes.. It worked perfectly.
@@alirazzaq1541 How could I have missed it. Thanks man. Learning together.
Just found this channel. Cool bro
Thanks 👍
@@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.
Can you please continue with Instagram clone.
I found gold in this channel !
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?
Thanks for your good video.
I think it is really really good job
So nice of you
Hi vadim, i appreciate your effort in training us, but i have a question for you. from 1:18:21 on the video (ua-cam.com/video/Uq_vkUFnrss/v-deo.html). 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?
Hey at which time have you shown the demo of this project,like chatting between two mobiles
Somewhere at 1:44:30 I showed how I send messages from AWS (simulating another user) and receiving them realtime in the application
Can you delete multiple chat rooms with condition like : ID not equal "abc" ? (52:23)
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.....
Hello vadim can you suggest me how can i rearrange ChatListItem depend on last message.....
Hello Brother, thank you for this wonderful video.
How can i get updated schema for graphql? older version doesn't support.
Hello sir. How to add video call functionality in this?
🙌👏👏👏👏👏
Thats cool, but can you show how take apk file for android, and also how to deploy app to market
Thanks for the recomendation, I will definetly to a video about deploying in future
Do the call functions work?
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.
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 ?
its fixed now. XD but thanks a lot i really love your tutorials and all your projects on my ToDolist
Awesome bro, keep building
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 !!!
I solved it
@@benjaminbertagna3693 how did you solve it? i have similar issue too and cannot get done with it...
Hi vadim please make a tutorial for uber clone.. really appriciated
Thanks for suggestion
Is it possible or you to do a Snapchat clone? I just subscribed.
Can you do wechat clone pls?
Added to my list. Thanks for recomendations
Cool stuff!! Could you kindly put your face on the right side?