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 2023-12-29] [$500] Desktop - Chat - Infinite loading displayed on selected chat when navigate to RHP with deeplink #33149

Closed
2 of 6 tasks
izarutskaya opened this issue Dec 15, 2023 · 19 comments
Assignees
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. Daily KSv2 External Added to denote the issue can be worked on by a contributor

Comments

@izarutskaya
Copy link

izarutskaya commented Dec 15, 2023

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: 1.4.13-0
Reproducible in staging?: Y
Reproducible in production?: Y
If this was caught during regression testing, add the test name, ID and link from TestRail:
Email or phone of affected tester (no customers):
Logs: https://stackoverflow.com/c/expensify/questions/4856
Expensify/Expensify Issue URL:
Issue reported by: Applause-Internal Team
Slack conversation: @

Action Performed:

Precondition: user should be Signed Out on Desktop

  1. Open http://staging.new.expensify.com/
    in Web and select any conversation in LHN
  2. Navigate on http://staging.new.expensify.com/enable-payments
  3. Click on "Allow" to open the Desktop app
  4. Click outside of the RHP to close it

Expected Result:

Previously selected chat should be loaded and properly displayed

Actual Result:

Infinite loading displayed on selected conversation when navigate to RHP with deeplink

Workaround:

Unknown

Platforms:

Which of our officially supported platforms is this issue occurring on?

  • Android: Native
  • Android: mWeb Chrome
  • iOS: Native
  • iOS: mWeb Safari
  • MacOS: Chrome / Safari
  • MacOS: Desktop

Screenshots/Videos

Bug6313239_1702568224062.Screen_Recording_2023-12-14_at_14.36.05.mp4

View all open jobs on GitHub

Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~01ae306e7095356be1
  • Upwork Job ID: 1735616582656286720
  • Last Price Increase: 2023-12-15
  • Automatic offers:
    • ikevin127 | Contributor | 28064493
@izarutskaya izarutskaya 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 Dec 15, 2023
@melvin-bot melvin-bot bot changed the title Desktop - Chat - Infinite loading displayed on selected chat when navigate to RHP with deeplink [$500] Desktop - Chat - Infinite loading displayed on selected chat when navigate to RHP with deeplink Dec 15, 2023
Copy link

melvin-bot bot commented Dec 15, 2023

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

Copy link

melvin-bot bot commented Dec 15, 2023

Triggered auto assignment to @Christinadobrzyn (Bug), see https://stackoverflow.com/c/expensify/questions/14418 for more details.

@melvin-bot melvin-bot bot added the Help Wanted Apply this label when an issue is open to proposals by contributors label Dec 15, 2023
Copy link

melvin-bot bot commented Dec 15, 2023

Bug0 Triage Checklist (Main S/O)

  • This "bug" occurs on a supported platform (ensure Platforms in OP are ✅)
  • This bug is not a duplicate report (check E/App issues and #expensify-bugs)
    • If it is, comment with a link to the original report, close the issue and add any novel details to the original issue instead
  • This bug is reproducible using the reproduction steps in the OP. S/O
    • If the reproduction steps are clear and you're unable to reproduce the bug, check with the reporter and QA first, then close the issue.
    • If the reproduction steps aren't clear and you determine the correct steps, please update the OP.
  • This issue is filled out as thoroughly and clearly as possible
    • Pay special attention to the title, results, platforms where the bug occurs, and if the bug happens on staging/production.
  • I have reviewed and subscribed to the linked Slack conversation to ensure Slack/Github stay in sync

Copy link

melvin-bot bot commented Dec 15, 2023

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

@ikevin127
Copy link
Contributor

ikevin127 commented Dec 15, 2023

Proposal

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

Infinite loading displayed on selected conversation when navigate to RHP with deeplink to desktop app.

Note: The issue happens as long as any RHP is opened and transition to desktop app is performed, it doesn't have to be https://staging.new.expensify.com/enable-payments, it can be settings https://staging.new.expensify.com/settings on any other route that has the RHP open.

Besides the current issue, there's another issue:

  • once navigated to the desktop app and the infinite loading is seen (current issue)
  • close the RHP by clicking outside of it
  • open settings RHP (click on profile pic) and Logout
MacOS: Desktop - Logout issue
Screen.Recording.2023-12-15.at.14.36.16.mov

What is the root cause of that problem?

The reason why we get the infinite loading spinner once transitioned to the desktop app is because the app is calling navigate with transition route when not necesarry. Because the route is not handled by the react navigator, this causes the infinite loading spinner and the logout issue mentioned above.

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

Navigation.navigate(route as Route, CONST.NAVIGATION.ACTION_TYPE.PUSH);

We have to make sure that the transition route passed from the main electron process is NOT called by the navigator once we are transitioned into the desktop app, we check if the following conditions are true:

  • the platform is desktop
  • route is transition type

then we return meaning we don't call the react navigation with the transition route which would cause the infinite loading spinner.

...

                // If the platform is desktop and route is `transition` we don't want to call navigate
                // to the route because it will display the infinite loading indicator.
                // See issue: https://github.com/Expensify/App/issues/33149
+               if (getPlatform() === CONST.PLATFORM.DESKTOP && route.includes(ROUTES.TRANSITION_BETWEEN_APPS) {
+                   return;
+               }

             Navigation.navigate(route, CONST.NAVIGATION.TYPE.PUSH);

Videos

MacOS: Desktop
stg-fix.mov

@narefyev91
Copy link
Contributor

Proposal from @ikevin127 looks good to me #33149 (comment)
🎀 👀 🎀 C+ reviewed

Copy link

melvin-bot bot commented Dec 15, 2023

Triggered auto assignment to @lakchote, see https://stackoverflow.com/c/expensify/questions/7972 for more details.

@lakchote
Copy link
Contributor

Thanks @narefyev91 for your review.

@ikevin127's proposal LGTM 👍

@melvin-bot melvin-bot bot removed the Overdue label Dec 18, 2023
@melvin-bot melvin-bot bot removed the Help Wanted Apply this label when an issue is open to proposals by contributors label Dec 18, 2023
Copy link

melvin-bot bot commented Dec 18, 2023

📣 @ikevin127 🎉 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 📖

@ikevin127
Copy link
Contributor

@narefyev91 PR ready for review #33225 🚀

@melvin-bot melvin-bot bot added Weekly KSv2 Awaiting Payment Auto-added when associated PR is deployed to production and removed Weekly KSv2 labels Dec 22, 2023
@melvin-bot melvin-bot bot changed the title [$500] Desktop - Chat - Infinite loading displayed on selected chat when navigate to RHP with deeplink [HOLD for payment 2023-12-29] [$500] Desktop - Chat - Infinite loading displayed on selected chat when navigate to RHP with deeplink Dec 22, 2023
Copy link

melvin-bot bot commented Dec 22, 2023

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

@melvin-bot melvin-bot bot removed the Reviewing Has a PR in review label Dec 22, 2023
Copy link

melvin-bot bot commented Dec 22, 2023

The solution for this issue has been 🚀 deployed to production 🚀 in version 1.4.15-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 2023-12-29. 🎊

After the hold period is over and BZ checklist items are completed, please complete any of the applicable payments for this issue, and check them off once done.

  • External issue reporter
  • Contributor that fixed the issue
  • Contributor+ that helped on the issue and/or PR

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

Copy link

melvin-bot bot commented Dec 22, 2023

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:

  • [@narefyev91] The PR that introduced the bug has been identified. Link to the PR:
  • [@narefyev91] 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:
  • [@narefyev91] 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:
  • [@narefyev91] Determine if we should create a regression test for this bug.
  • [@narefyev91] 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.
  • [@Christinadobrzyn] Link the GH issue for creating/updating the regression test once above steps have been agreed upon:

@melvin-bot melvin-bot bot added Daily KSv2 and removed Weekly KSv2 labels Dec 28, 2023
Copy link

melvin-bot bot commented Dec 29, 2023

Issue is ready for payment but no BZ is assigned. @laurenreidexpensify you are the lucky winner! Please verify the payment summary looks correct and complete the checklist. Thanks!

Copy link

melvin-bot bot commented Jan 1, 2024

@lakchote, @narefyev91, @Christinadobrzyn, @ikevin127 Uh oh! This issue is overdue by 2 days. Don't forget to update your issues!

Copy link

melvin-bot bot commented Jan 1, 2024

@lakchote, @narefyev91, @Christinadobrzyn, @ikevin127 Whoops! This issue is 2 days overdue. Let's get this updated quick!

@Christinadobrzyn
Copy link
Contributor

Payouts due:

Issue Reporter: NA
Contributor: NA- paid as external contributor through Callstack
Contributor+: $500 @ikevin127 (paid through Upwork)

Eligible for 50% #urgency bonus? N

Upwork job is here.

@narefyev91 can you let us know about a regression test?

@melvin-bot melvin-bot bot removed the Overdue label Jan 3, 2024
@narefyev91
Copy link
Contributor

  • The PR that introduced the bug has been identified. Link to the PR - it was not a regression - just missing functionality
  • 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 - N/A
  • 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 - N/A
  • Determine if we should create a regression test for this bug - N/A

@Christinadobrzyn
Copy link
Contributor

sounds good! I think we can close this!

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. Daily KSv2 External Added to denote the issue can be worked on by a contributor
Projects
None yet
Development

No branches or pull requests

6 participants