-
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
Set patterns for page files to declare metadata #2
Comments
With React files, using convention currently of looking for a static function named |
I needed something like this for HTML files. As an easy to implement solution I've added frontmatter for HTML files: #116 |
To make this actionable/finishable – let's let say React components can set a static function called I'll leave this issue open until this is documented and tested. |
Released in 0.12.23 https://github.com/gatsbyjs/gatsby/releases/tag/v0.12.23 |
[v2] Implement RFC #2 removing special layout component
This is the first step towards gatsby themes. It is low level and defines the way multiple gatsby sites compose by defining the way in which gatsby-config's compose. Everything else will build on top of this composition model so it's important to make it extensible and maintainable for the future. For those that are mathematically inclined, this defines a monoid for the gatsby-config data structure such that `(siteA <> siteB) <> siteC === siteA <> (siteB <> siteC)`. This makes it nice when thinking about sub-theming in the future (imagine a complex `ThemeA <> subthemeA <> ThemeB <> subthemeB <> user-site` situation) This method of composition opens the door to themes and sub-themes and allows us to get more user input into how to deal with potentially conflicting artifacts (such as two singleton plugins being defined), test out approaches to generic overriding the rendering of components in user-land, and more. ## Themes A theme is defined as a parameterizable gatsby site. This means that gatsby-config can be a function that accepts configuration from the end user or a subtheme. This is important because in the current state of the world when setting up plugins like `gatsby-source-filesystem`, we need them to be configured with a `__dirname` from the user's site (we could have a special `__inTheCurrentSite` value in the future instead). In the end-user's site, we declare a "theme" using the `__experimentalThemes` keyword in gatsby-config. We use this keyword so that people are aware this functionality is experimental and may change without warning. A theme can be configured in the same way plugins are configured (TODO: change `[theme, config]` syntax to match plugin `{resolve:,options}` form) so that the userland APIs match up. ```js // gatsby-config.js module.exports = { __experimentalThemes: [[`blog-theme`, { dir: __dirname }]], } ``` The theme then includes a gatsby-config.js which allows it to defined all of the expected fields, such as plugins, and also configure them based on user input. (TODO: looks like gatsby-config.js is ignored in the .gitignore file for the theme package in commit #2) ```js // blog-theme gatsby-config.js module.exports = ({ dir }) => ({ siteMetadata: {}, plugins: [ `gatsby-mdx`, { resolve: `gatsby-source-filesystem`, options: { name: "blog-posts", path: `${dir}/blog-posts/`, }, }, ], }) ``` ### Composing themes Multiple themes can be used, although there is (intentionally) nothing included in this PR to stop or resolve potential conflicts (for example if a gatsby plugin needs a singleton instance for some reason). ```js // gatsby-config.js module.exports = { __experimentalThemes: [`blog-theme`, `store-theme`], } ``` ### Themes as plugins Themes are also included in the plugin list, so they can take advantage of using files such as `gatsby-node`. When being used as plugins, themes receive the full themeConfig as the options object. As an example, a blog theme could be instantiated multiple times on a site, once for blog posts and once for product reviews. ```js // gatsby-config.js module.exports = { __experimentalThemes: [ [`blog-theme`, { baseUrl: '/posts' }}, [`blog-theme`, { baseUrl: '/reviews' }] ], } ``` # etc ##### Commits This PR contains two commits. The first is the actual functionality, the second is a set of examples (a theme defined as an npm package and an example site using said theme). I expect to remove the second commit before merging, but am open to other approaches to keep an example, etc around and develop it further as we progress. ##### This PR intentionally does not cover: - Defining data types in any way different than the current sourcing patterns - Any official sub-theming support for overriding components, etc * the only way to "override" things right now is to use gatsby lifecycles (ex: on-create-page hooks) to replace the full page component. * still technically possible in user-land, planned but not included in core yet
gatsbyjs#4887) [v2] Implement RFC gatsbyjs#2 removing special layout component
Markdown has standardized on frontmatter. Don't want to force frontmatter on other file types e.g. JSX.
My proposal for the post-build is that we create a special metadata gathering webpack entry file that pulls in all pages and grabs their metadata. Each loader would need to return a
metadata
key.The text was updated successfully, but these errors were encountered: