-
Notifications
You must be signed in to change notification settings - Fork 4k
🧪 [Story performance] Lazy load share menu on desktop on-demand #37044
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
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…'main' of github.com:ampproject/amphtml into removeShare
…l into removeShare
…l into removeShare
Changes already merged in other PRs, closing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The share menu adds 3.5kB to amp-story and is not useful for the first paint of the page, so removing it will speed up the download and parsing of the amp-story bundle. The share menu will be fetched when users click on the share icon if there is no native share, and given that the click happens after all assets were downloaded, the share menu will be downloaded faster.
We can remove or simplify the requests service from amp-story with this change, since it's not used for any core amp-story functionality anymore.
Changes:
AmpSocialShare
not live in the same file as theregisterElement
declaration so that we can import just the class.amp-story-share-menu.js
that builds the share menu for desktop or mobile when installed, and installsAmpSocialShare
.amp-story-1.0.js
so we don't have to download the share menu on mobile browsers.amp-story.-1.0js
which were causing the styles to show up 3 times on the bundle (now they are only onamp-story-share-menu-0.1.js
)