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

[Awaiting C+ payment confirmation] [HOLD for payment 2023-08-16] [$1000] IOS - Getting console warning on Contact methods page #23093

Closed
1 of 6 tasks
kbecciv opened this issue Jul 18, 2023 · 34 comments
Assignees
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. External Added to denote the issue can be worked on by a contributor Weekly KSv2

Comments

@kbecciv
Copy link

kbecciv commented Jul 18, 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!


Action Performed:

  1. Open App and Go to Settings
  2. Go to Profile > Press Contact Method

Expected Result:

There should be no console error on navigating to Contact Methods Page.

Actual Result:

On the Contact Methods Page Getting this console warning, *Warning: Failed prop type: The prop innerRef is marked as required in PressableWithDelayToggle, but its value is null

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: Dev 1.3.42-6
Reproducible in staging?: n/a
Reproducible in production?: n/a
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

Simulator Screen Shot - iPhone 14 - 2023-07-18 at 02 41 45

contact-method-console-error.mov

Expensify/Expensify Issue URL:
Issue reported by: @jayeshmangwani
Slack conversation: https://expensify.slack.com/archives/C049HHMV9SM/p1689664358693289

View all open jobs on GitHub

Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~01a7dbc8ab0e657b1c
  • Upwork Job ID: 1681447597214900224
  • 2023-07-18
  • Automatic offers:
    • | | 0
    • jayeshmangwani | Reporter | 25676805
@kbecciv kbecciv added Daily KSv2 Bug Something is broken. Auto assigns a BugZero manager. labels Jul 18, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 18, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Jul 18, 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

@kbecciv kbecciv added the Needs Reproduction Reproducible steps needed label Jul 18, 2023
@jayeshmangwani
Copy link
Contributor

jayeshmangwani commented Jul 18, 2023

Proposal

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

IOS - Getting console warning on Contact methods page

What is the root cause of that problem?

In PressableWithDelayToggle Component we passed the innerRef as required prop and when forwardRef pass the null ref then we get the console warning

const propTypes = {
/** Ref passed to the component by React.forwardRef (do not pass from parent) */
innerRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({current: PropTypes.instanceOf(React.Component)})]).isRequired,

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

  1. Here at defaultProps we should add the fallback value of innerRef

const defaultProps = {
text: '',
textChecked: '',
tooltipText: '',
tooltipTextChecked: '',
styles: [],
textStyles: [],
iconStyles: [],
icon: null,
inline: true,
iconChecked: Expensicons.Checkmark,

    innerRef: () => {},
  1. And innerRef prop does not have to be the required param, as here in BaseMiniContextMenuItem we are passing the ref to Pressable and it is not the required, and here in PressableWithDelayToggle Component also we are passing ref to Pressable

/**
* A ref to forward to the Pressable
*/
innerRef: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),

We should remove the isRequired from the innerRef propTypes on PressableWithDelayToggle

What alternative solutions did you explore? (Optional)

none

@trjExpensify
Copy link
Contributor

I don't have a dev environment to check for console logs on iOS. @aimane-chnaif I suspect maybe something to do with this migration of the component: #20601

Will move this on for a proposal review and input from C+!

@trjExpensify trjExpensify added External Added to denote the issue can be worked on by a contributor and removed Needs Reproduction Reproducible steps needed labels Jul 18, 2023
@melvin-bot melvin-bot bot changed the title IOS - Getting console warning on Contact methods page [$1000] IOS - Getting console warning on Contact methods page Jul 18, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 18, 2023

Job added to Upwork: https://www.upwork.com/jobs/~01a7dbc8ab0e657b1c

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

melvin-bot bot commented Jul 18, 2023

Current assignee @trjExpensify is eligible for the External assigner, not assigning anyone new.

@melvin-bot
Copy link

melvin-bot bot commented Jul 18, 2023

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

@Nodebrute
Copy link
Contributor

Proposal

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

IOS - Getting console warning on Contact methods page

What is the root cause of that problem?

Here innerRef is required but it's value is null.

innerRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({current: PropTypes.instanceOf(React.Component)})]).isRequired,

We are using PressableWithDelayToggle here

<PressableWithDelayToggle

and then CopyTextToClipboard is used on following pages

here's another page where we are using PressableWithDelayToggle
‎src/pages/settings/Security/TwoFactorAuth/CodesPage.js

You can check in all of the pages the props.innerRef will be null.

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

  1. Remove this line. We don't need to check innerRef Proptype.
    innerRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({current: PropTypes.instanceOf(React.Component)})]).isRequired,

    2.Also we can safely remove innerRef from here. What's the point of passing null after all.

    3 Also remove innerRef from here

What alternative solutions did you explore? (Optional)

If we don't want to remove innerRef we can assign a value here of null

innerRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({current: PropTypes.instanceOf(React.Component)})]).isRequired,

like this

  innerRef: PropTypes.oneOfType([PropTypes.func,  PropTypes.oneOf([null]),PropTypes.shape({current: PropTypes.instanceOf(React.Component)})]).isRequired,

@rushatgabhane
Copy link
Member

hi, I'll be reviewing this

@thesahindia thesahindia removed their assignment Jul 20, 2023
@aimane-chnaif
Copy link
Contributor

I don't have a dev environment to check for console logs on iOS. @aimane-chnaif I suspect maybe something to do with this migration of the component: #20601

Will move this on for a proposal review and input from C+!

@trjExpensify this came from #21852, not related to #20601

@aimane-chnaif
Copy link
Contributor

I got confirmation from offending PR - #21852 (comment).
It's fine to make innerRef prop optional and @jayeshmangwani's proposal is solid.

@melvin-bot melvin-bot bot removed the Help Wanted Apply this label when an issue is open to proposals by contributors label Jul 21, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 21, 2023

📣 @rushatgabhane Please request via NewDot manual requests for the Contributor role ($1000)

@melvin-bot
Copy link

melvin-bot bot commented Jul 21, 2023

📣 @jayeshmangwani 🎉 An offer has been automatically sent to your Upwork account for the Reporter role 🎉 Thanks for contributing to the Expensify app!

Upwork job

@trjExpensify
Copy link
Contributor

Thanks @aimane-chnaif! @rushatgabhane am I missing some context here? We moving forward here?

@rushatgabhane
Copy link
Member

rushatgabhane commented Jul 21, 2023

i think @jayeshmangwani has the root cause and a solution for it #23093 (comment)

@rushatgabhane
Copy link
Member

🎀 👀 🎀

@melvin-bot
Copy link

melvin-bot bot commented Jul 26, 2023

📣 @rushatgabhane Please request via NewDot manual requests for the Reviewer role ($1000)

@trjExpensify
Copy link
Contributor

Cool, assigned @jayeshmangwani!

@jayeshmangwani
Copy link
Contributor

@rushatgabhane PR is ready for review

@jayeshmangwani
Copy link
Contributor

@rushatgabhane bump for review, Please!

@melvin-bot
Copy link

melvin-bot bot commented Aug 3, 2023

Based on my calculations, the pull request did not get merged within 3 working days of assignment. Please, check out my computations here:

  • when @jayeshmangwani got assigned: 2023-07-21 15:19:51 Z
  • when the PR got merged: 2023-08-03 19:00:22 UTC
  • days elapsed: 9

On to the next one 🚀

@melvin-bot melvin-bot bot added Weekly KSv2 Awaiting Payment Auto-added when associated PR is deployed to production and removed Weekly KSv2 labels Aug 9, 2023
@melvin-bot melvin-bot bot changed the title [$1000] IOS - Getting console warning on Contact methods page [HOLD for payment 2023-08-16] [$1000] IOS - Getting console warning on Contact methods page Aug 9, 2023
@melvin-bot melvin-bot bot removed the Reviewing Has a PR in review label Aug 9, 2023
@melvin-bot
Copy link

melvin-bot bot commented Aug 9, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Aug 9, 2023

The solution for this issue has been 🚀 deployed to production 🚀 in version 1.3.51-2 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-08-16. 🎊

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:

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 Aug 9, 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:

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

@rushatgabhane
Copy link
Member

rushatgabhane commented Aug 14, 2023

  1. The PR that introduced the bug has been identified. Link to the PR: New preferences page layout #21852

  2. 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: New preferences page layout #21852 (comment)

  3. 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: N.A.

  4. Determine if we should create a regression test for this bug. No

  5. 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 - N.A.

@rushatgabhane
Copy link
Member

Created a manual request - https://staging.new.expensify.com/r/2686162480672467

@JmillsExpensify
Copy link

@trjExpensify I imagine you're on this tomorrow, just noting I need that payment summary to approve the payment in NewDot.

@trjExpensify
Copy link
Contributor

Yuuuup! Confirming payments as follows:

$1,000 to @rushatgabhane for C+
$1,250 to @jayeshmangwani for the bug fix and bug report. (Paid)

No #urgency bonus being applied as per this.

@trjExpensify trjExpensify changed the title [HOLD for payment 2023-08-16] [$1000] IOS - Getting console warning on Contact methods page [Awaiting C+ payment confirmation] [HOLD for payment 2023-08-16] [$1000] IOS - Getting console warning on Contact methods page Aug 21, 2023
@rushatgabhane
Copy link
Member

@trjExpensify i think we can close the issue.
payment is being tracked in new dot

@trjExpensify
Copy link
Contributor

Cool, if @JmillsExpensify hasn't approved payment reopen it!

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

No branches or pull requests

9 participants