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 checklist] [$1000] Dev: console error on attach large file #21947

Closed
1 of 6 tasks
kbecciv opened this issue Jun 30, 2023 · 32 comments
Closed
1 of 6 tasks

[HOLD for checklist] [$1000] Dev: console error on attach large file #21947

kbecciv opened this issue Jun 30, 2023 · 32 comments
Assignees
Labels
Bug Something is broken. Auto assigns a BugZero manager. Daily KSv2 External Added to denote the issue can be worked on by a contributor Needs Reproduction Reproducible steps needed

Comments

@kbecciv
Copy link

kbecciv commented Jun 30, 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. Go to any chat
  2. Send large file (<24 MB)

Expected Result:

Should not show any console error

Actual Result:

Console error appears (Failed prop type: The prop title is marked as required in ConfirmContent, 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: 1.3.34-1(occurs in dev)
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

Screen.Recording.2023-06-29.at.12.34.26.PM.mov

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

View all open jobs on GitHub

Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~019cbb5ba4f7a22f2f
  • Upwork Job ID: 1676868760224428032
  • Last Price Increase: 2023-07-06
@kbecciv kbecciv added Daily KSv2 Needs Reproduction Reproducible steps needed Bug Something is broken. Auto assigns a BugZero manager. labels Jun 30, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jun 30, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Jun 30, 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
Copy link
Author

kbecciv commented Jun 30, 2023

Proposal

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

console error on attach large file

What is the root cause of that problem?

initially title of ConfirmModal is null and prop type of title is string

const [attachmentInvalidReasonTitle, setAttachmentInvalidReasonTitle] = useState(null);

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

use empty string instead of null to below code for initialization
change from

const [attachmentInvalidReasonTitle, setAttachmentInvalidReasonTitle] = useState(null);
to
const [attachmentInvalidReasonTitle, setAttachmentInvalidReasonTitle] = useState(‘’);

@gadhiyamanan
Copy link
Contributor

Proposal

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

console error on attach large file

What is the root cause of that problem?

initially title of ConfirmModal is null and prop type of title is string

const [attachmentInvalidReasonTitle, setAttachmentInvalidReasonTitle] = useState(null);

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

use empty string instead of null to below code for initialization
change from

const [attachmentInvalidReasonTitle, setAttachmentInvalidReasonTitle] = useState(null);
to
const [attachmentInvalidReasonTitle, setAttachmentInvalidReasonTitle] = useState(‘’);

@kamaljitSharma21
Copy link
Contributor

kamaljitSharma21 commented Jun 30, 2023

Proposal

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

Dev: console error on attach large file

What is the root cause of that problem?

  1. The ConfirmModal is accepting a prop type of title and prompt as a string

  2. Here we are setting the setIsAttachmentInvalid to true before setting the attachmentInvalidReasonTitle and attachmentInvalidReason. This setIsAttachmentInvalid will open the ConfirmModal and when ConfirmModal will open the attachmentInvalidReasonTitle and attachmentInvalidReason will still might be empty.

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

  1. Change the state of attachmentInvalidReasonTitle and attachmentInvalidReason from null to ' '

  2. Set setIsAttachmentInvalid to true after setting the title and reason

update code -

if (lodashGet(_file, 'size', 0) > CONST.API_ATTACHMENT_VALIDATIONS.MAX_SIZE) {
  setAttachmentInvalidReasonTitle(props.translate('attachmentPicker.attachmentTooLarge'));
  setAttachmentInvalidReason(props.translate('attachmentPicker.sizeExceeded'));
  setIsAttachmentInvalid(true);
  return false;
}

NOTE : By just doing 1st point of the fix it might break the confirmation modal and show an empty title and empty reason in some scenarios where the network might be slow so 2nd point of the fix is recommended because this will set the title and reason before opening the ConfirmModal.

NOTE : This error will show for all the three scenarios which we are creating here - Invalid Extension, Max File Size, Min File Size

By doing similar changes as shown above we can fix this also.

What alternative solutions did you explore? (Optional)

NA

@melvin-bot melvin-bot bot added the Overdue label Jul 3, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 3, 2023

@greg-schroeder Whoops! This issue is 2 days overdue. Let's get this updated quick!

@greg-schroeder
Copy link
Contributor

Will review after the holiday

@melvin-bot melvin-bot bot removed the Overdue label Jul 4, 2023
@greg-schroeder greg-schroeder added the External Added to denote the issue can be worked on by a contributor label Jul 6, 2023
@melvin-bot melvin-bot bot changed the title Dev: console error on attach large file [$1000] Dev: console error on attach large file Jul 6, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 6, 2023

Job added to Upwork: https://www.upwork.com/jobs/~019cbb5ba4f7a22f2f

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

melvin-bot bot commented Jul 6, 2023

Current assignee @greg-schroeder is eligible for the External assigner, not assigning anyone new.

@melvin-bot
Copy link

melvin-bot bot commented Jul 6, 2023

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

@narefyev91
Copy link
Contributor

narefyev91 commented Jul 6, 2023

The issue here is that Confirm modal is not really waiting null for title. In all other components in which <ConfirmModal is used - we either directly apply title from props, or having default value as empty string - like here src/components/AvatarWithImagePicker.js
The correct solution is to have default empty string - @gadhiyamanan was the first one - his proposal looks good #21947 (comment)
🎀 👀 🎀 C+ reviewed

@melvin-bot
Copy link

melvin-bot bot commented Jul 6, 2023

Triggered auto assignment to @hayata-suenaga, see https://stackoverflow.com/c/expensify/questions/7972 for more details.

@gadhiyamanan
Copy link
Contributor

gadhiyamanan commented Jul 6, 2023

@kbecciv is from testing team and proposal was proposed by me in slack while reporting bug

cc: @narefyev91

@narefyev91
Copy link
Contributor

@kbecciv is from testing team and proposal was proposed by me in slack while reporting bug

cc: @narefyev91

Oh makes sense - will update my comment, thanks!

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

melvin-bot bot commented Jul 6, 2023

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

Upwork job
Please accept the offer and leave a comment on the Github issue letting us know when we can expect a PR to be ready for review 🧑‍💻
Keep in mind: Code of Conduct | Contributing 📖

@melvin-bot
Copy link

melvin-bot bot commented Jul 6, 2023

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

Upwork job

@melvin-bot melvin-bot bot added Weekly KSv2 Awaiting Payment Auto-added when associated PR is deployed to production and removed Daily KSv2 labels Jul 13, 2023
@melvin-bot melvin-bot bot changed the title [$1000] Dev: console error on attach large file [HOLD for payment 2023-07-20] [$1000] Dev: console error on attach large file Jul 13, 2023
@melvin-bot melvin-bot bot removed the Reviewing Has a PR in review label Jul 13, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 13, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Jul 13, 2023

The solution for this issue has been 🚀 deployed to production 🚀 in version 1.3.39-11 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-07-20. 🎊

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

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 Jul 13, 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:

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

@melvin-bot melvin-bot bot added Daily KSv2 and removed Weekly KSv2 labels Jul 19, 2023
@greg-schroeder
Copy link
Contributor

Issuing offers

@gadhiyamanan
Copy link
Contributor

@greg-schroeder offers have already been accepted which was shared by Malvin #21947 (comment) #21947 (comment)

@greg-schroeder
Copy link
Contributor

Sorry I meant to say payment

@gadhiyamanan
Copy link
Contributor

@greg-schroeder this is also eligible for 50% bonus

@greg-schroeder
Copy link
Contributor

Payment complete. Awaiting checklist from @narefyev91

@greg-schroeder greg-schroeder removed the Awaiting Payment Auto-added when associated PR is deployed to production label Jul 21, 2023
@greg-schroeder greg-schroeder changed the title [HOLD for payment 2023-07-20] [$1000] Dev: console error on attach large file [HOLD for checklist] [$1000] Dev: console error on attach large file Jul 21, 2023
@melvin-bot melvin-bot bot added the Overdue label Jul 24, 2023
@greg-schroeder
Copy link
Contributor

Bump on the above @narefyev91

@melvin-bot melvin-bot bot removed the Overdue label Jul 24, 2023
@narefyev91
Copy link
Contributor

@greg-schroeder Hey! Sorry I'm OOO on vacation - i hope @mountiny will help here

@mountiny
Copy link
Contributor

@gadhiyamanan as the M=Pr author can you please complete the checklist?

@melvin-bot melvin-bot bot added the Overdue label Jul 26, 2023
@greg-schroeder
Copy link
Contributor

bump @gadhiyamanan on the above

@gadhiyamanan
Copy link
Contributor

[@narefyev91] The PR that introduced the bug has been identified. Link to the PR: #10118

[@narefyev91] 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: Should be caught based on checklist https://github.com/Expensify/App/pull/10118/files#r1275749150

[@narefyev91] 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: Should be caught based on checklist

[@narefyev91] Determine if we should create a regression test for this bug. N/A

[@narefyev91] 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

We already have a checklist item. I don't think any further updates are required

[ ]I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed

I don't think we need a regression test as well. this is a minor issue

@greg-schroeder
Copy link
Contributor

Thanks @gadhiyamanan!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something is broken. Auto assigns a BugZero manager. Daily KSv2 External Added to denote the issue can be worked on by a contributor Needs Reproduction Reproducible steps needed
Projects
None yet
Development

No branches or pull requests

7 participants