Загрузка видео...

Не удалось загрузить видео

На главную

❌ Avoid having components with too many props. ✅ Instead use the compound components pattern in React to embrace composition.

130,061 просмотров • 2 лет назад •via X (Twitter)

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

Фото профиля George Moller
George Moller2 лет назад

I've been working professionally with React for more than 8 years and I compiled all my knowledge into 100+ infographics just like this one. Check them out ↓

Фото профиля Anthony 🇳🇬🇨🇦
Anthony 🇳🇬🇨🇦2 лет назад

So you want to use a hook just to render a drop down? It was much simpler the way it was before and arguably easier to maintain Using a footer props (as html) is another solution that will eliminate 4 props. I would also pass in the children as props as well

Фото профиля George Moller
George Moller2 лет назад

Let's suppose you want to add a link just to one dropdown item (really common use case), you would have to either pass in a renderItem props to the dropdown or have a check inside the dropdown at the item level like && <a href=""... This is just one use case, usually you would have many of these. That doesn't scale. With this pattern you leave the extension/customization to the consumer (App) instead of bloating the Dropdown component.

Фото профиля Michał Janaszek
Michał Janaszek2 лет назад

When you get the task "use the Dropdown component (no mockups)" in the first implementation everyone knows exactly what the final look should be, in the second version the developer can create a completely different version than the creator of the task imagined.

Фото профиля George Moller
George Moller2 лет назад

If you don't get mockups/requirements, how would you know if you need to render a footer for example. The same can be said about the first implementation, the developer forgets to add a footer prop and the end result is different.

Фото профиля Shripal Soni
Shripal Soni2 лет назад

Nice tip to keep component open to extension, George 👍

Фото профиля George Moller
George Moller2 лет назад

Glad you liked it Shripal did you use/know this pattern in React before? It's quite useful

Фото профиля Atif Riaz
Atif Riaz2 лет назад

This is an amazing video.. keep them coming

Фото профиля George Moller
George Moller2 лет назад

Glad you liked it Atif did you know this pattern in React before?

Фото профиля Enrique Moreno
Enrique Moreno2 лет назад

Not a bad solution. I like it.

Фото профиля George Moller
George Moller2 лет назад

Glad you liked it Enrique!

Похожие видео