-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
executable file
·162 lines (136 loc) · 4.48 KB
/
gatsby-node.js
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
const path = require(`path`);
const { createFilePath } = require("gatsby-source-filesystem");
const config = require("./config");
// Create Pages
exports.createPages = async ({ actions, graphql, reporter }) => {
const { createPage } = actions;
const blogPostTemplate = path.resolve(`src/templates/Post.tsx`);
const result = await graphql(`
{
allMarkdownRemark(
sort: { fields: [frontmatter___date], order: DESC }
limit: 1000
) {
edges {
node {
fields {
slug
}
frontmatter {
title
tags
update(formatString: "YYYY-MM-DD")
date(formatString: "YYYY-MM-DD")
}
}
}
}
}
`);
if (result.errors) {
reporter.panicOnBuild(`Error while running GraphQL query.`);
return;
}
const getSeries = (target) => {
const splitedSlug = target.split("_");
if (splitedSlug.length >= 3) return 0;
const seriesNum = splitedSlug[splitedSlug.length - 1].split("/").join("");
const isNum = !/[^0-9]/g.test(seriesNum);
if (isNum) return parseInt(seriesNum, 10);
return 0;
};
const { edges } = result.data.allMarkdownRemark;
edges.forEach(({ node }, index) => {
const { fields, frontmatter } = node;
const { slug } = fields;
const { date, update } = frontmatter;
// series
let filteredEdges = [];
const series = [];
if (getSeries(slug)) {
filteredEdges = edges.filter((e) => {
const fSlug = e.node.fields.slug;
const splitedFSlug = fSlug.split("_");
if (splitedFSlug.length >= 3) return false;
if (
slug.split("_").length > 1 &&
slug.split("_")[0] === splitedFSlug[0]
) {
return true;
}
});
if (filteredEdges.length) {
for (const e of filteredEdges) {
const seriesNum = getSeries(e.node.fields.slug);
if (seriesNum) {
series.push({
slug: e.node.fields.slug,
title: e.node.frontmatter.title,
num: seriesNum,
});
}
}
series.sort((a, b) => {
return a.num - b.num;
});
}
}
createPage({
path: slug,
component: blogPostTemplate,
context: { slug, series, lastmod: update ? update : date },
});
});
};
// Create Nodes
exports.onCreateNode = ({ node, actions, getNode }) => {
const { createNodeField } = actions;
if (node.internal.type === `MarkdownRemark`) {
const slug = createFilePath({ node, getNode, basePath: `pages` });
const rewriteSlug = (slug) => {
// 폴더 경로에 따라 url에 표시되는 것을 폴더 경로를 제거하고 파일명으로만 url을 지정되도록 하기 위함
if (slug.match(/\//g).length > 2) {
let tempStr = slug.split("/");
slug = `/${tempStr[tempStr.length - 2]}/`;
}
// jekyll 기준으로 파일명에 날짜를 포함시키던 것을 url에서 제거하기 위함
const dayRegExp = /\/(19|20)\d{2}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[0-1])-/;
if (slug.match(dayRegExp)) {
slug = "/" + slug.replace(dayRegExp, "");
}
return slug;
};
const rewriteNode = (node) => {
// 마크다운 파일 내 keywords 필드가 비어있을 시 오류가 나지 않도록 하기 위함
if (!node.frontmatter.keywords) {
node.frontmatter.keywords = [config.title, config.author];
}
// 마크다운 파일 내 태그 필드가 비어있을 시 오류가 나지 않도록 하기 위함
if (!node.frontmatter.tags || node.frontmatter.tags === "") {
node.frontmatter.tags = ["undefined"];
}
// 태그 필드가 배열이 아닌 문자열 하나일때 배열로 덮음
else if (typeof node.frontmatter.tags === "string") {
node.frontmatter.tags = [node.frontmatter.tags];
}
// markdown 내 date의 timezone 제거
if (node.frontmatter.date.includes("+")) {
date = new Date(node.frontmatter.date.split("+")[0]);
node.frontmatter.date = date;
} else {
node.frontmatter.date = new Date(node.frontmatter.date);
}
if (!node.frontmatter.update) {
node.frontmatter.update = "0001-01-01T00:00:00.000Z";
}
return node;
};
const newSlug = rewriteSlug(slug);
const newNode = rewriteNode(node);
createNodeField({
name: `slug`,
node: newNode,
value: newSlug,
});
}
};