-
-
Save clarkdave/53cc050fa58d9a70418f8a76982dd6c8 to your computer and use it in GitHub Desktop.
import { resolve } from 'path' | |
import { GatsbyCreatePages } from './types' | |
const createPages: GatsbyCreatePages = async ({ | |
graphql, | |
boundActionCreators, | |
}) => { | |
const { createPage } = boundActionCreators | |
const allMarkdown = await graphql(` | |
{ | |
allMarkdownRemark(limit: 1000) { | |
edges { | |
node { | |
fields { | |
slug | |
} | |
} | |
} | |
} | |
} | |
`) | |
allMarkdown.data.allMarkdownRemark.edges.forEach(edge => { | |
const { slug } = edge.node.fields | |
if (!slug) return | |
// type safe `createPage` call | |
createPage({ | |
path: slug, | |
component: resolve(__dirname, '../src/templates/index.tsx'), | |
context: { | |
slug, | |
}, | |
}) | |
}) | |
} |
'use strict' | |
require('source-map-support').install() | |
require('ts-node').register({ | |
compilerOptions: { | |
module: 'commonjs', | |
target: 'es2017', | |
}, | |
}) | |
exports.createPages = require('./createPages') |
interface PageInput { | |
path: string | |
component: string | |
layout?: string | |
context?: any | |
} | |
interface BoundActionCreators { | |
createPage: (page: PageInput) => void | |
deletePage: (page: PageInput) => void | |
createRedirect: ( | |
opts: { | |
fromPath: string | |
isPermanent?: boolean | |
redirectInBrowser?: boolean | |
toPath: string | |
} | |
) => void | |
} | |
export type GatsbyCreatePages = ( | |
fns: { graphql: any; boundActionCreators: BoundActionCreators } | |
) => void |
I had to update
const createPages: GatsbyCreatePages = async ({
to
export const createPages: GatsbyCreatePages = async ({
AND
exports.createPages = require('./createPages')
to:
exports.createPages = require('./createPages').createPages
@crhistianramirez same - it fixes the TypeError: gatsbyNode[api] is not a function
problems
The types for Gatsby ship with Gatsby - you should be able to write code like this instead:
import { GatsbyNode } from "gatsby"
import * as path from "path"
export const createPages: GatsbyNode["createPages"] = async ({ graphql, actions }) => {
const { createPage } = actions
const blogPost = path.resolve(`./src/templates/blog-post.tsx`)
const result = await graphql(`
{
allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }, limit: 1000) {
edges {
node {
fields {
slug
}
frontmatter {
title
}
}
}
}
}
`)
if (result.errors) {
throw result.errors
}
@clarkdave, Thanks for sharing this and getting the conversation started.
We can simplify our Gatsby JavaScript files even more, since that JS file can re-export all the exports of a TypeScript file in one line with:
module.exports = require('./path/to/typescript/file');
That means we can have a single TypeScript file with all of our Gatsby API exports. And if we add new API calls to our TypeScript file, they get automatically exported by the JavaScript file without needing to modify it.
Also, ts-node
now includes source-map-support
. https://github.com/TypeStrong/ts-node/blob/be2c899ca796bd6dc54e074fdb2c5a32df51213d/src/index.ts#L407
With:
- my comments about
module.exports
andsource-map-support
, - the fact that
boundActionCreators
are now deprecated, - @orta's comment that "types for Gatsby ship with Gatsby",
- @jonnybot0's comment (from the Gatsby issue Dave pointed out above) that "ts-node automagically loads tsconfig.json",
- @jonnybot0's comment that
require('ts-node').register()
can be put ingatsby-config.js
and it will apply to all other gatsby API files, likegatsby-node.js
. - @assainov's blog post about using
gatsby-node.ts
instead ofgatsby-node.js
.
I went ahead and made all those updates in this forked gist: https://gist.github.com/JohnAlbin/2fc05966624dffb20f4b06b4305280f9
Thanks @JohnAlbin! I've linked to your gist from this Gatsby issue.
@crhistianramirez same - it fixes the
TypeError: gatsbyNode[api] is not a function
problems
@crhistianramirez please, could you explain why your change fixed this error?
Hi, shall we write types.ts
or types.d.ts
? IMHO maybe that suits the definition of d.ts
Thank you for making this so easy, converted my project to ts in 10 minutes <3