Building an event calendar - React Challenge

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

Cosden Solutions

Cosden Solutions

6 ай бұрын

Sign Up for BrightData → brdta.com/cosdensolutions
Source Code → github.com/cosdensolutions/co...
Join The Discord! → discord.cosdensolutions.io
VSCode Theme | Font → Material Theme Darker | Menlo, Monaco "monospace"
In this video we challenge ourselves to build an event calendar in React from scratch! This React code challenge series is designed to complete React challenges and see what cool stuff we can build. You can follow along or you can attempt to complete the React challenge yourself by checking out the repository. If you get stuck, the solution is in the GitHub repository as well!

Пікірлер: 44
@romancalderon
@romancalderon 5 ай бұрын
Great challenge, please do more like this. Inspired to make my own calendar app!
@HerlonCosta
@HerlonCosta 5 ай бұрын
I will have to watch this one a few times to understanding it well. Excellent class, very rich. Thanks for that!
@madhanr5622
@madhanr5622 5 ай бұрын
Nice video❤.Please continue this series.
@prashlovessamosa
@prashlovessamosa 5 ай бұрын
Thanks for sharing please share more challenges in future.
@jarolriera2856
@jarolriera2856 29 күн бұрын
I am building a reservation calendar from scratch and this really helped me a lot. Thank you, your content is great!
@ositaka
@ositaka 5 ай бұрын
Your React Challenges is a super idea 💡
@yaa4500
@yaa4500 5 ай бұрын
Such a good challenge. The best react youtuber i’ve ever seen.
@jech33
@jech33 5 ай бұрын
There you go! Nice sound and awesome vid 🤟🏻
@akashthoriya
@akashthoriya 5 ай бұрын
Learning a lot from your videos, Thank you! We need more videos on Design Patterns. [Nowadays nobody is creating such videos with great details like you]
@cosdensolutions
@cosdensolutions 5 ай бұрын
They're coming!
@akashthoriya
@akashthoriya 5 ай бұрын
@@cosdensolutions Thank You!!!
@Shaheer-xs5os
@Shaheer-xs5os 5 ай бұрын
Damn, date-fns in awesome... I think I am using it in my own event calendar... thanks for the video man!
@user-yr3yw6vv5v
@user-yr3yw6vv5v 2 ай бұрын
oh...this is great video! i wanted to implement like this event via react-day-picker, but i didnt know how to do. thanks!
@mohamedsalimbensalem6118
@mohamedsalimbensalem6118 5 ай бұрын
i'm junior developer with 1 year of experience, ive watched all your videos and learned a lot throughout the journey, looking to see all your next videos, keep it up cosden
@codewithsunil5990
@codewithsunil5990 5 ай бұрын
Need more challenges like this
@AnuMessi10
@AnuMessi10 5 ай бұрын
Great content as always, you can come up with such challenges that are also asked in machine coding rounds during the interviews, eg date pickers, pagination, infinite scroll etc without any libraries
@cosdensolutions
@cosdensolutions 5 ай бұрын
Yes that's the plan ☺️
@jordan_w
@jordan_w 5 ай бұрын
Just found your channel and liking what I see so far! Loved watching along to see how you tackled the problem! My only suggestion for future videos would be to more clearly define the challenge at the start of the video; maybe by showing a mock up or your final product, so those of us who want to try the challenge before watching have something more clear to aim for without skipping through the video - This could also be good for viewer retention as it makes people want to see how you made it :)
@cosdensolutions
@cosdensolutions 5 ай бұрын
Yes that's a great tip, thanks a lot! Will try this in the next one and compare
@kjbassu
@kjbassu 5 ай бұрын
Yes we need React challenges🎉
@kostiantynsydorenko7344
@kostiantynsydorenko7344 5 ай бұрын
Super video, thanks!
@faizanahmed9304
@faizanahmed9304 5 ай бұрын
Thanks!
@jimsmart2522
@jimsmart2522 5 ай бұрын
Minor point re big-O... You keep saying O(2), but n-by-m is better described as O(n^2) - technically O(2) is still linear, but O(n^2) is quadratic. HTH Great content, keep up the good work!
@cosdensolutions
@cosdensolutions 5 ай бұрын
Yeah, I always mess these up lol. Thanks for the clarification!
@saqibmuhammad7218
@saqibmuhammad7218 5 ай бұрын
❤ Love to see want more challenge videos
@MuhammadIlyas-dr7eg
@MuhammadIlyas-dr7eg 5 ай бұрын
I'm an experience backend dev and now moving toward full stack. We need a clone series as a project base learning
@rebeldes96
@rebeldes96 9 күн бұрын
Great video, thanks a lot! and subscribed!!
@w1kk857
@w1kk857 5 ай бұрын
14:00 from react docs: "Keys must be unique among siblings. However, it’s okay to use the same keys for JSX nodes in different arrays." so, its perfectly fine to have keys [0, 1, 2...] in first array and the same in the second. They wont overlap.
@cosdensolutions
@cosdensolutions 5 ай бұрын
But here it was siblings though
@jyotirmoykarmakar8511
@jyotirmoykarmakar8511 5 ай бұрын
Hi! What's your VS Code theme? I really like it
@vengateshvaidyanathang550
@vengateshvaidyanathang550 5 ай бұрын
Really Nice .. It will be too cool if we have series of creating a particular components of great product apps like Google apps, Microsoft 365, Apple
@cosdensolutions
@cosdensolutions 5 ай бұрын
Interesting
@juliusngwu
@juliusngwu 5 ай бұрын
Awesome
@ivanmosful
@ivanmosful 4 ай бұрын
Has ayone figured out how to span an event on multiple columns, or hos to break it if for example it starts at the end of the week and then continues on the next one?? Thanks in advance. Thanks for the video:)
@0xtz_
@0xtz_ 5 ай бұрын
in the company I'm in we just did a weekly ssr calendar hhh it was a bit challenging with the query params holding the start week the filters etc and supabase and it was fun and I would like u to make a video to see how u structure it and build it in Next.js can you ? hmm 🤔
@harag9
@harag9 5 ай бұрын
Nice work, just shows how useful 3rd party packages are like the date one you used. Question on KEYs when mapping, I know it's best to not use index, and also they have to be unique. Can you confirm if they have to be unique throughout the page, if you had 3 maps, with index 1-100, should they all be different, you seem to be pointing at that with the "empty-index" you used. Would love to see more of these vids, but one suggestion I have is when you have a bug your trying to fix, please don't cut it out and then just show the end code.
@cosdensolutions
@cosdensolutions 5 ай бұрын
Keys have to be unique in the same parent, otherwise it's fine! That's why I added "empty-" there. And yes, I'm trying to find a balance between keeping the videos shorter and to the point, and explaining things thoroughly. Working on it!
@nithinraj342
@nithinraj342 5 ай бұрын
Can u do lighthouse optimisation, I didn't understand plz do it
@icoderdev
@icoderdev 5 ай бұрын
@ShivamJha00
@ShivamJha00 5 ай бұрын
What's a time complexity of O2?
@nallaparajuamareshvarma8471
@nallaparajuamareshvarma8471 5 ай бұрын
can you please do day calendar challenge it would be more interesting
@sriharansaravanan4653
@sriharansaravanan4653 3 ай бұрын
Please update more vedio .
@activeuser_at
@activeuser_at 5 ай бұрын
Zoʻr
@activeuser_at
@activeuser_at 5 ай бұрын
Ajoyib
Learn React Hooks: useRef - Simply Explained!
12:42
Cosden Solutions
Рет қаралды 76 М.
Bro be careful where you drop the ball  #learnfromkhaby  #comedy
00:19
Khaby. Lame
Рет қаралды 48 МЛН
Did you find it?! 🤔✨✍️ #funnyart
00:11
Artistomg
Рет қаралды 125 МЛН
She’s Giving Birth in Class…?
00:21
Alan Chikin Chow
Рет қаралды 10 МЛН
Eccentric clown jack #short #angel #clown
00:33
Super Beauty team
Рет қаралды 27 МЛН
REACT SCHEDULER - open source React component for resources
7:10
How I Write Clean Code in React
16:36
Cosden Solutions
Рет қаралды 23 М.
DejaVue #E010 - Design Patterns in Vue.js
29:39
DejaVue
Рет қаралды 423
Building an Interactive Calendar with Tailwind UI, React and date-fns
23:48
Efficiently Render 100,000 Rows in React
16:41
Cosden Solutions
Рет қаралды 15 М.
The problem with useEffect
11:37
Cosden Solutions
Рет қаралды 30 М.
Why Signals Are Better Than React Hooks
16:30
Web Dev Simplified
Рет қаралды 450 М.
Redux - Complete Tutorial (with Redux Toolkit)
37:01
Cosden Solutions
Рет қаралды 148 М.
React Query - Complete Tutorial
18:57
Cosden Solutions
Рет қаралды 95 М.
Build this JS calculator in 15 minutes! 🖩
15:20
Bro Code
Рет қаралды 351 М.
Bro be careful where you drop the ball  #learnfromkhaby  #comedy
00:19
Khaby. Lame
Рет қаралды 48 МЛН