Preprocessing External Images
Gatsby allows powerful image processing features using the Sharp
library to automatically process images to be performant, with features like lazy-loading. That said, this only works if the image is a File
node in the GraphQL layer.
If you want the same functionality for files that are remotely hosted online and not located in your Git repo, gatsby-source-filesystem
has an API called createRemoteFileNode
to solve this.
This guide will show you how to use the createRemoteFileNode
process and get the same benefits of gatsby-transformer-sharp with externally sourced images.
Setup
A use case that this technique can support is if you want to create a featured image in a blog post with an image sourced from a URL out on the web, instead of a local file. This could be hosted somewhere like Imgur, S3, or anywhere on the internet.
Given a sample post:
You can use a custom Frontmatter field for the URL of the featured image you want to pull down and use as part of the site.
By default, this is a string value as you haven’t told Gatsby yet how to interpret it. However, you can add some code into gatsby-node.js
to modify it.
Gatsby Node
In your gatsby-node.js
file, you can do some processing to create file nodes for the custom featuredImgUrl
Frontmatter field.
As you may not want to require all blog posts to have a featured image, you can define some GraphQL types with Gatsby’s Schema Customization API to provide flexibility and control with your queries. Explicitly defining these types allows you to return null
when a blog post does not contain a featured image in its frontmatter data. Even if there are no blog posts with these data fields, the type will still exist in the schema and can be used in your code.
Going step by step through the code:
- Define some types for
MarkdownRemark
using the Schema Customization API. Defining a field for alternative text asfeaturedImgAlt
can also improve accessibility, in addition to providing context for the image if it fails to load. - Create an
onCreateNode
function so you can watch for whenMarkdownRemark
nodes are made. - Use
createRemoteFileNode
by passing in the various required fields and get a reference to the file afterwards. - If the Node is created, attach it as a child of the original Node.
___NODE
tells the GraphQL layer that the name before it is going to be a field on the parent Node that links to another Node. To do this, pass theid
as the reference. Do note, this new node is now attached to the root of themarkdownRemark
node instead of thefrontmatter
field.
And since it is a File Node, gatsby-transformer-sharp
will pick it up and create a childImageSharp
child Node inside this newly created Node.
Usage in templates
Now that the images are being generated and available in GraphQL, you can use them in action.
If you open GraphiQL and write a query on the Markdown Nodes, you can see a new Node attached to any MarkdownRemark
Node that had a featured image:
You can then use gatsby-transformer-sharp
to fill in the query for a fixed image here. For more information on transforming images using parameters and fragments, check out the Gatsby Image API docs.
And finally, you can update the template for this blog post to include a featured image node. Note the alt text still comes from the post frontmatter. This template is based on the one in the Programmatically create pages from data section of the Gatsby Tutorial.
And if you run gatsby develop
, you’ll see the remote file locally now:
Edit this page on GitHub