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

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

На главную

📝 Got some Saturday reading for ya! "How to control a React component with the URL" One of those lessons you can never hear too many times — duplicate state is a stubborn problem that can be easy to miss. Hope you enjoy!

51,860 просмотров • 1 год назад •via X (Twitter)

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

Фото профиля François Best - 🦋
François Best - 🦋1 год назад

Great read Sam, thanks! Once you get into this pattern you notice a few things: - Not all state is a string - Browsers and servers have rate limits I made @nuqs47ng to help React devs switch from useState to URL state, reliably.

Фото профиля @chance.dev 🦋
@chance.dev 🦋1 год назад

Was just chatting with @DavidKPiano about how especially tricky this can be when modeling with state machines

Фото профиля JWWW
JWWW1 год назад

Love to use URL as state! I wish more React devs would have learned this way to start. I think I’d personally maybe debounce that Router.push to prevent it from being called on every keystroke

Фото профиля Toby Flenderson
Toby Flenderson1 год назад

I'm using url as state in a nextjs app with app router. router.push is pretty slow even in prod environment. I'm changing search params in router.push. Do you have any solution for this?

Фото профиля anthonie
anthonie1 год назад

While this is great...I usually prefer it for serializable state that needs to be persisted on refresh. Like everything else...you just need to find the sweet spot. Great post Sam.👍

Фото профиля Dan Skiba
Dan Skiba1 год назад

Hi, I've noticed that if you type really fast in the last example it gets really luggy and miss some changes. Example type '123456' - result might be '1246'

Фото профиля Jakub Jirous
Jakub Jirous1 год назад

Thank you so much, Sam, for this amazing article. I’ve been following you for a while, and your content is one of the best resources on the internet. I can’t wait for your brand-new course!

Фото профиля Jannik Wempe
Jannik Wempe1 год назад

Such a good post (again!). I wish my younger self would have read that post because he had to learn that the hard way 😅

Фото профиля Hassan
Hassan1 год назад

Great read!

Фото профиля Mauricio Corzo
Mauricio Corzo1 год назад

Great article!! Love to learn from you. Question? This can be done too with useSyncExternalStore()?

Фото профиля Sam Selikoff
Sam Selikoff1 год назад

Yep but if your framework has something like a useSearchParams() hook you should just use that – I'm guessing it uses uSES under the hood

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