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-10-23] [$500] iOS - Screen flashes after selecting inputs while creating a Room #28950

Closed
1 of 6 tasks
lanitochka17 opened this issue Oct 5, 2023 · 26 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 Engineering External Added to denote the issue can be worked on by a contributor

Comments

@lanitochka17
Copy link

lanitochka17 commented Oct 5, 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!


Issue found when executing PR #27836

Action Performed:

  1. Log into HT account on Expensify app
  2. While having at least 2 workspaces, selecting the FAB button
  3. Select "send message" and select "room" tab
  4. Begin inputting options in any form available on page eg "Who can post", "Visibility", etc

Expected Result:

User is able to input values without problems while creating room

Actual Result:

Screen begins to blink and flashes while options are selected

Workaround:

Unknown

Platforms:

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

  • Android / native
  • Android / Chrome
  • iOS / native
  • iOS / Safari
  • MacOS / Chrome / Safari
  • MacOS / Desktop

Version Number: 1.3.78-1

Reproducible in staging?: Yes

Reproducible in production?: No

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

Notes/Photos/Videos: Any additional supporting documentation

Bug6226301_1696529015014.RPReplay_Final1696524646.mp4

Expensify/Expensify Issue URL:

Issue reported by: Applause - Internal Team

Slack conversation:

View all open jobs on GitHub

Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~010914cc66f062c549
  • Upwork Job ID: 1710021385577029632
  • Last Price Increase: 2023-10-05
@lanitochka17 lanitochka17 added DeployBlockerCash This issue or pull request should block deployment Daily KSv2 Bug Something is broken. Auto assigns a BugZero manager. labels Oct 5, 2023
@melvin-bot
Copy link

melvin-bot bot commented Oct 5, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Oct 5, 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

@OSBotify
Copy link
Contributor

OSBotify commented Oct 5, 2023

👋 Friendly reminder that deploy blockers are time-sensitive ⏱ issues! Check out the open StagingDeployCash deploy checklist to see the list of PRs included in this release, then work quickly to do one of the following:

  1. Identify the pull request that introduced this issue and revert it.
  2. Find someone who can quickly fix the issue.
  3. Fix the issue yourself.

@melvin-bot
Copy link

melvin-bot bot commented Oct 5, 2023

Triggered auto assignment to @jasperhuangg (Engineering), see https://stackoverflow.com/c/expensify/questions/4319 for more details.

@mountiny mountiny added the External Added to denote the issue can be worked on by a contributor label Oct 5, 2023
@melvin-bot melvin-bot bot changed the title iOS - Screen flashes after selecting inputs while creating a Room [$500] iOS - Screen flashes after selecting inputs while creating a Room Oct 5, 2023
@melvin-bot
Copy link

melvin-bot bot commented Oct 5, 2023

Job added to Upwork: https://www.upwork.com/jobs/~010914cc66f062c549

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

melvin-bot bot commented Oct 5, 2023

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

@mountiny
Copy link
Contributor

mountiny commented Oct 5, 2023

@dangrous I have tested a revert of this PR #27836 and it seems like this regression is resolved

It feels like the textares if stuck enlarging and shrinking or something

@abdel-h66
Copy link
Contributor

abdel-h66 commented Oct 5, 2023

Proposal

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

Screen flicker when creating a room.

What is the root cause of that problem?

The issue comes from KeyboardAvoidingView used in the WorkspaceNewRoomPage, when the behavior is set to height, coming back from a select in the form, (workspace for example) will trigger the autofocus and brings up the keyboard on ios.

Note that this doesn't happen on android

Somehow, the height keeps being recalculated indefinitely until the keyboard is closed and then opened manually by focusing the text input.

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

Changing the behavior property from height to padding seems to fix the issue

<KeyboardAvoidingView
   style={{height: '100%'}}
   behavior="padding"
   // Offset is needed as KeyboardAvoidingView in nested inside of TabNavigator instead of wrapping whole screen.
   // This is because when wrapping whole screen the screen was freezing when changing Tabs. 
   keyboardVerticalOffset={variables.contentHeaderHeight + variables.tabSelectorButtonHeight + 
   variables.tabSelectorButtonPadding + insets.top}
 > 

What alternative solutions did you explore? (Optional)

N/A

@situchan
Copy link
Contributor

situchan commented Oct 5, 2023

@abdel-h66 thanks for the proposal. We added KeyboardAvoidingView separately from ScreenWrapper in this commit to fix freeze issue on iOS.
Do you have better solution to remove this workaround and still use the benefit of keyboard avoiding behavior in ScreenWrapper?

@melvin-bot melvin-bot bot added Reviewing Has a PR in review Weekly KSv2 and removed Hourly KSv2 Weekly KSv2 labels Oct 5, 2023
@mountiny mountiny removed Help Wanted Apply this label when an issue is open to proposals by contributors DeployBlockerCash This issue or pull request should block deployment labels Oct 5, 2023
@mountiny mountiny removed the Awaiting Payment Auto-added when associated PR is deployed to production label Oct 13, 2023
@mountiny mountiny changed the title [HOLD for payment 2023-10-16] [HOLD for payment 2023-10-13] [$500] iOS - Screen flashes after selecting inputs while creating a Room [$500] iOS - Screen flashes after selecting inputs while creating a Room Oct 13, 2023
@mountiny
Copy link
Contributor

@abdel-h66 hey! we are going to use your solution in the PR so you will get paid 25% of the reward $125 for your proposal. Thank you for contributing ❤️

#29541

@mountiny mountiny reopened this Oct 13, 2023
@melvin-bot melvin-bot bot added Weekly KSv2 Awaiting Payment Auto-added when associated PR is deployed to production and removed Weekly KSv2 labels Oct 16, 2023
@melvin-bot melvin-bot bot changed the title [$500] iOS - Screen flashes after selecting inputs while creating a Room [HOLD for payment 2023-10-23] [$500] iOS - Screen flashes after selecting inputs while creating a Room Oct 16, 2023
@melvin-bot melvin-bot bot removed the Reviewing Has a PR in review label Oct 16, 2023
@melvin-bot
Copy link

melvin-bot bot commented Oct 16, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Oct 16, 2023

The solution for this issue has been 🚀 deployed to production 🚀 in version 1.3.84-10 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-10-23. 🎊

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:

  • @eVoloshchak does not require payment (Eligible for Manual Requests)

As a reminder, here are the bonuses/penalties that should be applied for any External issue:

  • Merged PR within 3 business days of assignment - 50% bonus
  • Merged PR more than 9 business days after assignment - 50% penalty

@melvin-bot
Copy link

melvin-bot bot commented Oct 16, 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:

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

@melvin-bot melvin-bot bot added Weekly KSv2 and removed Weekly KSv2 labels Oct 16, 2023
@melvin-bot melvin-bot bot changed the title [HOLD for payment 2023-10-23] [$500] iOS - Screen flashes after selecting inputs while creating a Room [HOLD for payment 2023-10-23] [HOLD for payment 2023-10-23] [$500] iOS - Screen flashes after selecting inputs while creating a Room Oct 16, 2023
@melvin-bot
Copy link

melvin-bot bot commented Oct 16, 2023

The solution for this issue has been 🚀 deployed to production 🚀 in version 1.3.84-10 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-10-23. 🎊

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:

  • @eVoloshchak does not require payment (Eligible for Manual Requests)

As a reminder, here are the bonuses/penalties that should be applied for any External issue:

  • Merged PR within 3 business days of assignment - 50% bonus
  • Merged PR more than 9 business days after assignment - 50% penalty

@melvin-bot
Copy link

melvin-bot bot commented Oct 16, 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:

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

@mountiny mountiny changed the title [HOLD for payment 2023-10-23] [HOLD for payment 2023-10-23] [$500] iOS - Screen flashes after selecting inputs while creating a Room [HOLD for payment 2023-10-23] [$500] iOS - Screen flashes after selecting inputs while creating a Room Oct 17, 2023
@mountiny
Copy link
Contributor

@kadiealexander no need for chekclist on this one, the originating PR is clear for the backlog here.

Only need to pay $125 to @abdel-h66 for their solution

@melvin-bot melvin-bot bot added Daily KSv2 Overdue and removed Weekly KSv2 Daily KSv2 Overdue labels Oct 23, 2023
@kadiealexander
Copy link
Contributor

@abdel-h66
Copy link
Contributor

Done @kadiealexander thank you

@kadiealexander
Copy link
Contributor

Sweet, contract sent!

@kadiealexander
Copy link
Contributor

Paid!

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

No branches or pull requests

8 participants