perf(Search): remove policyForMovingExpenses object from getSections memo#93432
Draft
BartekObudzinski wants to merge 2 commits into
Draft
perf(Search): remove policyForMovingExpenses object from getSections memo#93432BartekObudzinski wants to merge 2 commits into
BartekObudzinski wants to merge 2 commits into
Conversation
Codecov Report❌ Looks like you've decreased code coverage for some files. Please write tests to increase, or at least maintain, the existing level of code coverage. See our documentation here for how to interpret this table.
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Explanation of Change
This is a follow-up performance slice for the Search decomposition work. It removes the
policyForMovingExpensespolicy object from the screen-levelgetSectionsmemo insrc/components/Search/index.tsx.Previously the full policy object was passed into
getSections(call arg +useMemodep array) and threaded down intogetTransactionsSectionsinsrc/libs/SearchUIUtils.ts, where it was used only to computeshouldShowAttendeesfor unreported transactions. Because a policy object's reference changes on every unrelated update to that policy (e.g. Pusher pushes touching any field), thegetSectionsmemo was being invalidated and recomputed on changes that have nothing to do with what it actually needs.getSectionsnever needed the object: the only thing it derives from it is the booleanshouldShowAttendees(SUBMIT, policyForMovingExpenses), which gates whether attendees are populated on unreported transactions for the attendees sort columns. So instead of the object, the screen now passes the precomputed booleanisAttendeesEnabledForMovingPolicy(already computed once at the screen level). That boolean only flips when attendee tracking on the moving policy actually toggles, so the memo no longer recomputes on unrelated policy churn. Sort behavior is preserved exactly (the unreported branch resolves to the same value it did before).Separately, the
isAttendeesEnabledForMovingPolicyboolean used to be drilled from the Search screen down throughSearchList→BaseSearchList→TransactionListItemto gate attendees display on the row. That drill (including a FlashListextraDataentry that re-rendered every row when the moving policy changed) is removed.TransactionListItemalready callsusePolicyForMovingExpenses()for sorting, so it now derives its own display gate from that same live hook. This keeps the row's attendees display reactive to the row's own live data without coupling it to the screen.usePolicyForMovingExpenses()andpolicyForMovingExpensesID(used by the sort sections) are kept unchanged.Performance
Removes
policyForMovingExpenses(a policy object) fromgetSections, so the screen-levelgetSectionsmemo no longer recomputes when unrelated fields of that policy change (Pusher pushes). The memo now depends on a stable boolean that only flips when attendee tracking on the moving policy toggles. Attendees display is now computed at the row from the row's own live policy data instead of being drilled from the screen, which also removes the moving-policy entry from the FlashListextraDataarray (it no longer invalidates every row on policy changes).Fixed Issues
$ #92079
PROPOSAL:
Tests
Offline tests
The change only relocates where an existing, already-loaded boolean is computed; it does not add any network request. Repeat the Tests above while offline and verify attendees render identically to the online behavior.
QA Steps
// TODO: These must be filled out, or the issue title must include "[No QA]."
PR Author Checklist
### Fixed Issuessection aboveTestssectionOffline stepssectionQA stepssectiontoggleReportand notonIconClick)src/languages/*files and using the translation methodSTYLE.md) were followedAvatar, I verified the components usingAvatarare working as expected)StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))npm run compress-svg)Avataris modified, I verified thatAvataris working as expected in all cases)Designlabel and/or tagged@Expensify/designso the design team can review the changes.ScrollViewcomponent to make it scrollable when more elements are added to the page.mainbranch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTeststeps.Screenshots/Videos
Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari