-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(CustomSelect): fix props.options and local state option syncronization #8365
fix(CustomSelect): fix props.options and local state option syncronization #8365
Conversation
Use local options which we use as filtered data with useMemo No more usage of options as state, since it takes at least one render to update local option in useEffect and show options in the dropdown. It's not working properly when we fetch options with opened dropdown. Since it shows for a moment that there is no options, while they are here, just local state is not updated.
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
size-limit report 📦
|
e2e tests |
👀 Docs deployed
Commit 806e079 |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #8365 +/- ##
=======================================
Coverage 95.42% 95.42%
=======================================
Files 409 409
Lines 11649 11651 +2
Branches 3859 3862 +3
=======================================
+ Hits 11116 11118 +2
Misses 533 533
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
2025-03-14.17.43.21.movТакую штуку заметила, что при повторном поиске ранее выбранной опции она на некоторое время подсвечивается и потом сбрасывается 🤔 |
О, интересно, спасибо, посмотрю! Тоже, видимо с обновлением индексов дело. Пока переведу в драфт. |
@BlackySoul
Связано с тем, что когда у нас мышка на инпуте, то после открытия дропдауна тригерится событие Поправил, с помощью проверки, что мышка не двигалась в момент события |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🥇
каждый кто чинит CustomSelect
автоматом становится героем) очень сложный компонент в 1000 строк
Описание
В #8334 видно, что при асинхронной загрузке опций есть лаг между тем когда
fetching
уже неtrue
, но опций ещё нет и мы в дропдауне, вместо лоадера, выводимНичего не найдено
.Опций нет по той причине, что рендерим мы опции из локального стейта, который мы синхронизируем с props.options, а синхронизируем мы через
useEffect
.Получается, что должен сработать
useEffect
прежде чем новые, загруженные опции пользователя, переданные черезprops.options
, попадут в рендер дропдауна.Изменения
options
, вместо этогоoptions
это результат фильтрацииprops.options
, обёрнутой вuseMemo
.onChange
при клике на опцию из списка.Раньше она была основана на проверке по индексам опций в списке, типа
selectedOptionIndex
, индекс брался изoptions
, отфильтрованной версииprops.options
.Теперь такая логика не работает для принятия решения по вызову
props.onChange
, потому чтоoptions
фильтруются быстрее, а значит ссылаться на опцию по индексу опасно, индекс опции уже может поменяться между кликом по опции и моментом, когда мы начнём принимать решение о вызовеonChange
.Переехали на проверку по значению
nativeSelectValue
/prevNativeSelectValue
, а не по индексу.Release notes
Исправления
props.options
при асинхронной загрузке