App icon indicating copy to clipboard operation
App copied to clipboard

Add tooltip and change background color of subscription icon

Open dukenv0307 opened this issue 4 months ago • 24 comments

Details

Fixed Issues

$ https://github.com/Expensify/App/issues/35618 PROPOSAL: https://github.com/Expensify/App/issues/35618#issuecomment-1922653726

Tests

  1. Hover over the workspace switch button
  2. Verify that the tooltip appears with the text is Choose a workspace
  3. Verify that the background color of subscription is changed
  • [x] Verify that no errors appear in the JS console

Offline tests

Same as above

QA Steps

  1. Hover over the workspace switch button
  2. Verify that the tooltip appears with the text is Choose a workspace
  3. Verify that the background color of subscription is changed
  • [x] Verify that no errors appear in the JS console

PR Author Checklist

  • [x] I linked the correct issue in the ### Fixed Issues section above
  • [x] I wrote clear testing steps that cover the changes made in this PR
    • [x] I added steps for local testing in the Tests section
    • [x] I added steps for the expected offline behavior in the Offline steps section
    • [x] I added steps for Staging and/or Production testing in the QA steps section
    • [x] I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • [x] I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • [x] I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • [x] I included screenshots or videos for tests on all platforms
  • [x] I ran the tests on all platforms & verified they passed on:
    • [x] Android: Native
    • [x] Android: mWeb Chrome
    • [x] iOS: Native
    • [x] iOS: mWeb Safari
    • [x] MacOS: Chrome / Safari
    • [x] MacOS: Desktop
  • [x] 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)
  • [x] I followed proper code patterns (see Reviewing the code)
    • [x] I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • [x] I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • [x] I verified that comments were added to code that is not self explanatory
    • [x] I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • [x] I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • [x] If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • [x] I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • [x] I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • [x] I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • [x] I verified the JSDocs style guidelines (in STYLE.md) were followed
  • [x] If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • [x] I followed the guidelines as stated in the Review Guidelines
  • [x] I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • [x] I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • [x] I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • [x] I verified that if a function's arguments changed that all usages have also been updated correctly
  • [x] If any new file was added I verified that:
    • [x] The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • [x] If a new CSS style is added I verified that:
    • [x] A similar style doesn't already exist
    • [x] The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • [x] If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • [x] If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • [x] If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • [x] If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • [x] If the PR modifies the form input styles:
    • [x] I verified that all the inputs inside a form are aligned with each other.
    • [x] I added Design label so the design team can review the changes.
  • [x] If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • [x] If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Android: mWeb Chrome

https://github.com/Expensify/App/assets/129500732/e0720182-161b-4063-bfc6-431b8915c663

iOS: Native
iOS: mWeb Safari

https://github.com/Expensify/App/assets/129500732/3f73bb5d-580f-4c74-85e5-422a882eede7

MacOS: Chrome / Safari

https://github.com/Expensify/App/assets/129500732/dbdb5ee8-8d0d-4215-ae54-faaa1b4946a8

MacOS: Desktop

https://github.com/Expensify/App/assets/129500732/a8e78416-e135-4500-b31b-fde79f12ed2f

dukenv0307 avatar Feb 05 '24 08:02 dukenv0307

@thesahindia Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

melvin-bot[bot] avatar Feb 05 '24 08:02 melvin-bot[bot]

@shawnborton Can you please confirm the bg color of the subscription icon here? Actually, SubscriptAvatar doesn't support to change the background color of subscription icon. We can only change the background color of border.

  1. If the screenshot I uploaded is the current expected behavior. We're good now.
  2. If we want to change the bg color instead of background color of border, I will update the PR to add an extra prop in SubscriptAvatar to support changing bg color of subscription icon.

dukenv0307 avatar Feb 05 '24 08:02 dukenv0307

I am a bit confused here, what is the subscription icon?

In your video though, why are you changing the border color of the small button over the workspace icon?

Think of the small circular button that is on top of the workspace avatar as just a button. A default button. We want to use the same existing styles of default buttons here, so that means just changing the background color on hover as well as a pressed state.

CleanShot 2024-02-05 at 09 18 12

shawnborton avatar Feb 05 '24 14:02 shawnborton

Also, it looks like something changed with the border color too? The button should have a border around it like this: CleanShot 2024-02-05 at 09 19 29@2x

shawnborton avatar Feb 05 '24 14:02 shawnborton

hello @dukenv0307 @shawnborton, I think what you intended to do with the button is mentioned in my Proposal for the issue, this changed the button bg color over hover rather than the icon bg color, I would have no issue if @dukenv0307 uses the same solution over this PR for the bg color :), would like to share the bounty amount equally if @dukenv0307 cannot be unassigned

https://github.com/Expensify/App/assets/110545952/95cc3f0a-c376-4d95-a707-00e7d10255a3

allgandalf avatar Feb 06 '24 09:02 allgandalf

Yup @GandalfGwaihir that indeed looks like what we expect the behavior to be here, thanks for the video!

shawnborton avatar Feb 06 '24 13:02 shawnborton

cc @thesahindia @mountiny for thoughts here - I think we picked an incorrect proposal and it looks like @GandalfGwaihir's proposal was actually what we were looking for.

shawnborton avatar Feb 06 '24 13:02 shawnborton

If we want to change the bg color instead of background color of border, I will update the PR to add an extra prop in SubscriptAvatar to support changing bg color of subscription icon.

@shawnborton Actually SubscriptAvatar doesn't change the bg color of the subscription icon when we hover over it. So as I mentioned above we can add an extra prop like subscriptionContainerStyle and use this to flex the style of container of subscription container view instead of having a constant bg color when we hover over this because SubscriptAvatar is used in many places of the app.

dukenv0307 avatar Feb 06 '24 13:02 dukenv0307

What exactly is SubscriptAvatar? I don't think I understand the name of that.

And I don't think I am following the rest of your comment. All I am trying to communicate is that this part here: CleanShot 2024-02-06 at 08 59 21@2x

It's just a small default button, and it should behave just like other buttons regarding :hover and :press.

shawnborton avatar Feb 06 '24 13:02 shawnborton

cc @hayata-suenaga seems like is assigned, I was not involved so do not have context behind picked proposal

mountiny avatar Feb 06 '24 13:02 mountiny

@shawnborton

What exactly is SubscriptAvatar? I don't think I understand the name of that.

This is a component that we used to display the avatar like workspace switcher button.

In this component, we called the big icon (workspace avatar in this case) is main avatar and we called the small icon (small button in this case) is subscription icon.

It's just a small default button, and it should behave just like other buttons regarding :hover and :press.

And in this component we simply render the subscription in a view and has no effect like :hover.

https://github.com/Expensify/App/blob/0eb6d02b12569c42eca494d96c0c5f15eaa0b26f/src/components/SubscriptAvatar.tsx#L105

Screenshot 2024-02-06 at 21 00 59

cc @thesahindia @mountiny for thoughts here - I think we picked an incorrect proposal and it looks like @GandalfGwaihir's proposal was actually what we were looking for.

When I post the proposal, I follow the description of the bug and after that we re-confirm again the expected behavior and it's different from the description of the bug but it's easily to do.

I just want to re-confirm here https://github.com/Expensify/App/pull/35795#issuecomment-1926434120 because maybe we don't want to re-create a new prop in this component.

dukenv0307 avatar Feb 06 '24 14:02 dukenv0307

SubscriptAvatar - This is a component that we used to display the avatar like workspace switcher button.

@mountiny @kosmydel any context why we named it this way? This really has nothing to do with your subscription... internally we've always referenced this as the WorkspaceSwitcher too.

Either way, yes, the small button inside of the workspace switcher is just a button and it should have :hover and :press functionality like all of our other buttons. Hopefully that helps clear things up, curious what you think the next steps are from here.

shawnborton avatar Feb 06 '24 14:02 shawnborton

This really has nothing to do with your subscription... internally we've always referenced this as the WorkspaceSwitcher too.

@shawnborton Its not subscription but subscript since you have the small icon on right bottom. like this in maths or chemistry: image

mountiny avatar Feb 06 '24 14:02 mountiny

Ah, got it. Wow... that still feels like quite the stretch of a name? Why not name it something more friendly like AvatatarWithArrowButton or something? I guess that's a different conversation for a different day...

shawnborton avatar Feb 06 '24 14:02 shawnborton

Ah, got it. Wow... that still feels like quite the stretch of a name? Why not name it something more friendly like AvatatarWithArrowButton or something? I guess that's a different conversation for a different day...

This component was created two years ago. Probably we just reused it (I wasn't author of this change).

kosmydel avatar Feb 06 '24 14:02 kosmydel

where do we go from here :thinking:

allgandalf avatar Feb 06 '24 14:02 allgandalf

Why not name it something more friendly like AvatatarWithArrowButton or something

The reason can be the aim of this component to display two avatars like this. Not for the case the subscription is icon button.

Screenshot 2024-02-06 at 21 37 30

dukenv0307 avatar Feb 06 '24 14:02 dukenv0307

I think we have two options here

  1. Still re-use SubscriptAvatar, add an extra prop to change the bg color of the small icon

  2. Create a new component like AvatarWithIconButton and in this component, the small icon style will be the same style as the normal icon. And the icon button can be flexed to re-use in the feature not only arrow button.

@shawnborton What do you think?

dukenv0307 avatar Feb 06 '24 14:02 dukenv0307

Cool, I don't feel too strongly from a technical perspective - definitely curious what the C+/engineers think about for that.

shawnborton avatar Feb 06 '24 14:02 shawnborton

Either way, yes, the small button inside of the workspace switcher is just a button and it should have :hover and :press functionality like all of our other buttons

with the intented goal in mind, i guess my proposal might be a fit :) to this bug @shawnborton @hayata-suenaga @thesahindia would be okay to share the bounty amount equally if @dukenv0307 cannot be unassigned

allgandalf avatar Feb 06 '24 14:02 allgandalf

As noted it was around for a while. I agree that AvatarWithSubscript would be cleaner.

mountiny avatar Feb 06 '24 15:02 mountiny

@thesahindia Updated the PR to use an extra style prop.

dukenv0307 avatar Feb 06 '24 15:02 dukenv0307

I don't think we need additional component just to add the hover effect. Let's stick with the chosen proposal and add an extra prop.

hayata-suenaga avatar Feb 06 '24 18:02 hayata-suenaga

Reviewer Checklist

  • [x] I have verified the author checklist is complete (all boxes are checked off).
  • [x] I verified the correct issue is linked in the ### Fixed Issues section above
  • [x] I verified testing steps are clear and they cover the changes made in this PR
    • [x] I verified the steps for local testing are in the Tests section
    • [x] I verified the steps for Staging and/or Production testing are in the QA steps section
    • [x] I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • [x] I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • [x] I checked that screenshots or videos are included for tests on all platforms
  • [x] I included screenshots or videos for tests on all platforms
  • [x] I verified tests pass on all platforms & I tested again on:
    • [x] Android: Native
    • [x] Android: mWeb Chrome
    • [x] iOS: Native
    • [x] iOS: mWeb Safari
    • [x] MacOS: Chrome / Safari
    • [x] MacOS: Desktop
  • [X] If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • [X] I verified proper code patterns were followed (see Reviewing the code)
    • [X] I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • [X] I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • [X] I verified that comments were added to code that is not self explanatory
    • [X] I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • [X] I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • [X] I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • [X] I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • [X] I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • [X] I verified the JSDocs style guidelines (in STYLE.md) were followed
  • [X] If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • [X] I verified that this PR follows the guidelines as stated in the Review Guidelines
  • [X] I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • [X] I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • [X] I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • [X] If a new component is created I verified that:
    • [X] A similar component doesn't exist in the codebase
    • [X] All props are defined accurately and each prop has a /** comment above it */
    • [X] The file is named correctly
    • [X] The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • [X] The only data being stored in the state is data necessary for rendering and nothing else
    • [X] For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • [X] Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • [X] All JSX used for rendering exists in the render method
    • [X] The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • [X] If any new file was added I verified that:
    • [X] The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • [X] If a new CSS style is added I verified that:
    • [X] A similar style doesn't already exist
    • [X] The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • [X] If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • [X] If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • [X] If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • [X] If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • [X] If the PR modifies the form input styles:
    • [X] I verified that all the inputs inside a form are aligned with each other.
    • [X] I added Design label so the design team can review the changes.
  • [X] If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • [X] If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • [X] I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native Screenshot 2024-02-08 at 3 05 43 AM
Android: mWeb Chrome Screenshot 2024-02-08 at 3 05 23 AM
iOS: Native
iOS: mWeb Safari Screenshot 2024-02-08 at 3 05 55 AM
MacOS: Chrome / Safari Screenshot 2024-02-08 at 2 47 56 AM
MacOS: Desktop Screenshot 2024-02-08 at 2 55 10 AM

thesahindia avatar Feb 07 '24 21:02 thesahindia

building ad hoc build so that Shawn can check the final design

hayata-suenaga avatar Feb 08 '24 16:02 hayata-suenaga

:test_tube::test_tube: Use the links below to test this adhoc build on Android, iOS, Desktop, and Web. Happy testing! :test_tube::test_tube:

Android :robot: iOS :apple:
https://ad-hoc-expensify-cash.s3.amazonaws.com/android/35795/index.html https://ad-hoc-expensify-cash.s3.amazonaws.com/ios/35795/index.html
Android iOS
Desktop :computer: Web :spider_web:
https://ad-hoc-expensify-cash.s3.amazonaws.com/desktop/35795/NewExpensify.dmg https://35795.pr-testing.expensify.com
Desktop Web

:eyes: View the workflow run that generated this build :eyes:

github-actions[bot] avatar Feb 08 '24 16:02 github-actions[bot]

I think that looks good to me! Thanks!

shawnborton avatar Feb 08 '24 17:02 shawnborton

:hand: This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

OSBotify avatar Feb 08 '24 19:02 OSBotify

🚀 Deployed to staging by https://github.com/hayata-suenaga in version: 1.4.40-0 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 failure ❌

OSBotify avatar Feb 12 '24 14:02 OSBotify

🚀 Deployed to production by https://github.com/mountiny in version: 1.4.40-5 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 failure ❌
🕸 web 🕸 failure ❌

OSBotify avatar Feb 13 '24 18:02 OSBotify