-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Fix Deeplinks except chat reports are not working on web #26856
Conversation
Only reset root with authenticated route
@eVoloshchak Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button] |
@mountiny @adamgrzybowski PR is ready! |
@hungvu193 the ios recording did not redirect anywhere |
Updated the tests, could you also please run through them and make sure they work across platfroms? @hungvu193 |
Sure, let me give it a try |
@hungvu193 Can you please explain the changes to me? Why were we reset the state there and now how has the behavior changed for that effect? |
According the comment here, We need to force state rehydration so the CustomRouter can add the CentralPaneNavigator route if necessary. However, this also accidentally clear the pending route when user tried to login from deeplink, which made the app couldn't navigate to that route after logging in. My PR prevented that happened. |
It does not give any hint. I am going to test it. |
From route: from.route.movFrom sbe: sbe.mwebmp4.movFrom anonymous user: anonymous.movSAATR: Screen.Recording.2023-09-06.at.17.20.20.mov |
Can't reproduce it now. May be just a glitch. Details: Navigating to the Sbe route after you are logged in directly via URL shows you the anonymous report view for the SBE room with all the chats of the logined user.
|
@parasharrajat can you post it in our conversation in the original issue here? #26852 |
Added details. Probably a glitch but how? |
Screenshots🔲 iOS / nativeScreen.Recording.2023-09-06.at.4.27.03.PM.movScreen.Recording.2023-09-06.at.4.24.21.PM.movScreen.Recording.2023-09-06.at.7.06.52.PM.movScreen.Recording.2023-09-06.at.7.08.55.PM.mov🔲 iOS / SafariScreen.Recording.2023-09-06.at.4.22.54.PM.mov🔲 MacOS / DesktopScreen.Recording.2023-09-08.at.4.09.34.AM.mov🔲 MacOS / ChromeScreen.Recording.2023-09-06.at.4.03.03.PM.mov🔲 Android / ChromeScreen.Recording.2023-09-08.at.3.55.07.AM.movScreen.Recording.2023-09-08.at.4.11.46.AM.mov🔲 Android / nativeIgnore the error, I accessed an internal link. Screen.Recording.2023-09-08.at.4.17.45.AM.mov |
@hungvu193 @parasharrajat for the concierge, sbe and saastr tests, please also adding theese:
|
Clarified that in the test steps |
I am seeing double navigation animation via deeplink on iOS. Checking this on main. Screen.Recording.2023-09-06.at.4.31.16.PM.mov |
@parasharrajat that's existing issue and being addressed here: |
Verified it's working. I'll be afk for next couple of hours, but can still chat, please tag me if you guys have any questions. Thanks! |
Given this might be a bigger change I prefer to test thoroughly |
Hey @parasharrajat can you please tag me on the |
I haven't reported it yet. I will do that in 15-20 mins. |
@mountiny What do you think about that bug #26856 (comment)? I also reported it on Slack https://expensify.slack.com/archives/C049HHMV9SM/p1694080489810799 |
@parasharrajat I think thats same as the enable-payments? Does that work in this case? Why would it be different? |
yes. It is same. |
I think we can move forward with this PR @mountiny @parasharrajat |
Yes, Doing the final tests now. |
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.
There is a deep link issue as posted here on Android but the rest is working.
Reviewer Checklist
- I have verified the author checklist is complete (all boxes are checked off).
- I verified the correct issue is linked in the
### Fixed Issues
section above - I verified testing steps are clear and they cover the changes made in this PR
- I verified the steps for local testing are in the
Tests
section - I verified the steps for Staging and/or Production testing are in the
QA steps
section - I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
- I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
- I verified the steps for local testing are in the
- I checked that screenshots or videos are included for tests on all platforms
- I included screenshots or videos for tests on all platforms
- I verified tests pass on all platforms & I tested again on:
- Android / native
- Android / Chrome
- iOS / native
- iOS / Safari
- MacOS / Chrome / Safari
- MacOS / Desktop
- If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
- I verified proper code patterns were followed (see Reviewing the code)
- I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e.
toggleReport
and notonIconClick
). - I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g.
myBool && <MyComponent />
. - I verified that comments were added to code that is not self explanatory
- I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
- I verified any copy / text shown in the product is localized by adding it to
src/languages/*
files and using the translation method - I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
- I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is approved by marketing by adding the
Waiting for Copy
label for a copy review on the original GH to get the correct copy. - I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
- I verified the JSDocs style guidelines (in
STYLE.md
) were followed
- I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e.
- If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
- I verified that this PR follows the guidelines as stated in the Review Guidelines
- I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like
Avatar
, I verified the components usingAvatar
have been tested & I retested again) - I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
- I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
- If a new component is created I verified that:
- A similar component doesn't exist in the codebase
- All props are defined accurately and each prop has a
/** comment above it */
- The file is named correctly
- The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
- The only data being stored in the state is data necessary for rendering and nothing else
- For Class Components, any internal methods passed to components event handlers are bound to
this
properly so there are no scoping issues (i.e. foronClick={this.submit}
the methodthis.submit
should be bound tothis
in the constructor) - Any internal methods bound to
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
) - All JSX used for rendering exists in the render method
- The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
- If any new file was added I verified that:
- The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
- If a new CSS style is added I verified that:
- A similar style doesn't already exist
- The style can't be created with an existing StyleUtils function (i.e.
StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG
)
- If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
- If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like
Avatar
is modified, I verified thatAvatar
is working as expected in all cases) - If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
- If a new page is added, I verified it's using the
ScrollView
component to make it scrollable when more elements are added to the page. - If the
main
branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTest
steps. - I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.
🎀 👀 🎀 C+ reviewed
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.
I believe this is important enough to move through the merge freeze, thanks everyone 🙇
✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release. |
Hey team, It seems that deeplinks doesn't work in Native app (IOS) in latest main. Just wanna raise if you have same experience |
@hoangzinh Steps? |
@parasharrajat The 1st test case in the GH description Test RHP deeplink
Screen.Recording.2023-09-10.at.21.42.16.mp4 |
Sounds like this https://expensify.slack.com/archives/C049HHMV9SM/p1694080489810799 |
Thanks @parasharrajat |
🚀 Deployed to staging by https://github.com/mountiny in version: 1.3.67-0 🚀
|
@hungvu193 desktop is failing with this issue #25790 (comment). |
@kavimuru that might be intended behaviour #25790 (comment) |
@parasharrajat PR is to test with log out. How should we test this one? |
@parasharrajat This is the video 26856_Desktop.mp4 |
We are trying to test that deep link URLs open the correct page on the app itself. I understand that on desktop, we also show a prompt to natively installed app but that is something out of the scope of this PR/issue. The related bug might be another issue. Also, in #25790 (comment), It was confirmed that while the user is logged out we don't show the native app prompt for the desktop app. Let me know if you still have some doubts. |
🚀 Deployed to production by https://github.com/AndrewGable in version: 1.3.67-3 🚀
|
🚀 Deployed to staging by https://github.com/mountiny in version: 1.3.68-0 🚀
|
🚀 Deployed to production by https://github.com/Julesssss in version: 1.3.68-17 🚀
|
Details
Fixed Issues
$ #26852
PROPOSAL: #26852 (comment)
Tests
Test RHP deeplink
Test conference deeplink new account
Test conference deeplink existing account
Test Concierge deeplink
Test specific chat report deeplink
Test specific chat report deeplink
Test annonymous user claiming their account from public room
Offline tests
This bug is not related to offline mode. No extra steps needed.
QA Steps
Same as tests
PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)myBool && <MyComponent />
.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
Screen.Recording.2023-09-06.at.15.38.55.mov
Mobile Web - Chrome
RPReplay_Final1693989804.MP4
Mobile Web - Safari
RPReplay_Final1693989686.MP4
Desktop
Screen.Recording.2023-09-06.at.15.38.55.mov
iOS
Screen.Recording.2023-09-06.at.16.38.40.mov
Android
Screen.Recording.2023-09-06.at.16.07.13.mov