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-07-17] [$1000] Web- Eye icon position not aligned and nothing happen on click of eye icon #22183

Closed
1 of 6 tasks
kbecciv opened this issue Jul 4, 2023 · 41 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

@kbecciv
Copy link

kbecciv commented Jul 4, 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. Click on + icon and select Add attachment option
  3. Select password protected PDF
  4. Click on enter password button
  5. Click on eye icon

Expected Result:

Should show password on click of eye icon

Actual Result:

Eye icon position not aligned and nothing happen on click of eye icon

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.36-2
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-07-04.at.4.57.49.PM.mov

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

View all open jobs on GitHub

Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~0175d4f2d46ea957ec
  • Upwork Job ID: 1676995758027735040
  • 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 Jul 4, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 4, 2023

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

@melvin-bot
Copy link

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

@Nikhil-Vats
Copy link
Contributor

Proposal

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

Eye icon position is not aligned and nothing happens on click of eye icon in password protected PDF form.

What is the root cause of that problem?

styles.flex1 was removed from the container of eye icon in this PR which is why the icon is not in center anymore.

{Boolean(props.secureTextEntry) && (
<Checkbox
style={styles.textInputIconContainer}
onPress={togglePasswordVisibility}
onMouseDown={(e) => e.preventDefault()}
accessibilityLabel={props.translate('common.visible')}
>
<Icon
src={passwordHidden ? Expensicons.Eye : Expensicons.EyeDisabled}
fill={themeColors.icon}
/>
</Checkbox>
)}

Nothing happens on clicking of eye icon since we are calling the setPasswordHidden in togglePasswordVisibility in the wrong way. prevState is not an object but is instead the current value of passwordHidden.

const togglePasswordVisibility = useCallback(() => {
setPasswordHidden((prevState) => !prevState.passwordHidden);
}, []);

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

We need to add styles.flex1 again in line 350 -

style={[styles.flex1, styles.textInputIconContainer]}

For fixing the click behaviour of eye icon, we need to call setPasswordHidden in the correct way in togglePasswordVisibility by not using prevState.passwordHidden and directly using prevState -

We need to simply call it like -

const togglePasswordVisibility = useCallback(() => { 
   setPasswordHidden((prevState) => !prevState); 
}, []); 

We can change the name of variable prevState to something else for better understanding.

What alternative solutions did you explore? (Optional)

NA

Result -

Screen.Recording.2023-07-04.at.8.50.55.PM.mov

@Nikhil-Vats
Copy link
Contributor

This is a regression from #20186.

@kbecciv kbecciv added DeployBlockerCash This issue or pull request should block deployment and removed Needs Reproduction Reproducible steps needed labels Jul 6, 2023
@kbecciv kbecciv changed the title Dev: Eye icon position not aligned and nothing happen on click of eye icon Web- Eye icon position not aligned and nothing happen on click of eye icon Jul 6, 2023
@github-actions github-actions bot removed the Daily KSv2 label Jul 6, 2023
@OSBotify
Copy link
Contributor

OSBotify commented Jul 6, 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 Jul 6, 2023

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

@Julesssss Julesssss added DeployBlockerCash This issue or pull request should block deployment and removed DeployBlockerCash This issue or pull request should block deployment labels Jul 6, 2023
@Julesssss Julesssss assigned Julesssss and unassigned PauloGasparSv Jul 6, 2023
@melvin-bot melvin-bot bot removed the Overdue label Jul 6, 2023
@Nikhil-Vats
Copy link
Contributor

Hey @Julesssss, can you take a look at my proposal? I have tested it and I can raise a PR right now.

@OSBotify
Copy link
Contributor

OSBotify commented Jul 6, 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.

@Julesssss
Copy link
Contributor

Julesssss commented Jul 6, 2023

Thanks @Nikhil-Vats. Your solution looks good to me, I was just trying to decide whether to revert the PR you linked.

I think it's going to be simpler to just work on this fix. So yeah, I'd be happy to assign you to this fix now

@melvin-bot melvin-bot bot removed the Reviewing Has a PR in review label Jul 7, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 7, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Jul 7, 2023

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

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

@Santhosh-Sellavel
Copy link
Collaborator

Santhosh-Sellavel commented Jul 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:

cc: @Julesssss Let me know if you differ on any of the above, thanks!

@Expensify Expensify deleted a comment from melvin-bot bot Jul 10, 2023
@melvin-bot melvin-bot bot added Weekly KSv2 and removed Weekly KSv2 labels Jul 10, 2023
@melvin-bot melvin-bot bot changed the title [HOLD for payment 2023-07-14] [$1000] Web- Eye icon position not aligned and nothing happen on click of eye icon [HOLD for payment 2023-07-17] [HOLD for payment 2023-07-14] [$1000] Web- Eye icon position not aligned and nothing happen on click of eye icon Jul 10, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 10, 2023

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

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 10, 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:

  • [@Santhosh-Sellavel] The PR that introduced the bug has been identified. Link to the PR:
  • [@Santhosh-Sellavel] 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:
  • [@Santhosh-Sellavel] 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:
  • [@Santhosh-Sellavel] Determine if we should create a regression test for this bug.
  • [@Santhosh-Sellavel] 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.
  • [@michaelhaxhiu] 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 Overdue and removed Weekly KSv2 labels Jul 13, 2023
@Julesssss Julesssss changed the title [HOLD for payment 2023-07-17] [HOLD for payment 2023-07-14] [$1000] Web- Eye icon position not aligned and nothing happen on click of eye icon [HOLD for payment 2023-07-17] [$1000] Web- Eye icon position not aligned and nothing happen on click of eye icon Jul 17, 2023
@Julesssss
Copy link
Contributor

Ready to be paid I think

@melvin-bot melvin-bot bot removed the Overdue label Jul 17, 2023
@Santhosh-Sellavel
Copy link
Collaborator

@michaelhaxhiu I will collect via ND

@Santhosh-Sellavel
Copy link
Collaborator

@Julesssss This qualifies for Bonus too right?

@michaelhaxhiu
Copy link
Contributor

@Santhosh-Sellavel yep just checked as part of the BZ payment step, and you are correct.

Let's do payments now!

@michaelhaxhiu
Copy link
Contributor

michaelhaxhiu commented Jul 18, 2023

Payments:

@michaelhaxhiu
Copy link
Contributor

@Santhosh-Sellavel will you require payment via newdot?

@Nikhil-Vats
Copy link
Contributor

Offer accepted @michaelhaxhiu.

@michaelhaxhiu
Copy link
Contributor

2/3 paid. Just waiting for Santhosh to confirm if he's gonna get paid via upwork or newdot.

@Santhosh-Sellavel
Copy link
Collaborator

@michaelhaxhiu I will let you know here once done!

@michaelhaxhiu
Copy link
Contributor

Please do!

@michaelhaxhiu
Copy link
Contributor

I'll check your box last

@Santhosh-Sellavel
Copy link
Collaborator

Requested on ND

@michaelhaxhiu
Copy link
Contributor

Perfect

@anmurali
Copy link

Approved $1500 to Santhosh based on #22183 (comment)

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

10 participants