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

added manifest to web to prompt app install in chrome #29491

Merged
merged 8 commits into from
Oct 23, 2023

Conversation

rlinoz
Copy link
Contributor

@rlinoz rlinoz commented Oct 12, 2023

Details

In order to make chrome mobile to prompt the user to install our app we need to add a manifest.json to our mWeb page. I am not really sure if having a manifest file has any other side effect.

I had to change the webpack script exactly to keep the manifest.json in the web build.

Good SO post about how to implement and test this.

Actual documentation which is confusing but maybe we can implement the banner in a better way later.

Fixed Issues

$ https://github.com/Expensify/Expensify/issues/325315

Tests

  1. Enabled this flag in chrome mobile chrome://flags/#bypass-app-banner-engagement-checks
  2. Ran ND over https using ngrok
  3. Opened up the mWeb page in a device with Google Play installed
  4. Verified that the prompts to install the app appear
  5. Verified that the prompts to install the app actually take the user to the Google Play app's page
  6. Opened up chrome desktop and verified that it still works and that there is no prompt
  • Verify that no errors appear in the JS console

Offline tests

QA Steps

This is a little bit tricky to test, so feel free to DM me.

Make sure you are in an Android device with Google Play installed

And if you are running this locally make sure to be serving it over https.

  1. Enable this flag in your Android device in chrome mobile chrome://flags/#bypass-app-banner-engagement-checks
  2. Open the mWeb page and wait a few seconds
  3. Verify that the banner is shown
  4. Verify that following it gets you to the Google Play store
  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • 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)
    • 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).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • 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 followed proper code patterns (see Reviewing the code)
    • 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)
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • 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.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • 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:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • 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.
    • 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.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • 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)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • 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
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • If we are not using the full Onyx data that we loaded, I've added the proper selector in order to ensure the component only re-renders when the data it is using changes
    • 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)
    • 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)
    • All JSX used for rendering exists in the render method
    • 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
  • If any new file was added I verified that:
    • 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
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG))
  • 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.
  • 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)
  • 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.
  • 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.
  • 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.
  • 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.
  • I have checked off every checkbox in the PR author checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop

@melvin-bot
Copy link

melvin-bot bot commented Oct 12, 2023

Hey, I noticed you changed some webpack configuration files. This can break production builds. Did you remember to run a production build locally to verify they still work?

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Oct 12, 2023

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 2ca8853
Status: ✅  Deploy successful!
Preview URL: https://4443af4c.helpdot.pages.dev
Branch Preview URL: https://rodrigo-prompt-install-mweb.helpdot.pages.dev

View logs

@rlinoz
Copy link
Contributor Author

rlinoz commented Oct 13, 2023

I ran a production build and it still works.

@rlinoz rlinoz added the InternalQA This pull request required internal QA label Oct 13, 2023
@rlinoz rlinoz self-assigned this Oct 13, 2023
@rlinoz rlinoz marked this pull request as ready for review October 17, 2023 02:21
@rlinoz rlinoz requested a review from a team as a code owner October 17, 2023 02:21
@melvin-bot melvin-bot bot requested review from situchan and removed request for a team October 17, 2023 02:21
@melvin-bot
Copy link

melvin-bot bot commented Oct 17, 2023

@situchan 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]

@rlinoz
Copy link
Contributor Author

rlinoz commented Oct 17, 2023

Hey @situchan bumping this for review.

@situchan
Copy link
Contributor

Going to review this tomorrow

Copy link
Contributor

@situchan situchan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's already app logo icon below. Can we reuse it?

https://github.com/Expensify/App/blob/main/assets/images/expensify-app-icon.svg

@situchan
Copy link
Contributor

@rlinoz I tested https://29491.pr-testing.expensify.com/ which is https but prompt not showing. Also splash logo is cut

XRecorder_21102023_002210.mp4

@rlinoz
Copy link
Contributor Author

rlinoz commented Oct 20, 2023

Is the New Expensify app not installed in the device? Also, did you enabled the flag chrome://flags/#bypass-app-banner-engagement-checks?

I will use that logo

@situchan
Copy link
Contributor

Is the New Expensify app not installed in the device? Also, did you enabled the flag chrome://flags/#bypass-app-banner-engagement-checks?

Both are done already

@rlinoz
Copy link
Contributor Author

rlinoz commented Oct 20, 2023

I was having the same issue as you, had to re-disable the flag and restart chrome

Also, just to be sure the device has Play Store installed right?

@situchan
Copy link
Contributor

situchan commented Oct 20, 2023

Also, just to be sure the device has Play Store installed right?

Right.
I will try again. Btw please pull main, update logo icon and generate build again

@rlinoz
Copy link
Contributor Author

rlinoz commented Oct 20, 2023

@OSBotify
Copy link
Contributor

@situchan
Copy link
Contributor

Still logo is cut

Screen.Recording.2023-10-21.at.12.58.15.AM.mov

Happening only on QR build. Fine in localhost

Copy link
Contributor

@situchan situchan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code looks good to me. Just struggling on testing (I am not able to see banner at all)
Will try open link from WhatsApp

@melvin-bot

This comment was marked as outdated.

@melvin-bot
Copy link

melvin-bot bot commented Oct 23, 2023

🎯 @situchan, thanks for reviewing and testing this PR! 🎉

An E/App issue has been created to issue payment here: #30162.

@Julesssss
Copy link
Contributor

Unassigning @jasperhuangg as I've already reviewed

@Julesssss
Copy link
Contributor

@situchan in order for this to work I had to do the following:

  • Uninstall the NewDot Android app
  • Close all the mWeb NewDot tabs
  • Kill Chrome app
  • Paste the URL into WhatsApp
  • Click the link

@Julesssss
Copy link
Contributor

Oh and also paste this flag into chrome: chrome://flags/#bypass-app-banner-engagement-checks, then enable it

@situchan
Copy link
Contributor

@Julesssss That worked. Thanks for the detailed step. Hope it won't be complex for real users when they visit new.expensify.com

Screenshot_20231023_204004_Chrome

@situchan
Copy link
Contributor

situchan commented Oct 23, 2023

Once I open it, no longer prompt shows again. Is it expected?

274934476-2ab43f15-2d91-4e7b-af9a-2cd7fccb2615

@Julesssss
Copy link
Contributor

Hope it won't be complex for real users when they visit new.expensify.com

I mostly just care about enabling it. If Google make the conditions difficult, that seems fine to me.

Once I open it, no longer prompt shows again. Is it expected?

Yeah.

@Julesssss
Copy link
Contributor

Great, so @situchan would you mind just filling out the checklist (obviously you don't need to test other platforms) and I'll merge?

@situchan
Copy link
Contributor

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • 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)
    • 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)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android / native
    • Android / Chrome
    • iOS / native
    • iOS / Safari
    • MacOS / Chrome / Safari
    • MacOS / Desktop
  • 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
  • I verified proper code patterns were followed (see Reviewing the code)
    • 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).
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • 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.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • 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.
    • 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.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • 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)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • 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
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • 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)
    • 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)
    • All JSX used for rendering exists in the render method
    • 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
  • If any new file was added I verified that:
    • 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
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG)
  • 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.
  • 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)
  • 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.
  • 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.
  • 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.
  • 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.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Web
Mobile Web - Chrome

Screenshot_20231023_204004_Chrome

Mobile Web - Safari
Desktop
iOS
Android

@Julesssss Julesssss merged commit 7bbcda6 into main Oct 23, 2023
14 of 15 checks passed
@Julesssss Julesssss deleted the rodrigo-prompt-install-mweb branch October 23, 2023 11:29
@OSBotify
Copy link
Contributor

✋ 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
Copy link
Contributor

🚀 Deployed to staging by https://github.com/Julesssss in version: 1.3.90-0 🚀

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

@marcaaron
Copy link
Contributor

@rlinoz will you do the Internal QA for this one?

@rlinoz
Copy link
Contributor Author

rlinoz commented Oct 24, 2023

@marcaaron Yes!

@marcaaron
Copy link
Contributor

Thanks !

@OSBotify
Copy link
Contributor

🚀 Deployed to production by https://github.com/marcaaron in version: 1.3.90-2 🚀

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

@OSBotify
Copy link
Contributor

🚀 Deployed to staging by https://github.com/Julesssss in version: 1.3.91-0 🚀

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

@isabelastisser
Copy link
Contributor

Hey @Julesssss @jasperhuangg @situchan I was assigned this issue for payment, but I'm unsure about the amount and if the urgency bonus is applied. Am I correct to think that @situchan should be paid $500 for the C+ review? Does this issue qualify for the urgency bonus?

Also, it looks like the PR was merged 2 days ago, so should I wait 7 days to make sure there are no regressions before I make the payment? Thanks!

@situchan
Copy link
Contributor

No bonus. $500 if no regressions until Nov 1

@Julesssss
Copy link
Contributor

Yep, as @situchan mentioned. I don't believe we include the urgency bonus on internal PRs

@OSBotify
Copy link
Contributor

🚀 Deployed to production by https://github.com/marcaaron in version: 1.3.91-8 🚀

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
InternalQA This pull request required internal QA Ready To Build
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants