-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-node.ts
executable file
·99 lines (88 loc) · 2.59 KB
/
gatsby-node.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import * as path from "path";
import {
CreatePagesArgs,
CreateResolversArgs,
CreateSchemaCustomizationArgs,
} from "gatsby";
import config from "./gatsby-config";
import { checkCreateComments } from "./scripts/checkCreateCommons";
import Processor from "./scripts/processor";
import { RemarkNode } from "./scripts/remarkNode";
import { localGql } from "./scripts/utils";
import { NodeData } from "./src/models/node-data";
import { PassageAbbr } from "./src/models/passage-content";
import { SiteMetadata } from "./src/models/site-metadata";
const siteMetadata: SiteMetadata = config.siteMetadata as SiteMetadata;
interface CreatePagesData {
allPassage: NodeData<PassageAbbr>;
}
interface AllRemarkData {
allMarkdownRemark: NodeData<RemarkNode>;
}
const processor = new Processor({
postsDir: path.resolve(__dirname, "content", "posts"),
snippetsDir: path.resolve(__dirname, "content", "snippets"),
aboutPath: path.resolve(__dirname, "content", "about.md"),
});
export const createResolvers = async (args: CreateResolversArgs) => {
checkCreateComments(siteMetadata, args.reporter.panic);
const resolvers = {
Query: {
siteMetadata: {
type: "SiteMetadata",
resolve: (/*source: any, args: any, context: any, info: any*/) => {
return siteMetadata;
},
},
},
};
args.createResolvers(resolvers);
};
export const createSchemaCustomization = async (
args: CreateSchemaCustomizationArgs
) => {
const { createTypes } = args.actions;
createTypes(await localGql("./processorType.gql"));
createTypes(await localGql("./logicType.gql"));
};
export const createPages = async (args: CreatePagesArgs) => {
// There are some fields in the gatsby remark plugin that are only lazily loaded at this point
const allRemarks = await args.graphql<AllRemarkData>(
await localGql("./fetchAllRemark.gql")
);
allRemarks.data?.allMarkdownRemark.edges.forEach((item) => {
processor.transformRemarkNode(
item.node,
args.actions.createNode,
args.createNodeId,
args.createContentDigest
);
});
// create passage pages
const result = await args.graphql<CreatePagesData>(`
{
allPassage {
edges {
node {
identifier
}
}
}
}
`);
result.data?.allPassage.edges.forEach((item) => {
args.actions.createPage({
path: `/passage/${item.node.identifier}`,
component: path.resolve(
__dirname,
"src",
"templates",
"passage",
"passage.tsx"
),
context: {
identifier: item.node.identifier,
},
});
});
};