Skip to content

Commit

Permalink
fix(gatsby-source-contentful): Correct supported image formats (#29562)
Browse files Browse the repository at this point in the history
(cherry picked from commit 3b4d32f)
  • Loading branch information
ascorbic committed Feb 18, 2021
1 parent 6374419 commit febd5e4
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
31 changes: 31 additions & 0 deletions packages/gatsby-source-contentful/src/extend-node-type.js
Expand Up @@ -12,6 +12,7 @@ const {
GraphQLInt,
GraphQLFloat,
GraphQLNonNull,
GraphQLList,
} = require(`gatsby/graphql`)
const qs = require(`qs`)
const { generateImageData } = require(`gatsby-plugin-image`)
Expand All @@ -27,6 +28,8 @@ const cacheImage = require(`./cache-image`)
// 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\``
Expand Down Expand Up @@ -188,6 +191,24 @@ const generateImageSource = (
_fit, // We use resizingBehavior instead
{ jpegProgressive, quality, cropFocus, backgroundColor, resizingBehavior }
) => {
// Ensure we stay within Contentfuls Image API limits
if (width > CONTENTFUL_IMAGE_MAX_SIZE) {
height = Math.floor((height / width) * CONTENTFUL_IMAGE_MAX_SIZE)
width = CONTENTFUL_IMAGE_MAX_SIZE
}

if (height > CONTENTFUL_IMAGE_MAX_SIZE) {
width = Math.floor((width / height) * CONTENTFUL_IMAGE_MAX_SIZE)
height = CONTENTFUL_IMAGE_MAX_SIZE
}

if (!validImageFormats.has(toFormat)) {
console.warn(
`[gatsby-source-contentful] Invalid image format "${toFormat}". Supported types are jpg, png and webp"`
)
return undefined
}

const src = createUrl(filename, {
width,
height,
Expand Down Expand Up @@ -778,6 +799,16 @@ exports.extendNodeType = ({ type, store, reporter }) => {
backgroundColor: {
type: GraphQLString,
},
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`],
},
})
}

Expand Down
1 change: 1 addition & 0 deletions packages/gatsby-source-contentful/src/schemes.js
Expand Up @@ -4,6 +4,7 @@ const ImageFormatType = new GraphQLEnumType({
name: `ContentfulImageFormat`,
values: {
NO_CHANGE: { value: `` },
AUTO: { value: `` },
JPG: { value: `jpg` },
PNG: { value: `png` },
WEBP: { value: `webp` },
Expand Down

0 comments on commit febd5e4

Please sign in to comment.