-
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
[HOLD for payment 2023-09-04] [$4000] Keyboard shows again briefly when clicking "Add attachment" while the composer is focused #13922
Comments
@jasperhuangg not able to repro in Android and mWeb az_recorder_20230103_125527.1.mp4 |
@kavimuru did you test android with the keyboard open as well? |
Hm, what exactly is happening here? We should make the OP as descriptive as we can versus "janky". I can't quite catch what page is opening after the Also, the screen recording above of Android seems to have the same problem of a brief flicker on press doesn't it? I feel like we've had a similar problem before with the copy to clipboard modal momentarily showing, but it doesn't seem like that's what is showing here. |
@jasperhuangg are you taking this one on? |
Looks like the keyboard isn't closing when pressed and it's reopening for a single frame which is causing the flashing. Upload.from.GitHub.for.iOS.MOV |
Nice, okay. I've updated the OP and issue title to be more descriptive and reflect the problem at hand. @jasperhuangg, can you let us know today if you want to take this on? If not, let's open it up with the |
Feel free to assign External! Have some customer issues I need to get to this week. Thanks for the bump! |
Job added to Upwork: https://www.upwork.com/jobs/~01eb1d86a3237e2dfd |
Current assignee @trjExpensify is eligible for the External assigner, not assigning anyone new. |
Triggered auto assignment to Contributor-plus team member for initial proposal review - @thesahindia ( |
Triggered auto assignment to @joelbettner ( |
ProposalRoot causeThis issue occurs because iOS by default dismisses the Keyboard before opening any modals and it remembers the keyboard's state and reopens the keyboard when the modal is dismissed/closed which is ideal for most scenarios. However, this does not work well when you're switching between two modals as iOS tries to reopen the keyboard as soon as you dismiss the first modal and then tries to dismiss the keyboard again as soon as the second modal is opened which causes this "janky" effect. SolutionI think the ideal scenario here is to dismiss the keyboard ourselves before we open the first modal, that way native code thinks that the keyboard was already closed prior to opening that modal and won't try to reopen & close the keyboard between modal transitions. The downside of this is that the keyboard won't open back again automatically once the attachment is selected which IMO is not big issue and it comes down to choice. If we still want to open that keyboard back after the attachment being selected, we can do that by remembering the keyboard state ourselves and reopen it if it was open at the start. However, IMO it might be an overkill but happy to hear other's thoughts on it. Solution 1 - Dismiss keyboard before modal opensI tried to avoid setTimeout by using InteractionManager but even that doesn't work in this case thus had to resort to setTimeout with 500ms minimum required. The other alternative we can use is the diff --git a/src/pages/home/report/ReportActionCompose.js b/src/pages/home/report/ReportActionCompose.js
index 7811d1c25..89a726099 100644
--- a/src/pages/home/report/ReportActionCompose.js
+++ b/src/pages/home/report/ReportActionCompose.js
@@ -4,6 +4,7 @@ import {
View,
TouchableOpacity,
InteractionManager,
+ Keyboard,
} from 'react-native';
import _ from 'underscore';
import lodashGet from 'lodash/get';
@@ -601,11 +602,12 @@ class ReportActionCompose extends React.Component {
<TouchableOpacity
ref={el => this.actionButton = el}
onPress={(e) => {
+ Keyboard.dismiss();
e.preventDefault();
// Drop focus to avoid blue focus ring.
this.actionButton.blur();
- this.setMenuVisibility(true);
+ setTimeout(() => this.setMenuVisibility(true), 500);
}}
style={styles.chatItemAttachButton}
underlayColor={themeColors.componentBG} Solution 2 - Dismiss keyboard before modal opens & reopen after selecting attachment action is completedWe can achieve this by keeping track of the keyboard state in this component by adding keyboard event listeners and then along with Solution 1 we can reopen the keyboard by focusing the composer input once attachment picker is closed. I can post a code solution later if there's interest in this solution. Videokeyboard.mov |
@situchan, yeah, but issue #25872 was found when testing PR #23994. I guess they felt the actual behavior on physical devices was inconsistent with the expected behavior we described in the PR #23994. For this situation, should you review the new PR #26221 again next? If not, I'm also not sure if a new reviewer would get paid the bounty for the new issue if they review it. Any thoughts would be much appreciated |
@Christinadobrzyn, hi, please feel free to share your thoughts on this suggestion. If it's okay, we can go ahead and close PR #26221 for now. 🙂 |
The solution is pretty quick so let's fix that. Remember the app will be used on real devices, not simulators so it matters that we fix the behavior for real devices. The file input behavior is unlikely to be changed in the focus tracking issue so it is worth fixing. cc: @situchan |
Okay, so I think we're ready to settle up here now? It has a bit of a colourful history this issue, but this is where we ultimately landed to get it over the line: $4,000 - @ntdiary for the bug fix Let me know and I'll send the offers :) |
Note: @trjExpensify There is a pending PR above. |
@trjExpensify, I'm fine with the bounty. And there is indeed another PR #26221 aimed at reopening the keyboard when returning from the gallery page. However it seems we have a feature freeze this week? So I hope it can be reviewed by @situchan next week asap, and then @Christinadobrzyn can test it again for issue #25872. 🙂 |
@trjExpensify just checking, so no compensation for the initial solution & a prolonged effort in this case? |
Noted, will hold off for that!
Ordinarily there wouldn't be, because the PR was closed as an incomplete proposal due to the side effect with proposed solution. I do appreciate this was a long one, so I'm happy to proceed with 25% of the issue bounty for that. IIRC, you and @tienifr were splitting that, right? |
I'm looking for the solution for #38633, and I the issue was mentioned in this issue. I'd like to know does the final solution still has this problem or not?
After the 3rd step, although the keyboard is not show (maybe a little... I don't know), it will trigger following keyboard events: |
📣 @oakmegaeddie! 📣
|
Contributor details |
✅ Contributor details stored successfully. Thank you for contributing to Expensify! |
@ntdiary, @joelbettner, @trjExpensify, @priyeshshah11, @thesahindia, @situchan, @tienifr Whoops! This issue is 2 days overdue. Let's get this updated quick! |
Pending PR was deployed to production |
Cool, thanks! Following through with the payments listed here, offers have been sent to you all. |
@trjExpensify sorry, I already have contract accepted from Melvin offer - #13922 (comment) |
Yeah, the job is closed though unfortunately, so I'd have to rehire you from that anyway. Can you accept the new one please? |
@situchan - paid! |
Thanks @trjExpensify but sorry I disagree as there have been issues where people have been paid more than this, when a mix of ideas have lead to the final solution but its ok I'll accept that. IIRC, you and @tienifr were splitting that, right? And yes @tienifr & I agreed to share the issue but his input stopped since March whereas I worked on it till mid July. |
Accepted, thanks!
I think most of our work are from early Jan beginning up until March 31. After that there's mostly back-and-forth communication with no additional solution being given. |
@ntdiary - paid
Sure, there have also been issues where people have been paid less or $0 when the PR is closed for ultimately not being the right solution. It's the nature of being a discretionary payment, and a relatively rare occurrence in the grand scheme of things. Thanks for accepting! |
Settled up, 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:
They keyboard doesn't reopen briefly, such that it's a smooth animation to the next modal screen with the attachment upload options
Actual Result:
The keyboard shows again briefly before the modal with the attachment upload options appears, resulting in what looks like the screen flickering
Workaround:
Unknown
Platforms:
Which of our officially supported platforms is this issue occurring on?
Version Number: v1.2.49.0
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:
RPReplay_Final1672422381.MP4
VEQI0550.mp4
Expensify/Expensify Issue URL:
Issue reported by: @grgia
Slack conversation: https://expensify.slack.com/archives/C049HHMV9SM/p1672422586959209
View all open jobs on GitHub
Upwork Automation - Do Not Edit
The text was updated successfully, but these errors were encountered: