-
Notifications
You must be signed in to change notification settings - Fork 10.3k
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
[gatsby-source-contentful] Make base64 query to field-level to speed up asset queries #3617
Merged
KyleAMathews
merged 7 commits into
gatsbyjs:master
from
sarahatwork:topic/add-with-base-64-option
Jan 23, 2018
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
bb080f7
[gatsby-source-contentful] Add withBase64 option to speed up image qu…
sarahatwork 9dafccc
Revert "[gatsby-source-contentful] Add withBase64 option to speed up …
sarahatwork be12907
remove base64 from resolveResponsiveResolution
sarahatwork 6213b93
create base64 resolver
sarahatwork da3fae1
update sizes, reset resize to original state
sarahatwork 232c50d
update tests
sarahatwork f9a69ea
update resize and tests
sarahatwork File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need a base64 string not a link so that we can embed the base64 string directly in the HTML so it can show immediately upon loading the page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@KyleAMathews It's actually a different property;
base64
has been removed, andbaseUrl
is something I started returning to be used in thegetBase64Image
. It's not a graphql field so it will not be exposed to users.For example
resolveResponsiveResolution
returns it here: https://github.com/gatsbyjs/gatsby/pull/3617/files#diff-dc42475a9f0ed45d6e1bf554ec9958a2R199And then
getBase64Image
uses it: https://github.com/gatsbyjs/gatsby/pull/3617/files#diff-dc42475a9f0ed45d6e1bf554ec9958a2R78Just double-checked that on my branch queries return base64 strings as expected:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oooo gotcha! Ok :-) totally makes sense. Didn't look closely, clearly, at what that snapshot was for!