You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure where to put this but I thought this might be useful for other people!
The <Listbox /> component works really well for filtering and sorting, the tricky part for me was to figure out that the key prop needs to include the array index otherwise keyboard interaction doesn't work correctly since internally the options would keep their initial order.
Here's a heavily simplified example that I can share:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Not sure where to put this but I thought this might be useful for other people!
The
<Listbox />
component works really well for filtering and sorting, the tricky part for me was to figure out that thekey
prop needs to include the array index otherwise keyboard interaction doesn't work correctly since internally the options would keep their initial order.Here's a heavily simplified example that I can share:
I use match-sorter to do the actual filtering and sorting.
Beta Was this translation helpful? Give feedback.
All reactions