-
Notifications
You must be signed in to change notification settings - Fork 4k
Search Autocomplete: Always Render with Loading Skeleton & add isReady focus guard #63627
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
Merged
yuwenmemon
merged 16 commits into
Expensify:main
from
callstack-internal:62335-recent-searches
Jun 19, 2025
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
3fc613a
Improvement in showing loading skeleton and autocompletion list in Se…
sosek108 89e2f6a
Merge branch 'main' into 62335-recent-searches
sosek108 4d147cb
Fix lint errors
sosek108 37a55f1
Fix lint errors
sosek108 5f75fa5
Merge branch 'main' into 62335-recent-searches
sosek108 a55a5db
Postpone setAreOptionsInitialized with InteractionManager.runAfterInt…
sosek108 7b2288e
Treat runAfterInteractions options initialization only on mobile
sosek108 c1e2291
Treat runAfterInteractions options initialization only on mobile
sosek108 ca83299
Revert changes in BaseSelectionList and add additional condition to S…
sosek108 58f43d1
Revert changes in BaseSelectionList and add additional condition to S…
sosek108 39da6f4
PR fixes
sosek108 9390bdf
Update src/components/Search/SearchRouter/SearchRouter.tsx
sosek108 a2a3e6e
Update src/components/Search/SearchRouter/SearchRouter.tsx
sosek108 9c9f828
PR fixes
sosek108 01dfa83
fixes from PR
sosek108 004a16e
Show loading skeleton until SelectionList is fully rendered
sosek108 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
If removing this condition, I suggest displaying a loading skeleton if areOptionsInitialized is false. And we only render SelectionList if areOptionsInitialized is true. With this way, we don't need to implement another solution to fix #59552
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.
the problem is that
useOptionListhook and context are very heavy in computation and that blocks UI. On mobile this gives a significant lag while first modal opening.I am working on that
useOptionListoptimisation on another issue