Hope you enjoyed the video! I also have a really cool and unique course that will teach you way more than this video. You'll learn how to build an actual complex project with React. It's called "Project React" and you can find it at cosden.solutions/project-react. Also, I have a free weekly newsletter called "Import React" with tutorials, news, and cool stuff about React! You can sign up at cosden.solutions/newsletter?s=ytc
@apiro123 Жыл бұрын
A series in design pattern would be great
@jlogo80 Жыл бұрын
I agree!!
@mariolim96 Жыл бұрын
Me too!
@samialvi4226 Жыл бұрын
Yeaaaa
@tushswe11 ай бұрын
Someone please remind me if/when its made.TIA.
@DevMeloy Жыл бұрын
It's always interesting to see where someone draws the line on single responsibility.
@nicholasroman80718 ай бұрын
I am grateful for your tutorials. Especially the React Query tutorials.
@oldyoung84094 ай бұрын
I love your way of explaining things. Understandable and calm language, as well as not overloaded code, which is really nice to read.
@colbatronbmw Жыл бұрын
Don't you hate when you know that there is a better way to do something, but you don't know the right terms to search for? I needed a compound component on a recent project but ended up coding my way around it. Thanks for these videos, when developers can talk to humans it's their responsibility to help. I was a tutor for a few years. I bet making these videos has helped you develop even better.
@cosdensolutions Жыл бұрын
I totally know what you mean! Many times have I searched for something but didn't know the specific words. For what it's worth, AI helps with that a lot. You can try describing your thing and it might give you the right answer
@colbatronbmw Жыл бұрын
@@cosdensolutions I just signed up for co pilot but I’m not in the habit of leaning on that yet. The video sponsor looks like a cool way of setting stuff like that up too. If they integrate storybook into that it will be a power house.
@menardmaranan Жыл бұрын
I absolutely relate to that. ChatGPT is a great help as it feels like you're talking to a real mentor. Unlike asking in StackOverflow whose egotistical users will either flag your question as duplicate even if it's not or mock/make fun of whoever is asking. Then there are those articles that most of the times don't help at all. The experience is vastly different than using a search engine.
@e_tas_6 ай бұрын
Chat GPT is great for finding these "key terms"
@justin_t Жыл бұрын
really like the custom hook tip at the end!
@giovannitonussi3746 Жыл бұрын
I have done all of those things before, glad to hear that they are good practices 😅
@harrybilney909611 ай бұрын
The only thing I would say about having your fetching and state in your parent component is that when you update that data, your whole page will reload, not just the componants using the data.
@regilearn2138 Жыл бұрын
yes ,with REACT if you can do a design patterns series practical real-world example would be really great
@yashkapure85114 ай бұрын
Loved the custom hooks part!❤
@guitarcrax12711 ай бұрын
Love your videos man. Find them very helpful. I’m an experienced backend developer, finally biting the bullet and reaching myself react (if that’s at all helpful info). Making my way through every videos you’ve made lol
@cosdensolutions11 ай бұрын
Hahaha nice dude! Good luck 🤙
@arihantbedagkar767811 ай бұрын
The last design pattern greatly helped me structure my code better. Thanks for the video. Appreciate if you can add some more design patterns.
@cosdensolutions11 ай бұрын
will have another video on design patterns tomorrow or monday!
@cosminraducoman3705 Жыл бұрын
Thank you so much for the time you invest in the making of these videos. Best React content available.
@cosdensolutions Жыл бұрын
Thank you for the kind words!
@RolwachtLoulwacht Жыл бұрын
Bro can you help me with a small issue I'm having concerning react props and typescript ? Thanks in advance
@gulshankumar-y5f Жыл бұрын
Thanks for such quality videos. A series on design pattern would be appreciated.
@cosdensolutions Жыл бұрын
a series it shall become!
@Rustaveli_ Жыл бұрын
Hi, Don't you think that HomePage violates the Single responsibilities principle? Because the HomePage component fetches posts, in the future it may be responsible for sorting posts, etc. + it renders content in the future HomePage also can render something else, which may also require fetching data. Isn’t it better to move the state and fetch to the PostFeed component and fetch the posts there? In this case PostFeed will be responsible for posts logic. If we want PostFeed to be reusable, we can rename this component to just Posts (will accept posts as props) and create a wrapper e.g HomePagePosts which will have a posts state and fetch the data and pass this data to the Posts component through the props? What do you think?
@oguzhanozgul Жыл бұрын
This.
@cosdensolutions Жыл бұрын
Great question! So first, I don't think it violates it at all. Any React component needs to return something, so that by default makes it responsible for what it returns. In most cases, that's JSX so it's responsible for returning that and providing everything those components need. What I meant with the single responsibility principle, is that each component should have only one obvious job. In the HomePage, that job is to hold the state needed to render itself. So that means holding and fetching the posts, or if there's sorting implemented then holding the function that sorts the posts and passes it to the component that sorts, and anything else that it needs for its own content. The single responsibility here is: render the HomePage. Everything else it should delegate to other components. So you could've fetched the posts in the PostFeed component sure, but then the HomePage would've needed to hold some object with params to fetch with. So then that would become its responsibility. If you had a ProfilePage, it would hold different params such as the userId to fetch only those posts. That would be its responsibility. Then you can have other components, like the PostCard which is only responsible for rendering a single post. But that may mean it can hold some state, or fetch some data that it needs to render the post, or even filter stuff there. It still falls under the responsibility of: render a Post. That's the key, it's not about actually doing one single thing, but being responsible for one thing and holding all the code necessary for that one thing, even if that means multiple states and effects and props passed to other components!
@Rustaveli_ Жыл бұрын
@@cosdensolutions thx for reply)
@zizzz10 Жыл бұрын
what you could also do is extract all posts fetching logic in a custom hook (usePosts) - as explained in the last design pattern in the video. In this hook, you can move the fetching part that is present in the HomePage. Imagine having filters, sorts, different views options (as cards, as list, etc). The HomePage would have lots of logic in it + testing would be a nightmare and not possible to do unit testing correctly -> you would render a giant component every time you want to test isolated capabilities: filters, sorts, etc
@Rustaveli_ Жыл бұрын
@@zizzz10 great solution, also thought about this
@Solo_playz7 ай бұрын
Congratulations 🎉 👏🏼 for your first 🥇 sponsership 🤝 and as always infotainment video ❤
@salman0ansari Жыл бұрын
this channel should be included in the "hall of fame" you are the only one teaching real world react.
@cosdensolutions Жыл бұрын
damn, thank you! That's exactly what I'm trying to do!
@JamesIsbellUK10 ай бұрын
SRP is a good pattern but can lead to the following drawbacks: excessive fragmentation, increased boilerplate code, decreased readability, difficulty in debugging, and an increased onboarding time for developers. For small and even some medium-sized projects, sometimes it's just simpler and easier to AVOID breaking things down into multiple responsibilities and files. Sometimes it IS more readable if it's in a single place.
@AhmedMohamed-ff11 ай бұрын
@Cosden Solutions - 2:10 You are not supposed to use side effects directly like this in React components. You should make a custom hooks / utility functions to adhere dependency inversion principle and separation of concerns principle...
@deanoliumАй бұрын
It also creates questions on what is the source of truth for posts? What if the posts on the server updates and we want to display those to the user? Also during that first render - even if the api calls are cached - it will have posts being null. This is a massive anti-pattern for so many reasons!
@___jd10 ай бұрын
I would argue that PostFeed should handle the Post fetching itself. Makes more sense than the HomePage which is really just a visual container.
@cosdensolutions10 ай бұрын
I wouldn't, because you would also use PostFeed in the UserProfilePage for example, where you'd need to fetch all posts of a specific user. So you would need to pass some sort of filters from the HomePage and UserProfilePage. So at that point, just fetch them there and let PostFeed display them only
@___jd10 ай бұрын
@@cosdensolutions Passing the filters seems fine imo // Home. // Profile. Or similar. But to each their own, and hard to say without a larger app context. Cheers, love the vids.
@deanoliumАй бұрын
It also creates performance issues, especially when we want the user to poll the server occasionally to get the latest data. If HomePage has multiple components which might all require their own data obtained from API calls which are all placed in HomePage, then when any of these updates, all of the components will re-render. Not a problem in toy projects but can be a major one in larger ones. PostFeed with potential filter props, and then using something like React Query makes a tonne more sense, and would be much more performant. Again, in larger projects, it would make it much easier to look at the logic since it's colocated with the appropriate component. The main con against this is creating the need to the mock RQ or your fetching API/hook when testing your component instead of simply sending it an array of Post objects. However, that's not particularly difficult to do.
@deepakkashyap6538 Жыл бұрын
Much awaited video ❤ Loved it
@avinashgodvin9900 Жыл бұрын
Wow , Great explanation ! Thank you : )
@gmjitendra Жыл бұрын
Excellent. thanks for sharing design pattern in react.
@dineshsinghbisht07 Жыл бұрын
Hello sir, could you please bring a series on advance senior developer code for instance an open source react project code like a ui library. How they code, what should be the correct way to make a feature and so on. BTW love your content
@cosdensolutions Жыл бұрын
Interesting ideas, thanks a lot will think about it them! ☺️
@saqibmuhammad7218 Жыл бұрын
Amazing new video lot of new concepts learn how to manage large workflow.
@MagicPants64711 ай бұрын
Never seen or used compound component pattern before. Very interesting. I'm curious in what other real world scenarios it would be beneficial to use. Thanks!
@longhuynh82777 ай бұрын
they use it a lot in component library e.g antd, bootstrap... you should check it out
@pixyoutube53811 ай бұрын
Thanks a lot bro, really great video
@AdamK-f2k9 ай бұрын
I would love to pay you for one on one tutoring, you sound like you really know what you're talking about.
@cosdensolutions9 ай бұрын
I currently don't do 1v1 (but that might change in the future). However, I am soon launching a course that takes everything I've learnt over my career and puts it into a package that goes significantly beyond what my videos do. It's coming in a month and a bit!
@ekchills694811 ай бұрын
How come I'm not subscribed to this channel. Your contents are amazing
@cosdensolutions11 ай бұрын
well, hopefully you are now :D
@ekchills694811 ай бұрын
@@cosdensolutions of course I am now
@webcodeuniversity11 ай бұрын
The SRP is arguable here, for this example, homepage component should not be responsible for fetching posts, that's a responsibility for Posts component to do, imagine that homepage has other components that need some data from an API, so the homepage component will be a mess, therefore, we'll be violating SRP. Also the last patten is arguable indeed, if we do that for every component, then we're losing colocation principle which I think it's more meaningful than just move things around, instead I think smart/dump components pattern would make much sense in such situation instead of using custom hooks. Thanks for the video though
@REPOORTEHT Жыл бұрын
Last one : chef's kiss.
@angthapyeuquan5409 Жыл бұрын
Hi, I wonder about the last pattern 'extract useEffect to other files', if we have too many dependencies related to useEffect such as the variables from useState for checking, how can we handle that?
@fouadchahd2969 Жыл бұрын
Trust whenever u have a dependency that has dependencies, there's a way to refactor ur code to get rid of that useEffect
@Habibetoon7 ай бұрын
best vid I've ever seen 👌
@petarkolev69286 ай бұрын
Does mightymeld work in monorepos? Great video btw! You got yourself a new subscriber 🍻🍻
@TarasovFrontDev Жыл бұрын
SRP is not a design pattern but a SOLID principle. And the first ex is not quite good. should only return JSX (view layer) should only return JSX (view layer) should fetch data (model layer) P.S. Ok, now I got it. It's not ed video, but ad for sponsor. Well you should retitle the video right.
@cosdensolutions Жыл бұрын
You can split components further into views and controllers sure, but you also can choose not to and do it how I did, it's perfectly valid. And yes, in the last example I showed the model layer too, did you watch until then? ☺️ And lol, I would've made this video with or without the sponsor my dude
@babarmughal8891Ай бұрын
Great Content! But I see an issue in the video, you said "Single Responsibility Principle" as a pattern, which I think is not true." Single Responsibility Principle" is not a pattern. It is one of the principle belongs to SOLID principles. If I'm wrong. Do clarify this thing kindly.
@maximilianojuega178 ай бұрын
you explain really good but in the compound component, you use the onClick in the option which does nothing, this is the second example you do that lead to a broken component , its better to make component that actually work so people can see the use case
@brianmeyer3050 Жыл бұрын
The Select context option feels unnesarily complex. Custom hooks + useContext for a native form element? You mention that it's nice because now it's a simple and reusable component, but you've created something that is finicky, difficult to understand and hard to maintain. That's the opposite of a senior design pattern.
@emapeire Жыл бұрын
Thanks to show this!
@michaelkorolev1413 Жыл бұрын
Great video! However, there is something that is bothering me. Why should we reinvent the Select behavior when it's already implemented by the browser? But the pattern is awesome and should be utilized.
@cosdensolutions Жыл бұрын
Generally it's good to have your own components that wrap the browser elements just so you can add any customisations you need there and have them apply to all of your app, instead of repeating it every time you use a select input. You can style them, add additional props, etc all in one place to re-use
@ptolemyhenson683811 ай бұрын
Why is every react component put in a separate file, even the ones that are related to each other and could be easily navigated within the same file?
@rotivanov Жыл бұрын
Hey Cosden, thanks a lot for sharing your knowledge with us. Which monitor do you use for your mac? I have been struggling to find a decent one with crisp text for my mac mini :(
@cosdensolutions Жыл бұрын
I have a samsung, not sure which model but it's 34 inch with 2k resolution @ 144hz. That's good enough for me for now!
@PedroBullo Жыл бұрын
Awesome! You could highlight keywords.
@pulkitcs9 ай бұрын
We are missing HOC, composition etc design patterns. This video is confusing 😞, could you please provide a link to these videos in this video. Thanks
@mohityadav99092 ай бұрын
Great share of knowledge
@zkabadu Жыл бұрын
Talks about SRP, doesn't do SRP in its best way: your outer component does not do one thing, but two: it renders the component and it fetches the data. Therefore you break SRP 😬
@cosdensolutions Жыл бұрын
So how I see SRP is that it shouldn't just have a few lines of code on one specific thing, but rather one responsibility. That's the R in SRP. The HomePage is responsible for the rendering of the HomePage, which includes fetching the posts and passing the data to all sub-components
@AsterixAstrixАй бұрын
About the Select compound of components, I don't understand how could I end up using an Option component NOT under a Select component...
@randfamous Жыл бұрын
Hello sir, please make a video on feature driven folder structure a.k.a screaming architecture - no youtuber has covered this till now and i am expecting from you .....
@paitrex11 ай бұрын
I am wondering about useSelecContext hook in 10:39. Why do you use useContext in a single component. It this used somewhere else in code except that select component that is shown on video? What it used it for? Maybe for taking the value in a parent komponent or what?
@chicao489611 ай бұрын
I find it wild that it takes 70 lines of code to make a select component in React. Great video though.
@cosdensolutions11 ай бұрын
fair enough, but that's mostly because of setting up the context + a custom hook, which isn't necessarily required for a simple select component that is pure UI
@ShubhamGupta-ol5xy Жыл бұрын
please let us know the open source project u were taking about in you tube shorts
@yassinenassib26199 ай бұрын
Thanks for the Video , but i see an issue with Props Drilling! we are passing the posts to 3 child components! can you explain why this is a bette practice than creating a posts context ?
@cosdensolutions9 ай бұрын
posts is only passed to PostFeed. PostFeed then maps over the posts and passes a post to PostCard. This is not prop drilling, this is just normal React! A context wouldn't make sense here!
@yassinenassib26199 ай бұрын
@@cosdensolutions thank you for the feedback and explanations!
@danieldk5148 Жыл бұрын
Really love theses kind of videos! Thank you! One question, and sorry if it would be obvious, but I really liked the last pattern, bit how would it be implemented if I need a control state? Or that would be more like the second pattern shown?
@cosdensolutions Жыл бұрын
I'm not sure what you mean by control state, but extracting that in a custom ".hooks" file is no different than having that code directly in the component. So you could have that custom hook receive props from the component or from above, and even return a value too. This will work exactly in the same way, with the only difference being that now everything runs through and from this extra file
@danieldk5148 Жыл бұрын
@@cosdensolutions sorry, sometimes I'm not so clear in english :( What I meant is if I need that state that (also) controls something outside of that .hooks file. Although I might be looking wrongly at the problem x solution. ~ just to make an excuse ~ Been a couple months I'm not coding, kinda discouraged, so maybe that's why I'm not looking at this properly.
@cosdensolutions Жыл бұрын
@@danieldk5148 in that case, you need to pass the callback function to update that state through props to this component, and then pass it to the hook in .hooks. Then call it in there and it will update wherever the source is!
@danieldk5148 Жыл бұрын
@@cosdensolutions thank you!
@fouadchahd2969 Жыл бұрын
Is the last example correct ? The useSignInHooks will be triggered on each render no!?
@cosdensolutions Жыл бұрын
yes, that's not a problem at all. Even how it was before it would trigger every render
@fouadchahd2969 Жыл бұрын
@@cosdensolutions by rerender do you mean each state update or refreshing ! isn't wrong to send analytics event on each state update ?
@robwatson826 Жыл бұрын
That was a really interesting video! Thanks for sharing. A question about extracting logic into Hooks - how do you share state from the hooks back into the component itself? Would you return a big object full of properties similar to how useState works?
@fabryscript Жыл бұрын
the thing that I would personally do is just returning the properties that i need. For instance, if i fetch some data and put it in the state, i'll then just return the value from the state without anything else (apart from common utils like isLoading, error etc...), in order to let the component consume only the things that it actually needs
@cosdensolutions Жыл бұрын
Yes you return everything that you need! Usually in the form of an object with the properties inside so that you then use them with the same name in the component!
@mauriciabad Жыл бұрын
Great video! I only disagree in the single responsability part, because in many cases it's not worth the effort of splitting things up, and you didn't dig into how to decide when to use the pattern.
@cosdensolutions Жыл бұрын
I would argue that splitting should be the way you build them in the first place. If you always build small and with a single responsibility, no matter the project you end up benefiting imo. That's why I didn't mention anything about when to use it in the video
@ayansinha500011 ай бұрын
Can we get this codebase or any github reop to view this example?
@영진장-f9y5 ай бұрын
4:38 hello, terminal app name?
@kodiak8096 ай бұрын
2:35 i can't get it i thought the initial state can only be string,number or null...why is there a component there?
@abubakar.khawaja2 ай бұрын
Its name of Type not a component, brother is using typescript. :')
@noicehockey99202 ай бұрын
I did not get why you call Single responsibility principle from SOLID a first design pattern? it is not a pattern, it is a principle.
@prashlovessamosa Жыл бұрын
Thanks for sharing. any update when will you make a tut on React Router.
@cosdensolutions Жыл бұрын
Its planned for a couple of vids from now! Don't worry it's coming ☺️
@prashlovessamosa Жыл бұрын
@@cosdensolutions thanks whatever you teaches directly goes to my mind I am too addicted to your teachings thanks.
@ukaszkisicki786211 ай бұрын
why not fech posts in the postFeed. PostFeed is the owner of these posts. I'd do the fetching there
@cosdensolutions11 ай бұрын
You could, but then you need to tell it what posts to fetch. If the home page, fetch home page posts, if user profile, fetch user posts. Easier to have that fetch in the respective pages and the component just render them imo
@oscarthroedsson14107 ай бұрын
Can you do a video about select.option. Watched it 10 time in speed 0.75.. I don´t get it. I get why it need to be in a select. But I don´t get the Select.option tag
@cosdensolutions7 ай бұрын
a full video on this is coming!
@DuduHaupt7 ай бұрын
should I have one test for my Component.tsx and other for my Component.hooks.tsx? or one test for both of them? Excellent video!!
@luc.kasnix Жыл бұрын
The useSignInPage does not have a single responsibility.
@ajbotha72326 ай бұрын
Wow this helped a lot
@erfanmo1468 Жыл бұрын
how did you make the functions sticky in your vscode ?!
@cosdensolutions Жыл бұрын
it's a setting in vscode!
@alexevlad Жыл бұрын
I've started working for my first time at a company at a level of junior. I've already extracted a topic dashboard page into multiple hooks for easier management. I was required to hooks which was used in another hooks,, is this a good idea?
@cosdensolutions Жыл бұрын
yeah, sounds reasonable, I use hooks within hooks all the time!
@jitujahagirdar6139 ай бұрын
and i would like to know how to give answer please explain about your fronted project architecture ? give your sample react project architecture example .!
@21mighty86 Жыл бұрын
10:00 you are passing the state setter as prop which is anti pattern by itself. Instead, the callback should be passed and state setter should be called inside handler of that callback
@cosdensolutions Жыл бұрын
what makes you say it's an anti-pattern?
@chetanchandel8850 Жыл бұрын
interesting topic, just leaving comment to get notified when someone replies
@amirhosseinghaznavi6657 Жыл бұрын
Great video thanks, could you please tell us what is the name of last pattern you mentioned?
@cosdensolutions Жыл бұрын
Extracting logic into hooks
@mohamedabdelhalim9892 Жыл бұрын
can we isolate the logic code in a components that uses that conditional rendering depending on states for example?
@cosdensolutions Жыл бұрын
yeah you could
@mohamedabdelhalim9892 Жыл бұрын
@@cosdensolutions mmmmmm, does it contribute anything to performance or only for readability and clean code approaches?
@thehelldesk5463 Жыл бұрын
I learned nothing, but it should be a good introduction for begginers maybe
@cosdensolutions Жыл бұрын
That's mostly who my channel is for!
@thomasg2058 Жыл бұрын
Hello, on compound compoent how can you access selected option on component your are using it?
@cosdensolutions Жыл бұрын
Pass a callback from the parent to call onChange and get it that way!
@kouzul5 ай бұрын
I don't understand why home page is responsible for getting the posts, in single responsability example. Shouldn't it only be responsible for rendering all the page components and PostFeed to be a feature component and get what it needs for its child components?
@abubakar.khawaja2 ай бұрын
Imagine you have a reusable component PostFeeds. Its used in HomePage for displaying articles, in another area its used for displaying some other feeds. If we fetch data in a reusable component, then we would need to create a separate post feed variant. End result would be like ArticlesPostFeed, GroupPostFeeds, etc. By having the fetch logic in HomePage, we have achieved single responsibility in PostFeed because now its just for displaying posts and can be used again without needing additional wrapper like ArticlesPostFeed, GroupPostFeeds, etc. p.s. if you know your PostFeed is not reusable, you can keep fetching inside it.
@kouzul2 ай бұрын
@@abubakar.khawajaWhile I agree that there can be different nuances, I still believe you can achive it in different ways (passing a props maybe) I usually don't like the ideea of a home page loading things needed by the children. Having in mind single resposability, I believe that if we have a Postfeed component, it should be responsible for getting the post. Not just render them. All components will render something, in this case we could say that homepage doesn't respect the single resposability because it is getting the post and render the postfeed. What if we want to add some filters to the postfeed, how we would implement it? What components we would need to change? We would start passing different functions as props to the child and update the state of homepage.
@joaobonsegno Жыл бұрын
If you have a PostFeed component that is responsible for rendering the posts, why fetch them in the parent component? If PostFeed has the responsibility to deal with the post feed (obviously), isn't it better to let it fetch its components and remove this responsibility from the parent?
@cosdensolutions Жыл бұрын
You could, but you'd still have to pass something from the homepage. Because if you re-use PostFeed somewhere else, like a ProfilePage, you need to tell it which userId to fetch from. So the PostFeed still needs info from the parent to fetch. So at that point, makes more sense to do the fetch in the parent with the correct filters, and just use PostFeed to render them!
@alexandrudodon1 Жыл бұрын
You started off by talking about the single responsibility principle, but then went and assigned multiple responsibilities to it. The page component would, indeed, be responsible for orchestrating the required components, but it shouldn't deal with container styles - that's something that should be delegated to either a "layout" or a "template" component that accepts various implementations as child elements. While it's true that the page should also fetch the overarching data that is required to display everything, filtering it is not its responsibility - that's something that should be handled by a different component and upon successful filtering, the page component would update its state with the new data. What if I have a smart component several layers deep that needs some data that is not needed anywhere else? Would you also fetch in the page component and pass it down through prop drilling? I would argue that you shouldn't and rather let that component fetch what it needs to work with, so that the page component would only deal with state that is important for the whole page.
@cosdensolutions Жыл бұрын
Great comment! Sure, you could use a layout if it's a generic style that applies to all pages. But for laying out the post feed and how that is styled, that's the home page. Does it go at the top or at the bottom, is it full width or next to a search bar, etc. That's home page responsibility. Also, the actual components that will filter are separate, sure. But the home page needs to hold and pass a callback to that component to receive the updates, and then filter the posts to display. That's what I meant! And to the third point, it really depends. You can have self contained components that fetch their own data, or you can choose to pass it from the home page. There's no right answer and it really depends on the specific context imo. Could've had PostFeed fetch its own data and only receive some parameters from home page to fetch with for example
@epouivan3475 Жыл бұрын
Can you please create a complete react course.
@cosdensolutions Жыл бұрын
Absolutely, working on it as we speak! I'm doing something unique and way better than anything else I've seen out there ☺️
@epouivan3475 Жыл бұрын
Patiently waiting@@cosdensolutions
@Forshen Жыл бұрын
'single responsibility principle' is an priniple. a.k.a. a guideline. Not a Design Pattern. EDIT: I see 0 Design Patterns here. Just code separation, no technical problem solving.
@aer1th621 Жыл бұрын
can I have github repos?
@setasan6 ай бұрын
Lovely !
@alfonsoalejandroespinosade1728 Жыл бұрын
i think the right name of the pattern is not feature components, is compound components,
@cosdensolutions Жыл бұрын
I talked about both in the video!
@ameer6168 Жыл бұрын
I don't think it matters seniors are still going to use the most fkd up pattern in the existence
@sivaprakas28309 ай бұрын
looks like you were in hurry, please make video when you have more free time and good sponsor
@ahmadpak Жыл бұрын
That was helpful.
@MasculinismTV Жыл бұрын
here we go sellout mode activated
@cosdensolutions Жыл бұрын
Would've made this video with or without a sponsor my dude
@mihaistoica483111 ай бұрын
I don't think naming Design Pattern is right for this type of content. You are presenting good practices for React and Single Responsability Principle Anyway, interesting video, keep up the good work!
@cosdensolutions11 ай бұрын
what would you name this as? And what would you consider design patterns in React?
@mihaistoica483111 ай бұрын
@@cosdensolutions I would consider them as good practices. If you take into consideration the definition of design pattern (Design patterns are typical solutions to commonly occurring problems in software design.), those are solutions exclusively mapped to frontend frameworks. As I've just said, it's a personal opinion based on this definition.
@mcoxeter2 ай бұрын
Single responsible principle is one of the solid principles by Bob Martin. Is a guide not a pattern.
@anvuan5473 Жыл бұрын
U forgot the lazy loading that component. it could be a huge problem
@cosdensolutions Жыл бұрын
Nah because they go together so they should be loaded at the same time
@user-py5zu9pb8u11 ай бұрын
thanks
@dadya_denis11 ай бұрын
Select component are not good enough to show it even for junior developers, cause even within Design Pattern its a bad practice, cause you store the view and the logic of the context inside one file, that incorrect in any case.
@adnanrruka5152Ай бұрын
Thnx
@mokhtariabdelmadjid297711 ай бұрын
compound component is just adding more layers of complexity, just keep everything simple and easier we dont need a context or a hook for a simple select that absurd
@cosdensolutions11 ай бұрын
The idea is that all of that complexity is abstracted in that component once, then you don't worry about it. And using context prevents you from using the Option component in something other than a select, and then adding props and logic in it to fit both use cases. That pattern doesn't scale at all and will lead to a lot of problems. That's the benefit of compound components
@ilmanmanarulqori5632 Жыл бұрын
this is it AWESOME!!!🎉
@praneetc10409 ай бұрын
explanation is too fast, not able to understand the compound components
@raybelmo Жыл бұрын
Great Video!
@MASTERISHABH3 ай бұрын
TBH, this was a time waste video for me as I always come to this channel for intermediate to advanced content and that was my Notion until now that you focus only on my type of audiences but gotta be mindful next time :)
@singh.aadarsh Жыл бұрын
Amazing
@noNullMoments Жыл бұрын
i thought we were going to learn about factory, oberserver, singleton something meaningful not this!
@cosdensolutions Жыл бұрын
I think this is really meaningful, especially for beginners who don't know the ways to think about React. But I will definitely make more videos like these!
@noNullMoments Жыл бұрын
I think it is important that young developers or aspiring engineers should be exposed to "politically correct way of doing things" because as a lot will later find out that it is harder to unlearn bad habits than to acquire new good ones. Design Patterns: Elements of Reusable Object-Oriented Software (by the Gang of four) is probably one of the most influential books written in computer science history that discuss the "CORE" of OOPs patterns that are absolutely used in JS meta frameworks. Anyways.. good luck
@detaaditya6237 Жыл бұрын
Well, the thing is that the classic go4 design pattern is not always applicable to React codes. I think this video delivers more concrete, head-on, and easier design patterns for relatively new developers to follow.
@rahulsingh-hn3fy11 ай бұрын
@@noNullMomentsnever seen someone apply oop patterns you listed in react😅