Closed lanitochka17 closed 1 week ago
Triggered auto assignment to @OfstadC (Bug
), see https://stackoverflow.com/c/expensify/questions/14418 for more details. Please add this bug to a GH project, as outlined in the SO.
@OfstadC FYI I haven't added the External label as I wasn't 100% sure about this issue. Please take a look and add the label if you agree it's a bug and can be handled by external contributors
We think that this bug might be related to #vip-bills
Edited by proposal-police: This proposal was edited at 2024-10-17 15:38:53 UTC.
Invoices - Unable to select payment option in the dropdown in expense preview in the main chat
In the ReportPreview
component, when users click on options in the SettlementButton
that have submenus, the submenu fails to display properly. Instead, the popover menu blinks
The issue occurs because the menuItems
prop passed to the PopoverMenu
component changes on every render due to unstable function references. Specifically:
In SettlementButton
, the onOptionSelected
function changes on every render because it's recreated each time without memoization.
In ButtonWithDropdownMenu
, the menuItems
array is recreated on every render because it depends on onOptionSelected
and options
, which are changing references.
This causes the PopoverMenu
to reset its internal state on each render, preventing the submenu from displaying correctly.
Memoize menuItems
in ButtonWithDropdownMenu
:
Use useMemo
to memoize the menuItems
array, ensuring it only changes when options
or onOptionSelected
change.
This prevents unnecessary re-renders and state resets in PopoverMenu
.
// In ButtonWithDropdownMenu.js
const menuItems = useMemo(
() =>
options.map((item, index) => ({
...item,
onSelected: item.onSelected
? () => item.onSelected?.()
: () => {
onOptionSelected?.(item);
setSelectedItemIndex(index);
},
shouldCallAfterModalHide: true,
})),
[options, onOptionSelected],
);
Memoize onOptionSelected
in SettlementButton
:
Use useCallback
to memoize the onOptionSelected
function in SettlementButton
, ensuring it has a stable reference.
This prevents onOptionSelected
from changing on every render, which stabilizes the menuItems
prop.
// In SettlementButton.js
const onOptionSelected = useCallback(
(option) => {
if (policyID === '-1') {
return;
}
savePreferredPaymentMethod(policyID, option.value);
},
[policyID],
);
By making these changes, we stabilize the menuItems
prop passed to PopoverMenu
, which prevents it from resetting its state and allows submenus to display correctly.
https://github.com/user-attachments/assets/4e8970dc-424c-43b7-9e85-d1efc4b342f0
Edited by proposal-police: This proposal was edited at 2024-10-19 06:03:19 UTC.
User is unable to select payment option from the dropdown. App does not proceed after selecting any option from the dropdown
users open payment popover, hovered is true
they hover to payment option -> hovered is false
they select any option, we will render the sublist
The hover event will be detected at the moment when we remove the main list then show the sublist
-> The menuItems will be re-calculated
If the menuItems get changed, we will reset the current menu items
The RCA of this issue is: hovered
value change while showing the sublist (The RCA is not memorize problem since this issue doesn't happen on MoneyReportHeader)
shouldFreezeCapture
ro freeze capture hover event when the popover is visibleso we should apply the same in here
<Hoverable
shouldHandleScroll
isDisabled={draftMessage !== undefined}
shouldFreezeCapture={isPaymentMethodPopoverActive}
>
if shouldFreezeCapture
is true
unsetHoveredIfOutside
at the beginingwe just update this line to
document.addEventListener('mouseover', unsetHoveredIfOutside, true);
@OfstadC Huh... This is 4 days overdue. Who can take care of this?
Job added to Upwork: https://www.upwork.com/jobs/~021848792881281684450
Triggered auto assignment to Contributor-plus team member for initial proposal review - @jayeshmangwani (External
)
Thanks for the proposals. I have tested both, and both will fix the issue. However, I agree with @truph01 that we should return early in the hoverable component to prevent flickering of the hover state value and freeze the hover, This approach will resolve our issue
@truph01 's Proposal looks good to me. We can use shouldFreezeCapture when the popover is visible, so that the menuItems don't recalculate when pressing the SettlementButton.
π π π C+ reviewed
Triggered auto assignment to @aldo-expensify, see https://stackoverflow.com/c/expensify/questions/7972 for more details.
π£ @truph01 π An offer has been automatically sent to your Upwork account for the Contributor role π Thanks for contributing to the Expensify app!
Offer link Upwork job Please accept the offer and leave a comment on the Github issue letting us know when we can expect a PR to be ready for review π§βπ» Keep in mind: Code of Conduct | Contributing π
@truph01 , could you let us know when we can expect the PR?
friendly bump @truph01
I will open PR in a few hours
Thanks for the update
Reviewing
label has been removed, please complete the "BugZero Checklist".
The solution for this issue has been :rocket: deployed to production :rocket: in version 9.0.56-9 and is now subject to a 7-day regression period :calendar:. Here is the list of pull requests that resolve this issue:
If no regressions arise, payment will be issued on 2024-11-11. :confetti_ball:
For reference, here are some details about the assignees on this issue:
@jayeshmangwani @OfstadC The PR fixing this issue has been merged! The following checklist (instructions) will need to be completed before the issue can be closed. Please copy/paste the BugZero Checklist from here into a new comment on this GH and complete it. If you have the K2 extension, you can simply click: [this button]
@jayeshmangwani Please complete the BZ checklist before the payment date. Thanks π
@jayeshmangwani Please complete the BZ checklist so I can issue payment
Really sorry, I missed the BZ checklist , Let me complete it now!
[x] [Contributor] The offending PR has been commented on, pointing out the bug it caused and why, so the author and reviewers can learn from the mistake.
Link to comment: https://github.com/Expensify/App/pull/49051#discussion_r1830739940
[x] [Contributor] If the regression was CRITICAL (e.g. interrupts a core flow) A discussion in #expensify-open-source has been started about whether any other steps should be taken (e.g. updating the PR review checklist) in order to catch this type of bug sooner.
Link to discussion: N/A
[x] [Contributor] If it was decided to create a regression test for the bug, please propose the regression test steps using the template below to ensure the same bug will not reach production again.
Do we agree π or π
Thanks @jayeshmangwani !
If you havenβt already, check out our contributing guidelines for onboarding and email contributors@expensify.com to request to join our Slack channel!
Version Number: 9.0.50-0 Reproducible in staging?: Y Reproducible in production?: Y If this was caught on HybridApp, is this reproducible on New Expensify Standalone?: N/A If this was caught during regression testing, add the test name, ID and link from TestRail: N/A Email or phone of affected tester (no customers): applausetester+kh081006@applause.expensifail.com Issue reported by: Applause - Internal Team
Action Performed:
Expected Result:
User will be able to select payment option from the dropdown
Actual Result:
User is unable to select payment option from the dropdown. App does not proceed after selecting any option from the dropdown
Workaround:
Unknown
Platforms:
Which of our officially supported platforms is this issue occurring on?
Screenshots/Videos
Add any screenshot/video evidence
https://github.com/user-attachments/assets/888e47a3-5b9b-4ed7-a052-629ce9305f98
View all open jobs on GitHub
Upwork Automation - Do Not Edit
Issue Owner
Current Issue Owner: @OfstadC