-
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
fix(gatsby-source-contentful): Correct supported image formats #29562
Merged
Merged
Changes from all commits
Commits
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
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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -12,6 +12,7 @@ const { | |||||
GraphQLFloat, | ||||||
GraphQLNonNull, | ||||||
GraphQLJSON, | ||||||
GraphQLList, | ||||||
} = require(`gatsby/graphql`) | ||||||
const qs = require(`qs`) | ||||||
const { generateImageData } = require(`gatsby-plugin-image`) | ||||||
|
@@ -33,6 +34,8 @@ const { | |||||
// cache is more likely to go stale than the images (which never go stale) | ||||||
// Note that the same image might be requested multiple times in the same run | ||||||
|
||||||
const validImageFormats = new Set([`jpg`, `png`, `webp`]) | ||||||
|
||||||
if (process.env.GATSBY_REMOTE_CACHE) { | ||||||
console.warn( | ||||||
`Note: \`GATSBY_REMOTE_CACHE\` will be removed soon because it has been renamed to \`GATSBY_CONTENTFUL_EXPERIMENTAL_REMOTE_CACHE\`` | ||||||
|
@@ -200,6 +203,13 @@ const generateImageSource = ( | |||||
height = CONTENTFUL_IMAGE_MAX_SIZE | ||||||
} | ||||||
|
||||||
if (!validImageFormats.has(toFormat)) { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
console.warn( | ||||||
`[gatsby-source-contentful] Invalid image format "${toFormat}". Supported types are jpg, png and webp"` | ||||||
) | ||||||
return undefined | ||||||
} | ||||||
|
||||||
const src = createUrl(filename, { | ||||||
width, | ||||||
height, | ||||||
|
@@ -781,6 +791,16 @@ exports.extendNodeType = ({ type, store, reporter }) => { | |||||
type: GraphQLInt, | ||||||
defaultValue: 50, | ||||||
}, | ||||||
formats: { | ||||||
type: GraphQLList(ImageFormatType), | ||||||
description: stripIndent` | ||||||
The image formats to generate. Valid values are AUTO (meaning the same format as the source image), JPG, PNG, and WEBP. | ||||||
The default value is [AUTO, WEBP], and you should rarely need to change this. Take care if you specify JPG or PNG when you do | ||||||
not know the formats of the source images, as this could lead to unwanted results such as converting JPEGs to PNGs. Specifying | ||||||
both PNG and JPG is not supported and will be ignored. | ||||||
`, | ||||||
defaultValue: [``, `webp`], | ||||||
}, | ||||||
}) | ||||||
|
||||||
fieldConfig.type = GraphQLJSON | ||||||
|
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
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.
Not sure why a set is needed here.
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.
I was under the impression that set.has was significantly faster than array.includes
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.
It probably is but it doesn't matter on a 3 items list. For me when I read Sets I expect things to get added to it and making sure things are unique and that makes it more complex in my head.
Sets are fine, that's why I approved it but wanted to get the reason on the why :)
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.
It's just a pattern I always use for this sort of check, particularly when dealing with potentially large numbers of nodes, with a constant Set.