-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Ensure OpenReport is always called when deeplinking from an outside source #15994
Conversation
|
@stitesExpensify Ready to go :D |
Reviewer Checklist
Screenshots/VideosWeb2023-03-15_12-33-45.mp42023-03-15_12-34-07.mp4Mobile Web - Chrome2023-03-15_12-47-37.mp4Mobile Web - Safari2023-03-15_12-35-58.mp42023-03-15_12-39-09.mp4Desktop2023-03-15_12-51-02.mp4iOS2023-03-15_12-35-01.mp4Android2023-03-15_12-41-47.mp42023-03-15_12-45-02.mp4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM and tests well!
…nDidUpdate Ensure OpenReport is always called when deeplinking from an outside source (cherry picked from commit e9c2e0f)
…-15994 🍒 Cherry pick PR #15994 to staging 🍒
🚀 Cherry-picked to staging by https://github.com/jasperhuangg in version: 1.2.85-1 🚀
@Expensify/applauseleads please QA this PR and check it off on the deploy checklist if it passes. |
🚀 Deployed to production by https://github.com/Julesssss in version: 1.2.85-1 🚀
|
🚀 Cherry-picked to staging by https://github.com/AndrewGable in version: 1.3.28-2 🚀
@Expensify/applauseleads please QA this PR and check it off on the deploy checklist if it passes. |
🚀 Deployed to production by https://github.com/AndrewGable in version: 1.3.28-5 🚀
|
// before deciding that we shouldn't call OpenReport. | ||
const onyxReportID = this.props.report.reportID; | ||
const routeReportID = getReportID(this.props.route); | ||
if (routeReportID === prevProps.route.params.reportID && (!onyxReportID || onyxReportID === routeReportID)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This check caused the OpenReport
to be called multiple times when opening a thread. This has been fixed with comparing only the reportIDFromRoute. More info at #51680 .
Details
This fixes an issue where scanning QR codes on Android would cause you to navigate to a "No Access" screen. This was due to a faulty condition in our
componentDidUpdate
logic in the ReportScreen that would prevent OpenReport from being called when you deeplinked to a report on Native platforms from outside the App.This also makes it so I can get rid of a hack I added to get deeplinks within the App to work in the
AnchorRenderer
Fixed Issues
$ N/A
Tests/QA
Deeplinking from within the App
Deeplinking from outside the App
PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)src/languages/*
files and using the translation methodWaiting for Copy
label for a copy review on the original GH to get the correct copy.STYLE.md
) were followedAvatar
, I verified the components usingAvatar
are working as expected)/** comment above it */
this
properly so there are no scoping issues (i.e. foronClick={this.submit}
the methodthis.submit
should be bound tothis
in the constructor)this
are necessary to be bound (i.e. avoidthis.submit = this.submit.bind(this);
ifthis.submit
is never passed to a component event handler likeonClick
)StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)ScrollView
component to make it scrollable when more elements are added to the page.main
branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTest
steps.Screenshots/Videos
Web
web.mov
Mobile Web - Chrome
mweb-chrome.mov
Mobile Web - Safari
mweb-safari.mov
Desktop
desktop.mov
iOS
ios.mp4
Android
android.mov