正在加载视频...

视频加载失败

Big React Aria release! 🚀 🎨 7 Color Picker components now GA, with new Tailwind starter kit examples! ⏳ Pending Button state 🚪 New Disclosure component 🪗 DisclosureGroup (aka Accordion) 🌴 Tree beta 📱 Improved Android touch handling Check it out!

43,514 次观看 • 1 年前 •via X (Twitter)

8 条评论

Devon Govett 的头像
Devon Govett1 年前

The button pending state is more complex than it looks! You might ask: why does a headless library need to know if I render a spinner inside it? For accessibility! React Aria ensures that the pending state change is announced for screen reader users. It also disables interactions during the pending state to prevent double actions, but focus is still allowed otherwise keyboard users would lose their place. So it really is a distinct state from regular disabled buttons.

Devon Govett 的头像
Devon Govett1 年前

A cool feature of the Disclosure component is that it uses the hidden=until-found attribute so you can still search the content while it is closed with ctrl+F (currently supported in Chrome). The disclosure will automatically open when content is found inside! 😲

Yadiel 🦖 的头像
Yadiel 🦖1 年前

What would've been the drawbacks of using <details> and <summary> for the accordion? customizability and browser support?

Devon Govett 的头像
Devon Govett1 年前

Yeah I advocated for using <details>/<summary> for years, that's why we didn't have an accordion/disclosure component for a long time. Now details even supports mutual exclusion. I still recommend it for simple cases (but even still people kept asking us for a component!). The thing that pushed us over the edge was styling. <summary> has some weird behavior, like you cannot place elements adjacent to the trigger (e.g. additional buttons) that are not inside the collapsed panel. We needed to be able to do that to meet some design requirements.

Mosaad 的头像
Mosaad1 年前

Team is on fire!

Guillermo 的头像
Guillermo1 年前

finally, the acclaimed accordion

Heath | OptionStrat 的头像
Heath | OptionStrat1 年前

Great work, I have been playing around with this library and love it. Always built my own UI and even tried to handle accessibility stuff like keyboard interactions but it's so hard to get right. When I realized something like this existed I was so excited. Being able to only worry about CSS is exactly what I wanted.

Saša Šijak 的头像
Saša Šijak1 年前

react-aria &gt;&gt;&gt; radix

相关视频