Skip to content
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

[HOLD for payment 2024-06-11] CRITICAL: [Track Expense] [$250] Self DM doesn't scroll down when tracking new expense #40664

Open
quinthar opened this issue Apr 21, 2024 · 65 comments
Assignees
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. External Added to denote the issue can be worked on by a contributor Weekly KSv2

Comments

@quinthar
Copy link

quinthar commented Apr 21, 2024

Problem:

When viewing the self DM on desktop Chrome, and adding a new tracked expense, it should scroll down to show the new tracked expense just like when you post a message it will scroll down to show the new message. Similarly, when the actionable whisper comes after it, the screen should scroll down to show it. However, it doesn't.

Slack discussion (and video) here: https://expensify.slack.com/archives/C049HHMV9SM/p1713729858187919

Solution:

Two things:

  1. Auto-scroll the selfDM upon tracking a new expense to show the newly tracked expense
  2. Auto-scroll again when an actionable whisper appears
Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~01e9e386da4e15219d
  • Upwork Job ID: 1782138796167315456
  • Last Price Increase: 2024-04-21
  • Automatic offers:
    • rojiphil | Reviewer | 0
    • tienifr | Contributor | 0
Issue OwnerCurrent Issue Owner: @CortneyOfstad
@quinthar quinthar added External Added to denote the issue can be worked on by a contributor Daily KSv2 Bug Something is broken. Auto assigns a BugZero manager. labels Apr 21, 2024
Copy link

melvin-bot bot commented Apr 21, 2024

Job added to Upwork: https://www.upwork.com/jobs/~01e9e386da4e15219d

@melvin-bot melvin-bot bot changed the title CRITICAL: Self DM doesn't scroll down when tracking new expense [$250] CRITICAL: Self DM doesn't scroll down when tracking new expense Apr 21, 2024
@melvin-bot melvin-bot bot added the Help Wanted Apply this label when an issue is open to proposals by contributors label Apr 21, 2024
Copy link

melvin-bot bot commented Apr 21, 2024

Triggered auto assignment to Contributor-plus team member for initial proposal review - @rojiphil (External)

Copy link

melvin-bot bot commented Apr 21, 2024

Triggered auto assignment to @CortneyOfstad (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.

@quinthar quinthar changed the title [$250] CRITICAL: Self DM doesn't scroll down when tracking new expense CRITICAL: [Track Expense] Self DM doesn't scroll down when tracking new expense Apr 21, 2024
@quinthar quinthar changed the title CRITICAL: [Track Expense] Self DM doesn't scroll down when tracking new expense CRITICAL: [Track Expense] [$250] Self DM doesn't scroll down when tracking new expense Apr 21, 2024
Copy link

melvin-bot bot commented Apr 21, 2024

⚠️ This issue has had its price increased by 4x or more. Please review the issue and ensure the price is correct.

Copy link

melvin-bot bot commented Apr 21, 2024

Upwork job price has been updated to $250

@Pycomet
Copy link

Pycomet commented Apr 22, 2024

Contributor details
Your Expensify account email: alfredemmanuelinyang@gmail.com
Upwork Profile Link: https://www.upwork.com/freelancers/codefred

This is my first proposal to work for Expensify. I've been able to test with the app, but not yet able to preview the video as I am waiting on my slack invite.

Copy link

melvin-bot bot commented Apr 22, 2024

✅ Contributor details stored successfully. Thank you for contributing to Expensify!

@charles-liang
Copy link
Contributor

charles-liang commented Apr 22, 2024

Contributor details
Your Expensify account email: charles.xy.liang@gmail.com
Upwork Profile Link: https://www.upwork.com/freelancers/~01620db3c30d4b7945

Copy link

melvin-bot bot commented Apr 22, 2024

⚠️ Missing/invalid email or upwork profile link. Please make sure you add both your Expensify email and Upwork profile link in the format specified.

@tienifr
Copy link
Contributor

tienifr commented Apr 22, 2024

Proposal

Please re-state the problem that we are trying to solve in this issue.

Self DM doesn't scroll down when tracking new expense

What is the root cause of that problem?

Here, we're early returning (thus not scrolling user to the bottom) if hasNewestReportActionRef.current is false. This is because in case of comment linking, where hasNewestReportAction is false, we don't want to scroll users to the bottom and distracting them from the comment they're viewing.

But when we check hasNewestReportAction here, we're checking equality of sortedReportActions?.[0].created and report.lastVisibleActionCreated.

This doesn't work some cases:

  • When the latest report action is a ACTIONABLETRACKEXPENSEWHISPER, the created of that report action is slightly more than lastVisibleActionCreated of the report (probably because in the back-end the date was generated at different times)
  • If offline mode, when we create a new track expense, we're not setting report.lastVisibleActionCreated of the chat report to the created of the latest iou action, so sortedReportActions?.[0].created and report.lastVisibleActionCreated are different, and when we send a comment after that, it will never scroll to the bottom

What changes do you think we should make in order to solve the problem?

We should update this to use >= check instead.

The only case where it does not hasNewestReportAction is when the sortedReportActions?.[0].created is smaller than report.lastVisibleActionCreated. That means we're only loading the relevant report actions to the linked comment, not the latest. But as long as the created of the latest action is equal or bigger than report.lastVisibleActionCreated, that means we already fetched the latest report actions up until report.lastVisibleActionCreated date, so we have the latest

What alternative solutions did you explore? (Optional)

We can keep the strict equal condition, but will need to:

  • Update the back-end to always have report.lastVisibleActionCreated strictly equal to the created of it's latest report action (like in the case of ACTIONABLETRACKEXPENSEWHISPER)
  • Update the optimistic data of the chatReport/iouReport when tracking expenses, to set lastVisibleActionCreated equal to the created of the newly added iouAction. And we need to double check other types of report actions too and make sure lastVisibleActionCreated is set properly (track expense for workspace, task, ...)

Currently the ACTIONABLETRACKEXPENSEWHISPER is not created optimistically when tracking expenses, if we want to create it optimistically, the approach will be the same but there'll be a few additional changes as suggested here.

@sword1202
Copy link

Contributor details
Expensify account email: payoneermap1202@gmail.com
Upwork Profile Link: https://www.upwork.com/freelancers/~0194d962e1f9098218

Copy link

melvin-bot bot commented Apr 22, 2024

📣 @sword1202! 📣
Hey, it seems we don’t have your contributor details yet! You'll only have to do this once, and this is how we'll hire you on Upwork.
Please follow these steps:

  1. Make sure you've read and understood the contributing guidelines.
  2. Get the email address used to login to your Expensify account. If you don't already have an Expensify account, create one here. If you have multiple accounts (e.g. one for testing), please use your main account email.
  3. Get the link to your Upwork profile. It's necessary because we only pay via Upwork. You can access it by logging in, and then clicking on your name. It'll look like this. If you don't already have an account, sign up for one here.
  4. Copy the format below and paste it in a comment on this issue. Replace the placeholder text with your actual details.
    Screen Shot 2022-11-16 at 4 42 54 PM
    Format:
Contributor details
Your Expensify account email: <REPLACE EMAIL HERE>
Upwork Profile Link: <REPLACE LINK HERE>

@sword1202
Copy link

Contributor details
Your Expensify account email: payoneermap1202@gmail.com
Upwork Profile Link: https://www.upwork.com/freelancers/~0194d962e1f9098218

Copy link

melvin-bot bot commented Apr 22, 2024

✅ Contributor details stored successfully. Thank you for contributing to Expensify!

@saifelance
Copy link

saifelance commented Apr 22, 2024

Proposal

Please re-state the problem that we are trying to solve in this issue.

Self DM doesn't scroll down when tracking new expense

What is the root cause of that problem?

Here, we're early returning (thus not scrolling user to the bottom) if hasNewestReportActionRef.current is false. This is because in case of comment linking, where hasNewestReportAction is false, we don't want to scroll users to the bottom and distracting them from the comment they're viewing.

But when we check hasNewestReportAction here, we're checking equality of sortedReportActions?.[0].created and report.lastVisibleActionCreated.

This doesn't work some cases:

  • When the latest report action is a ACTIONABLETRACKEXPENSEWHISPER, the created of that report action is slightly more than lastVisibleActionCreated of the report (probably because in the back-end the date was generated at different times)
  • If offline mode, when we create a new track expense, we're not setting report.lastVisibleActionCreated of the chat report to the created of the latest iou action, so sortedReportActions?.[0].created and report.lastVisibleActionCreated are different, and when we send a comment after that, it will never scroll to the bottom

What changes do you think we should make in order to solve the problem?

We should update this to use >= check instead.

The only case where it does not hasNewestReportAction is when the sortedReportActions?.[0].created is smaller than report.lastVisibleActionCreated. That means we're only loading the relevant report actions to the linked comment, not the latest. But as long as the created of the latest action is equal or bigger than report.lastVisibleActionCreated, that means we already fetched the latest report actions up until report.lastVisibleActionCreated date, so we have the latest

What alternative solutions did you explore? (Optional)

We can keep the strict equal condition, but will need to:

  • Update the back-end to always have report.lastVisibleActionCreated strictly equal to the created of it's latest report action (like in the case of ACTIONABLETRACKEXPENSEWHISPER)
  • Update the optimistic data of the chatReport/iouReport when tracking expenses, to set lastVisibleActionCreated equal to the created of the newly added iouAction. And we need to double check other types of report actions too and make sure lastVisibleActionCreated is set properly (track expense for workspace, task, ...)

@tienifr

The issue at hand is that the self direct message (DM) chat window fails to scroll down when tracking a new expense.

Root Cause:
The scrolling behavior is affected by the conditional logic checking the value of hasNewestReportActionRef.current. This logic prevents scrolling to the bottom if hasNewestReportActionRef.current is false, which occurs in scenarios like comment linking where scrolling down might be distracting. However, the comparison used (sortedReportActions?.[0].created andreport.lastVisibleActionCreated) leads to inconsistencies:

When the latest report action is of type ACTIONABLETRACKEXPENSEWHISPER, their created timestamps might not match exactly, likely due to differences in backend processing times.
In offline mode, the report.lastVisibleActionCreated isn't updated properly when a new expense is tracked, causing a discrepancy between sortedReportActions?.[0].created and report.lastVisibleActionCreated

To address this issue, we should modify the comparison logic to use a greater than or equal to (>=) check instead of strict equality. This change ensures that scrolling occurs if the created timestamp of the latest action is equal to or greater than report.lastVisibleActionCreated, indicating that the latest actions have been fetched.

Alternative Solutions Considered:
While retaining the strict equality condition is an option, it would necessitate updates in both the backend and the front end:

Backend updates to ensure report.lastVisibleActionCreated is strictly equal to the created timestamp of the latest report action, especially for ACTIONABLETRACKEXPENSEWHISPER.
Front end updates to optimistically set lastVisibleActionCreated to match the created timestamp of newly added report actions (e.g., track expenses for workspace, task, etc.). This approach requires thorough verification for different types of report actions to ensure lastVisibleActionCreated is set accurately.

Copy link

melvin-bot bot commented Apr 23, 2024

⚠️ Looks like this issue was linked to a Deploy Blocker here

If you are the assigned CME please investigate whether the linked PR caused a regression and leave a comment with the results.

If a regression has occurred and you are the assigned CM follow the instructions here.

If this regression could have been avoided please consider also proposing a recommendation to the PR checklist so that we can avoid it in the future.

@saifelance
Copy link

@MelvinBot I haven't received yet any upwork job offer? So will wait If we mutually agree to a work contract.

@tienifr
Copy link
Contributor

tienifr commented Apr 23, 2024

@saifelance you're new here. Please carefully read the contributing guidelines https://github.com/Expensify/App/blob/main/contributingGuides%2FCONTRIBUTING.md and every markdown file in the project to understand how contributors can work.

@melvin-bot melvin-bot bot added the Overdue label Apr 24, 2024
@CortneyOfstad
Copy link
Contributor

@rojiphil any feedback on the proposal listed?

@melvin-bot melvin-bot bot added Weekly KSv2 and removed Daily KSv2 labels May 9, 2024
@CortneyOfstad
Copy link
Contributor

Was deployed to production 2 days ago by Yuwen. Going to adjust the title to reflect payment 👍

@CortneyOfstad CortneyOfstad added the Awaiting Payment Auto-added when associated PR is deployed to production label May 10, 2024
@CortneyOfstad CortneyOfstad changed the title CRITICAL: [Track Expense] [$250] Self DM doesn't scroll down when tracking new expense [PAYMENT 5/15] CRITICAL: [Track Expense] [$250] Self DM doesn't scroll down when tracking new expense May 10, 2024
@CortneyOfstad
Copy link
Contributor

Payment is set for May 15. In the meantime @rojiphil can you confirm if this will need a regression test or not? That way we can have that completed in advance and avoid any delay in payment. If that could be completed by EOD Monday, that would be great — thanks!

@tienifr
Copy link
Contributor

tienifr commented May 10, 2024

@CortneyOfstad No. The PR is still in review #41634. cc @rojiphil Please help review the PR once you have a chance.

@CortneyOfstad CortneyOfstad changed the title [PAYMENT 5/15] CRITICAL: [Track Expense] [$250] Self DM doesn't scroll down when tracking new expense CRITICAL: [Track Expense] [$250] Self DM doesn't scroll down when tracking new expense May 15, 2024
@CortneyOfstad
Copy link
Contributor

@tienifr thank you! I adjusted the title. @rojiphil — any update on the PR review?

@rojiphil
Copy link
Contributor

@CortneyOfstad Current status is that @tienifr has to address the review comments here

@melvin-bot melvin-bot bot added Daily KSv2 and removed Weekly KSv2 labels May 16, 2024
@CortneyOfstad
Copy link
Contributor

We're in a merge freeze until Wednesday

@CortneyOfstad
Copy link
Contributor

Merge freeze is planned to end today 🤞

Copy link

melvin-bot bot commented May 23, 2024

@rojiphil, @marcochavezf, @CortneyOfstad, @tienifr Uh oh! This issue is overdue by 2 days. Don't forget to update your issues!

@rojiphil
Copy link
Contributor

@marcochavezf Please let us know your inputs on the comment here. Thanks.

Copy link

melvin-bot bot commented May 27, 2024

@rojiphil, @marcochavezf, @CortneyOfstad, @tienifr Still overdue 6 days?! Let's take care of this!

@CortneyOfstad
Copy link
Contributor

Bump @marcochavezf here. Thanks!

@rojiphil
Copy link
Contributor

@CortneyOfstad The comments as mentioned here are clarified already.
The current status is that I have just now approved the PR. Now, waiting for the final review from @marcochavezf

@melvin-bot melvin-bot bot added Weekly KSv2 and removed Daily KSv2 Weekly KSv2 labels May 29, 2024
@melvin-bot melvin-bot bot changed the title CRITICAL: [Track Expense] [$250] Self DM doesn't scroll down when tracking new expense [HOLD for payment 2024-06-11] CRITICAL: [Track Expense] [$250] Self DM doesn't scroll down when tracking new expense Jun 4, 2024
Copy link

melvin-bot bot commented Jun 4, 2024

Reviewing label has been removed, please complete the "BugZero Checklist".

@melvin-bot melvin-bot bot removed the Reviewing Has a PR in review label Jun 4, 2024
Copy link

melvin-bot bot commented Jun 4, 2024

The solution for this issue has been 🚀 deployed to production 🚀 in version 1.4.78-5 and is now subject to a 7-day regression period 📆. Here is the list of pull requests that resolve this issue:

If no regressions arise, payment will be issued on 2024-06-11. 🎊

For reference, here are some details about the assignees on this issue:

Copy link

melvin-bot bot commented Jun 4, 2024

BugZero Checklist: The PR fixing this issue has been merged! The following checklist (instructions) will need to be completed before the issue can be closed:

  • [@rojiphil] The PR that introduced the bug has been identified. Link to the PR:
  • [@rojiphil] 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:
  • [@rojiphil] A discussion in #expensify-bugs 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:
  • [@rojiphil] Determine if we should create a regression test for this bug.
  • [@rojiphil] If we decide to create a regression test for the bug, please propose the regression test steps to ensure the same bug will not reach production again.
  • [@CortneyOfstad] Link the GH issue for creating/updating the regression test once above steps have been agreed upon:

@CortneyOfstad
Copy link
Contributor

@rojiphil can you have the checklist as soon as you have a chance? Just want to make sure there is no delays in issuing payments. Thank you!

@tienifr
Copy link
Contributor

tienifr commented Jun 7, 2024

Critical / High-priority issues will remain at $500.

@CortneyOfstad This is a CRITICAL issue so according to the announcement, this should start at $500. Could you help to update the issue to reflect the same?

TIA!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. External Added to denote the issue can be worked on by a contributor Weekly KSv2
Projects
Status: CRITICAL
Development

No branches or pull requests

10 participants