Configure a Gatsby Theme to Take Options

InstructorJason Lengstorf

Share this video with your friends

Send Tweet

Gatsby themes accept options. Learn how to read these options and generate pages from the correct data at the appropriate locations.

In this lesson, we'll:

  • turn the gatsby-config into a function
  • pass in options as arguments to that function
  • update gatsby-node to reference the options passed in

For a written version of this course, check out the Gatsby docs.

In a consuming package, you can configure the options object however you need to within the plugins array.

Alex Mejias
~ 5 years ago

This video does not quite stress the point that your theme's local data import will no longer work after changing your gatsby-config to export a function rather than an object.

Jason Lengstorfinstructor
~ 5 years ago

@Alex that's a good point. I’m planning to record some updates, and I'll add this to the list. Thanks!

HaveF
~ 5 years ago

I did the same thing, and I can see the events page in site project, but when I click one of the event to jump to the template/event.js page, it fails(404). On the build process, it says warning below. Did I missing something?

warn The GraphQL query in the non-page component "/Users/User/egghead_gatsby-theme-authoring/gatsby-theme-events/src/template/event.js" will
not be run.
Exported queries are only executed for Page components. It's possible you're
trying to create pages in your gatsby-node.js and that's failing for some
reason.

If the failing component(s) is a regular component and not intended to be a page
component, you generally want to use a <StaticQuery> (https://gatsbyjs.org/docs/static-query)
instead of exporting a page query.

If you're more experienced with GraphQL, you can also export GraphQL
fragments from components and compose the fragments in the Page component
query and pass data down into the child component — http://graphql.org/learn/queries/#fragments
Jason Lengstorfinstructor
~ 5 years ago

@HaveF this looks like the createPage call isn't being fired, which would mean that the event template isn't being used. Gatsby will warn for page queries in any files that aren't actively being used as pages or page templates.

Hope that helps!

Md. Anam Hossain
~ 5 years ago
UNHANDLED REJECTION Unable to find plugin "gatsby-theme-events". Perhaps you need to install its package?
  Error: Unable to find plugin "gatsby-theme-events". Perhaps you need to install its package?

I got this when I run yarn workspace site develop Let me know how to solve this. Thanks.

Ryan Murray
~ 5 years ago

Hi Jason,

I got the same error as MD. Anam. Did this get resolved?

Ryan Murray
~ 5 years ago

Here's a little more information:

These are my dependencies in /site

"dependencies": {
        "gatsby": "^2.16.5",
        "react": "^16.10.2",
        "react-dom": "^16.10.2",
        "gatsby-theme-events": "*"
    }
Ryan Murray
~ 5 years ago

Figured it out my error.

In my case the blank index.js was not in /gatsby-theme-events

André
~ 4 years ago

Hi Jason, I'm having the same problem as @HaveF.

I looked into what you suggested and to me it seems like the createPage call is being called but there are no generated nodes, so the createPage query returns no data to generate the pages.

Any ideas on what might be wrong? I started the entire process from scratch twice just to make sure it wasn't a typo but no luck.

yarn run v1.21.1
$ gatsby develop
success open and validate gatsby-configs - 0.014s
success load plugins - 0.033s
success onPreInit - 0.022s
success initialize cache - 0.006s
success copy gatsby files - 0.042s
success onPreBootstrap - 0.011s
success createSchemaCustomization - 0.005s
warn The events plugin has generated no Gatsby nodes. Do you need it?
success Checking for changed pages - 0.002s
success source and transform nodes - 0.033s
success building schema - 0.139s
info Total nodes: 21, SitePage nodes: 2 (use --verbose for breakdown)
success createPages - 0.022s
success Checking for changed pages - 0.001s
success createPagesStatefully - 0.023s
success update schema - 0.022s
success write out redirect data - 0.002s
success onPostBootstrap - 0.003s
info bootstrap finished - 2.150s
success onPreExtractQueries - 0.002s
success extract queries from components - 0.077s
warn The GraphQL query in the non-page component "/Users/User/gatsby-themes/events/src/templates/event.js" will not be run.
Exported queries are only executed for Page components. It's possible you're
trying to create pages in your gatsby-node.js and that's failing for some
reason.

If the failing component(s) is a regular component and not intended to be a page
component, you generally want to use a <StaticQuery> (https://gatsbyjs.org/docs/static-query)
instead of exporting a page query.

If you're more experienced with GraphQL, you can also export GraphQL
fragments from components and compose the fragments in the Page component
query and pass data down into the child component — https://graphql.org/learn/queries/#fragments
success write out requires - 0.005s
success run page queries - 0.022s - 2/2 89.82/s
⠀
You can now view site in the browser.
⠀
  http://localhost:8000/
⠀
View GraphiQL, an in-browser IDE, to explore your site's data and schema
⠀
  http://localhost:8000/___graphql
⠀
Note that the development build is not optimized.
To create a production build, use gatsby build
⠀
success Building development bundle - 2.141s
success onPreExtractQueries - 0.008s
success extract queries from components - 0.014s