-
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
BUG: [mweb-safari] keyboard remains open while navigating back to LHN using fingers from right to left reported by @gadhiyamanan #11970
Comments
Triggered auto assignment to @sakluger ( |
I updated the 4th Action Performed to relect the video (previously it said I was able to reproduce the issue in mobile Safari, and confirmed that there are no other open issues for this bug. |
Current assignee @sakluger is eligible for the External assigner, not assigning anyone new. |
Triggered auto assignment to Contributor-plus team member for initial proposal review - @rushatgabhane ( |
Triggered auto assignment to @deetergp ( |
Internal Upwork post: https://www.upwork.com/ab/applicants/1582905344124416000/job-details |
This issue can be solved by adding listener "beforeRemove" and inside function closing keyboard manually. |
You can use KeyboardAvoidingView in scrollView. Then you solve this issue |
@Nodirbek75 @Babur171 thanks for your proposal! Could you please explain why the issue is happening and how exactly you plan to fix it? |
@rushatgabhane can you share me your code? |
@Babur171 I recommend that you read contributing.md before starting. All the code is available on https://github.com/Expensify/App |
Price doubled! |
@sakluger time to double? |
I can't reproduce, maybe it's fixed already? |
Proposaldiff --git a/src/libs/Navigation/Navigation.js b/src/libs/Navigation/Navigation.js
index e937e5015..8c484ce1e 100644
--- a/src/libs/Navigation/Navigation.js
+++ b/src/libs/Navigation/Navigation.js
@@ -1,6 +1,5 @@
import _ from 'underscore';
import lodashGet from 'lodash/get';
-import {Keyboard} from 'react-native';
import {DrawerActions, getPathFromState, StackActions} from '@react-navigation/native';
import Onyx from 'react-native-onyx';
import Log from '../Log';
@@ -66,7 +65,6 @@ function openDrawer() {
}
navigationRef.current.dispatch(DrawerActions.openDrawer());
- Keyboard.dismiss();
}
/**
diff --git a/src/libs/Navigation/NavigationRoot.js b/src/libs/Navigation/NavigationRoot.js
index 775d89f31..9dba24585 100644
--- a/src/libs/Navigation/NavigationRoot.js
+++ b/src/libs/Navigation/NavigationRoot.js
@@ -1,5 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
+import {Keyboard} from 'react-native';
import {NavigationContainer, DefaultTheme, getPathFromState} from '@react-navigation/native';
import {useFlipper} from '@react-navigation/devtools';
import Navigation, {navigationRef} from './Navigation';
@@ -60,7 +61,10 @@ const NavigationRoot = (props) => {
style={styles.navigatorFullScreenLoading}
/>
)}
- onStateChange={parseAndLogRoute}
+ onStateChange={() => {
+ Keyboard.dismiss();
+ parseAndLogRoute();
+ }}
onReady={props.onReady}
theme={navigationTheme}
ref={navigationRef} DetailsThe issue is more like a bug in Safari I suppose. The swipe gesture in Safari will trigger the browser back functionality. On chrome the browser back functionality also closes the keyboad. On Safari you have to do it yourself. Building on that we can simply call Keyboard.dismiss() on navigation change and since I see no case where the keyboard should stay open after navigation change I have put the logic on the root NavigationContainer. Kooha-2022-11-16-15-48-11.mp4There is another similar issue which is more annoying that effects all the browsers (maybe native devices too) which is related to modals; Open any modal (e.g. Emoji Picker) press back button / swipe. The modal will stay there and will cause the app to be unusable. I do have a fix for that but I didn't include it in my above proposal; You can think that this can be solved using the same approach used here (on navigation change, close modal) but i have a better solution to fix the modal itself I have two proposals already that covers this #10414 (comment) and #12521 (comment) |
Switched out weekly for monthly given that the navigation project is large and has no defined ETA. |
Still on hold for the navigation project. |
Same same. |
Still in a holding pattern |
Same same. |
Still on hold. |
MOTS (more of the same) |
Alright, circling back on this one, I'm no longer able to reproduce. The keyboard consistently closes when going back to the LHN from a chat. RPReplay_Final1687812788.MP4Accordingly, I think we're ready to pay @gadhiyamanan for reporting. If anyone disagrees or is able to achieve a different result, please comment in this issue. We'll be closing out payments later this week. |
@JmillsExpensify Have we paid @gadhiyamanan for reporting? Can we close this one out? |
Not yet, still working through issues. Though I will aim to circle back on this soon. |
I believe we are still holding. |
Alright, ready to close this out. @gadhiyamanan I've just send you an offer for reporting on Upwork. |
@JmillsExpensify offer accepted, thanks! |
All paid out! Thank you, closing. |
If you haven’t already, check out our contributing guidelines for onboarding and email contributors@expensify.com to request to join our Slack channel!
Action Performed:
Expected Result:
keyboard should be closed
Actual Result:
keyboard remains open
Workaround:
unknown
Platform:
Where is this issue occurring?
Version Number: v1.2.17-4
Reproducible in staging?: y
Reproducible in production?: y
Email or phone of affected tester (no customers):
Logs: https://stackoverflow.com/c/expensify/questions/4856
Notes/Photos/Videos:
https://user-images.githubusercontent.com/43996225/196539070-780a6b4d-9ab4-495f-a592-f428a83e9986.MP4
https://user-images.githubusercontent.com/43996225/196539158-b33a7547-3df2-490d-ba7a-8766dcf6fb03.mp4
Expensify/Expensify Issue URL:
Issue reported by: @gadhiyamanan
Slack conversation: https://expensify.slack.com/archives/C01GTK53T8Q/p1666117289545729
View all open jobs on GitHub
The text was updated successfully, but these errors were encountered: