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-09-04] [$1000] BUG: Rectangular white container surrounds the Google sign-in button #25638

Closed
1 of 6 tasks
marcochavezf opened this issue Aug 22, 2023 · 22 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 External Added to denote the issue can be worked on by a contributor

Comments

@marcochavezf
Copy link
Contributor

marcochavezf commented Aug 22, 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 the app (or log out if already logged in).
  2. Navigate to the sign-in page.

Expected Result:

The Google sign-in is surrounded by a rectangular white container.

Actual Result:

The Google sign-in is not surrounded by a rectangular white container.

Workaround:

N/A

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:
Reproducible in staging?:
Reproducible in production?:
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
Expensify/Expensify Issue URL:
Issue reported by: @rayane-djouah
Slack conversation: https://expensify.slack.com/archives/C049HHMV9SM/p1692656259550869

2023-08-21.23-02-55.mp4

View all open jobs on GitHub

Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~013a33ff67a596f404
  • Upwork Job ID: 1693788285544824832
  • Last Price Increase: 2023-08-22
  • Automatic offers:
    • rayane-djouah | Contributor | 26251929
    • rayane-djouah | Reporter | 26251930
@marcochavezf marcochavezf added Daily KSv2 Bug Something is broken. Auto assigns a BugZero manager. labels Aug 22, 2023
@marcochavezf marcochavezf self-assigned this Aug 22, 2023
@melvin-bot
Copy link

melvin-bot bot commented Aug 22, 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 Aug 22, 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

@marcochavezf marcochavezf added the External Added to denote the issue can be worked on by a contributor label Aug 22, 2023
@melvin-bot melvin-bot bot changed the title BUG: Rectangular white container surrounds the Google sign-in button [$1000] BUG: Rectangular white container surrounds the Google sign-in button Aug 22, 2023
@melvin-bot
Copy link

melvin-bot bot commented Aug 22, 2023

Job added to Upwork: https://www.upwork.com/jobs/~013a33ff67a596f404

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

melvin-bot bot commented Aug 22, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Aug 22, 2023

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

@rayane-djouah
Copy link
Contributor

rayane-djouah commented Aug 22, 2023

Proposal

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

The "Sign in with Google" button, when embedded in the Expensify web application, displayed an unwanted white background. This visual discrepancy was inconsistent with the desired dark theme of the application.

What is the root cause of that problem?

The root (:root) of the Expensify web application's document has the color-scheme: dark property set. This indicates to the browser that the content is optimized for dark color themes. The Google Sign-in button, being a third-party component rendered within an iframe, adapts its appearance based on the surrounding context's color scheme. Due to the color-scheme: dark property, the dynamically generated iframe for the Google Sign-in button defaulted to a white background, leading to the observed issue.

App/web/index.html

Lines 34 to 36 in e3074c4

:root {
color-scheme: dark !important;
}

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

To address this visual discrepancy, the following code change need to be implemented:

In the styles for the container of the Google Sign-in button,

App/src/styles/styles.js

Lines 3638 to 3648 in e3074c4

googleButtonContainer: {
width: 40,
height: 40,
marginLeft: 12,
alignItems: 'center',
},
googlePillButtonContainer: {
height: 40,
width: 219,
},

we need to introduce color-scheme property and set it to light.

googleButtonContainer: {
    ...,
    colorScheme: 'light', /* This line ensures the element uses a light color theme */
},
googlePillButtonContainer: {
    colorScheme: 'light',
...
},

By setting the color-scheme to light for the specific container of the Google Sign-in button, it is influenced to adopt a light theme, ensuring its appearance is consistent with the expected design and eliminating the unwanted white background.

Result:

Screenshot 2023-08-22 000357

What alternative solutions did you explore? (Optional)

N/A

@melvin-bot
Copy link

melvin-bot bot commented Aug 22, 2023

⚠️ Looks like this issue was linked to a Deploy Blocker here

If you are the assigned CME please investigate whether the linked PR caused a regression and leave a comment with the results.

If a regression has occurred and you are the assigned CM follow the instructions here.

If this regression could have been avoided please consider also proposing a recommendation to the PR checklist so that we can avoid it in the future.

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

melvin-bot bot commented Aug 22, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Aug 22, 2023

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

Offer link
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 Aug 22, 2023

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

Offer link
Upwork job

@marcochavezf
Copy link
Contributor Author

Coming from this convo, assigning @rayane-djouah

@melvin-bot melvin-bot bot added Reviewing Has a PR in review Weekly KSv2 and removed Daily KSv2 labels Aug 22, 2023
@rayane-djouah
Copy link
Contributor

@parasharrajat PR ready for review

@melvin-bot
Copy link

melvin-bot bot commented Aug 22, 2023

🎯 ⚡️ Woah @parasharrajat / @rayane-djouah, great job pushing this forwards! ⚡️

The pull request got merged within 3 working days of assignment, so this job is eligible for a 50% #urgency bonus 🎉

  • when @rayane-djouah got assigned: 2023-08-22 01:00:37 Z
  • when the PR got merged: 2023-08-22 17:58:31 UTC

On to the next one 🚀

@melvin-bot melvin-bot bot added Weekly KSv2 Awaiting Payment Auto-added when associated PR is deployed to production labels Aug 28, 2023
@melvin-bot melvin-bot bot changed the title [$1000] BUG: Rectangular white container surrounds the Google sign-in button [HOLD for payment 2023-09-04] [$1000] BUG: Rectangular white container surrounds the Google sign-in button Aug 28, 2023
@melvin-bot melvin-bot bot removed the Reviewing Has a PR in review label Aug 28, 2023
@melvin-bot
Copy link

melvin-bot bot commented Aug 28, 2023

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

@melvin-bot
Copy link

melvin-bot bot commented Aug 28, 2023

The solution for this issue has been 🚀 deployed to production 🚀 in version 1.3.57-6 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-09-04. 🎊

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

  • [@parasharrajat] The PR that introduced the bug has been identified. Link to the PR:
  • [@parasharrajat] 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:
  • [@parasharrajat] 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:
  • [@parasharrajat] Determine if we should create a regression test for this bug.
  • [@parasharrajat] 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 Daily KSv2 labels Sep 4, 2023
@greg-schroeder
Copy link
Contributor

Yesterday was a holiday, will take care of this today!

@parasharrajat
Copy link
Member

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:

  • [@parasharrajat] The PR that introduced the bug has been identified. Link to the PR: Apple & Google Sign In #23673

  • [@parasharrajat] 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: Apple & Google Sign In #23673 (comment)

  • [@parasharrajat] 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: NA, it seems this issue was known during the PR review.

  • [@parasharrajat] Determine if we should create a regression test for this bug. Yes

  • [@parasharrajat] 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.

Regression Test Steps

  1. Go to the sign-in page.
  2. Notice the google sign-in button on the dark theme.
  3. Verify that no rectangular white container surrounds the Google sign-in button.

Do you agree 👍 or 👎 ?

@greg-schroeder
Copy link
Contributor

Issue Participants:

Issue reported by: @rayane-djouah
Contributor: @rayane-djouah
C+: @parasharrajat

Was this issue merged in time to be eligible for the speed bonus? ✅
Were their any regressions? ❌

Payment summary:

Reporter: $250
Contributor: $1,500
C+: 1,500

@greg-schroeder
Copy link
Contributor

Filing regression test. You're in the clear to make a manual request for payment @parasharrajat. Closing.

@parasharrajat
Copy link
Member

Payment requested as per #25638 (comment)

@JmillsExpensify
Copy link

$1,500 payment for @parasharrajat approved based on BZ summary.

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

No branches or pull requests

5 participants