Open lanitochka17 opened 1 month ago
Triggered auto assignment to @lschurr (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.
@lschurr 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
Edited by proposal-police: This proposal was edited at 2024-10-31 14:40:48 UTC.
Rate added offline seen grayed out going online then back offline
This issue occurs because all rates (even those not being deleted) are included in optimisticData
and successData
Later, when successData
is applied, it unintentionally overrides changes made by the CreatePolicyDistanceRate
request.
The flow is as follows:
optimisticData
is appliedoptimisticData
is appliedsuccessData
is applied: it sets the pendingAction
prop on Rate B to null (correct)successData
is applied: it sets the pendingAction
prop on Rate B back to the previous value (incorrect) We should remove this else
block:
It was added in #38237 when this feature was first implemented. A few months later it was moved from Policy.ts
to DistanceRate.ts
to reduce the file size. There don't seem to be any discussions about it so I believe it was added by mistake and overlooked during the review.
Job added to Upwork: https://www.upwork.com/jobs/~021849920398995761024
Triggered auto assignment to Contributor-plus team member for initial proposal review - @allgandalf (External
)
@lschurr, @allgandalf Uh oh! This issue is overdue by 2 days. Don't forget to update your issues!
@allgandalf could you review the proposal?
This issue occurs because all rates (even those not being deleted) are included in optimisticData and successData.
@CyberAndrii can you dig more into the RCA? there must be a reason that we included those rates there. please try to find the PR and intension of the data added there
It turns out that removing the spread of non-modified properties (e.g. ...currentRates[rateID]
) is not required, as I thought, but it is still weird. All it needs is customUnitRateID
property.
cc @allgandalf
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸
@allgandalf could you review the updated proposal?
Bumped in Slack - https://expensify.slack.com/archives/C01GTK53T8Q/p1730735812544159
@lschurr, @allgandalf Eep! 4 days overdue now. Issues have feelings too...
@CyberAndrii can you please provide me a test branch? I would like to test some things before moving forward with your solution (FYI, your RCA sounds correct to me)
@allgandalf just this 1 change
testing the proposed change ....
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸
@lschurr, @allgandalf Whoops! This issue is 2 days overdue. Let's get this updated quick!
Any update @allgandalf?
@lschurr, @allgandalf Whoops! This issue is 2 days overdue. Let's get this updated quick!
@CyberAndrii thanks a lot, your RCA makes a lot of sense to me and is indeed correct.
I have asked the original author https://github.com/Expensify/App/pull/42786/files#r1837785964 about why that block was introduced, we should have an update by tomorrow before going with your solution
Update: the original author is OoO, I will bump them again next week
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸
Distance Rate displayed as grayed out when transitioning from offline to online and back to offline.
We cloned entire value including pendingAction when we create successData
here
When we add new distance rate and delete existing distance rate in offline, the add
pendingAction
will be cloned in that code, this will create issue if the create request completed, because that pendingAction
is not cleared.
We cleared pendingAction
when createPolicyDistanceRate
success
That's why the issue not occurred if we reverse the order: delete rate A then add new rate B.
We should also clean that pendingAction
when deletePolicyDistanceRates
success
Change:
To
successRates[rateID] = {
...currentRates[rateID],
pendingAction: null,
};
N/A
still pending (comment)
Relabelling as Lauren is OOO now.
Triggered auto assignment to @puneetlath (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.
Not overdue, waiting for reply
@puneetlath @lschurr @allgandalf this issue is now 4 weeks old, please consider:
Thanks!
waiting for reply, i will bump once again
@dangrous answered here: https://github.com/Expensify/App/pull/42786/files#r1838227400. What are we still waiting for?
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸
Oops my bad, I didn't update the slack link in this issue, the original author was neil here, and they were OoO that week, I will bump them again on slack.
@puneetlath, @lschurr, @allgandalf Whoops! This issue is 2 days overdue. Let's get this updated quick!
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.53-1 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+ck1024@applause.expensifail.com Issue reported by: Applause - Internal Team
Issue found when executing PR https://github.com/Expensify/App/pull/51159
Action Performed:
Precondition: Have both perdiem and distance rates set up in OldDot.
Expected Result:
The new rate (added offline) which is active/bolded after going back online should stay bolded after user go offline again
Actual Result:
The new rate added offline becomes active when going online. But seen grayed out when user go offline again after the distance rate is completely active The same rate seen grayed out every time user go offline
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/17d955e0-9ef3-4fba-a27f-49d7791fb0c0
View all open jobs on GitHub
Upwork Automation - Do Not Edit
Issue Owner
Current Issue Owner: @allgandalf