@docusaurus/plugin-content-blog 2.0.0-beta.8bda3b2db → 2.0.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/.tsbuildinfo +1 -1
- package/lib/authors.d.ts +23 -0
- package/lib/authors.js +150 -0
- package/lib/blogFrontMatter.d.ts +19 -6
- package/lib/blogFrontMatter.js +31 -19
- package/lib/blogUtils.d.ts +10 -4
- package/lib/blogUtils.js +142 -136
- package/lib/feed.d.ts +20 -0
- package/lib/feed.js +90 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +98 -98
- package/lib/markdownLoader.d.ts +3 -6
- package/lib/markdownLoader.js +5 -5
- package/lib/pluginOptionSchema.d.ts +3 -26
- package/lib/pluginOptionSchema.js +24 -7
- package/lib/translations.d.ts +10 -0
- package/lib/translations.js +53 -0
- package/lib/types.d.ts +53 -14
- package/package.json +15 -13
- package/src/__tests__/__fixtures__/authorsMapFiles/authors.json +29 -0
- package/src/__tests__/__fixtures__/authorsMapFiles/authors.yml +27 -0
- package/src/__tests__/__fixtures__/authorsMapFiles/authorsBad1.json +5 -0
- package/src/__tests__/__fixtures__/authorsMapFiles/authorsBad1.yml +3 -0
- package/src/__tests__/__fixtures__/authorsMapFiles/authorsBad2.json +3 -0
- package/src/__tests__/__fixtures__/authorsMapFiles/authorsBad2.yml +2 -0
- package/src/__tests__/__fixtures__/authorsMapFiles/authorsBad3.json +8 -0
- package/src/__tests__/__fixtures__/authorsMapFiles/authorsBad3.yml +3 -0
- package/src/__tests__/__fixtures__/component/Typography.tsx +6 -0
- package/src/__tests__/__fixtures__/getAuthorsMapFilePath/contentPathEmpty/empty +0 -0
- package/src/__tests__/__fixtures__/getAuthorsMapFilePath/contentPathJson1/authors.json +0 -0
- package/src/__tests__/__fixtures__/getAuthorsMapFilePath/contentPathJson2/authors.json +0 -0
- package/src/__tests__/__fixtures__/getAuthorsMapFilePath/contentPathNestedYml/sub/folder/authors.yml +0 -0
- package/src/__tests__/__fixtures__/getAuthorsMapFilePath/contentPathYml1/authors.yml +0 -0
- package/src/__tests__/__fixtures__/getAuthorsMapFilePath/contentPathYml2/authors.yml +0 -0
- package/src/__tests__/__fixtures__/website/blog/2018-12-14-Happy-First-Birthday-Slash.md +3 -0
- package/src/__tests__/__fixtures__/website/blog/_partials/somePartial.md +3 -0
- package/src/__tests__/__fixtures__/website/blog/_partials/subfolder/somePartial.md +3 -0
- package/src/__tests__/__fixtures__/website/blog/_somePartial.md +3 -0
- package/src/__tests__/__fixtures__/website/blog/authors.yml +4 -0
- package/src/__tests__/__fixtures__/website/blog/mdx-blog-post.mdx +36 -0
- package/src/__tests__/__fixtures__/website/blog/mdx-require-blog-post.mdx +14 -0
- package/src/__tests__/__fixtures__/website/blog/simple-slug.md +4 -0
- package/src/__tests__/__fixtures__/website/i18n/en/docusaurus-plugin-content-blog/2018-12-14-Happy-First-Birthday-Slash.md +3 -0
- package/src/__tests__/__fixtures__/website/i18n/en/docusaurus-plugin-content-blog/authors.yml +5 -0
- package/src/__tests__/__fixtures__/website/static/img/docusaurus.png +0 -0
- package/src/__tests__/__snapshots__/feed.test.ts.snap +164 -0
- package/src/__tests__/__snapshots__/translations.test.ts.snap +64 -0
- package/src/__tests__/authors.test.ts +608 -0
- package/src/__tests__/blogFrontMatter.test.ts +93 -16
- package/src/__tests__/blogUtils.test.ts +94 -0
- package/src/__tests__/{generateBlogFeed.test.ts → feed.test.ts} +35 -9
- package/src/__tests__/index.test.ts +73 -12
- package/src/__tests__/pluginOptionSchema.test.ts +3 -3
- package/src/__tests__/translations.test.ts +92 -0
- package/src/authors.ts +202 -0
- package/src/blogFrontMatter.ts +73 -33
- package/src/blogUtils.ts +202 -179
- package/src/feed.ts +129 -0
- package/src/index.ts +124 -103
- package/src/markdownLoader.ts +8 -12
- package/{index.d.ts → src/plugin-content-blog.d.ts} +35 -31
- package/src/pluginOptionSchema.ts +27 -9
- package/src/translations.ts +63 -0
- package/src/types.ts +68 -16
- package/src/__tests__/__snapshots__/generateBlogFeed.test.ts.snap +0 -76
package/src/blogUtils.ts
CHANGED
|
@@ -6,18 +6,17 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
import fs from 'fs-extra';
|
|
9
|
-
import globby from 'globby';
|
|
10
9
|
import chalk from 'chalk';
|
|
11
10
|
import path from 'path';
|
|
12
11
|
import readingTime from 'reading-time';
|
|
13
|
-
import {Feed} from 'feed';
|
|
14
12
|
import {keyBy, mapValues} from 'lodash';
|
|
15
13
|
import {
|
|
16
14
|
PluginOptions,
|
|
17
15
|
BlogPost,
|
|
18
|
-
DateLink,
|
|
19
16
|
BlogContentPaths,
|
|
20
17
|
BlogMarkdownLoaderOptions,
|
|
18
|
+
BlogTags,
|
|
19
|
+
ReadingTimeFunction,
|
|
21
20
|
} from './types';
|
|
22
21
|
import {
|
|
23
22
|
parseMarkdownFile,
|
|
@@ -27,9 +26,13 @@ import {
|
|
|
27
26
|
getFolderContainingFile,
|
|
28
27
|
posixPath,
|
|
29
28
|
replaceMarkdownLinks,
|
|
29
|
+
Globby,
|
|
30
|
+
normalizeFrontMatterTags,
|
|
31
|
+
groupTaggedItems,
|
|
30
32
|
} from '@docusaurus/utils';
|
|
31
33
|
import {LoadContext} from '@docusaurus/types';
|
|
32
34
|
import {validateBlogPostFrontMatter} from './blogFrontMatter';
|
|
35
|
+
import {AuthorsMap, getAuthorsMap, getBlogPostAuthors} from './authors';
|
|
33
36
|
|
|
34
37
|
export function truncate(fileString: string, truncateMarker: RegExp): string {
|
|
35
38
|
return fileString.split(truncateMarker, 1).shift()!;
|
|
@@ -44,15 +47,46 @@ export function getSourceToPermalink(
|
|
|
44
47
|
);
|
|
45
48
|
}
|
|
46
49
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
+
export function getBlogTags(blogPosts: BlogPost[]): BlogTags {
|
|
51
|
+
const groups = groupTaggedItems(
|
|
52
|
+
blogPosts,
|
|
53
|
+
(blogPost) => blogPost.metadata.tags,
|
|
54
|
+
);
|
|
55
|
+
return mapValues(groups, (group) => {
|
|
56
|
+
return {
|
|
57
|
+
name: group.tag.label,
|
|
58
|
+
items: group.items.map((item) => item.id),
|
|
59
|
+
permalink: group.tag.permalink,
|
|
60
|
+
};
|
|
61
|
+
});
|
|
62
|
+
}
|
|
50
63
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
64
|
+
const DATE_FILENAME_REGEX =
|
|
65
|
+
/^(?<date>\d{4}[-/]\d{1,2}[-/]\d{1,2})[-/]?(?<text>.*?)(\/index)?.mdx?$/;
|
|
66
|
+
|
|
67
|
+
type ParsedBlogFileName = {
|
|
68
|
+
date: Date | undefined;
|
|
69
|
+
text: string;
|
|
70
|
+
slug: string;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export function parseBlogFileName(
|
|
74
|
+
blogSourceRelative: string,
|
|
75
|
+
): ParsedBlogFileName {
|
|
76
|
+
const dateFilenameMatch = blogSourceRelative.match(DATE_FILENAME_REGEX);
|
|
77
|
+
if (dateFilenameMatch) {
|
|
78
|
+
const dateString = dateFilenameMatch.groups!.date!;
|
|
79
|
+
const text = dateFilenameMatch.groups!.text!;
|
|
80
|
+
// Always treat dates as UTC by adding the `Z`
|
|
81
|
+
const date = new Date(`${dateString}Z`);
|
|
82
|
+
const slugDate = dateString.replace(/-/g, '/');
|
|
83
|
+
const slug = `/${slugDate}/${text}`;
|
|
84
|
+
return {date, text, slug};
|
|
85
|
+
} else {
|
|
86
|
+
const text = blogSourceRelative.replace(/(\/index)?\.mdx?$/, '');
|
|
87
|
+
const slug = `/${text}`;
|
|
88
|
+
return {date: undefined, text, slug};
|
|
89
|
+
}
|
|
56
90
|
}
|
|
57
91
|
|
|
58
92
|
function formatBlogPostDate(locale: string, date: Date): string {
|
|
@@ -68,204 +102,193 @@ function formatBlogPostDate(locale: string, date: Date): string {
|
|
|
68
102
|
}
|
|
69
103
|
}
|
|
70
104
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
options: PluginOptions,
|
|
75
|
-
): Promise<Feed | null> {
|
|
76
|
-
if (!options.feedOptions) {
|
|
77
|
-
throw new Error(
|
|
78
|
-
'Invalid options: "feedOptions" is not expected to be null.',
|
|
79
|
-
);
|
|
80
|
-
}
|
|
81
|
-
const {siteConfig} = context;
|
|
82
|
-
const blogPosts = await generateBlogPosts(contentPaths, context, options);
|
|
83
|
-
if (!blogPosts.length) {
|
|
84
|
-
return null;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
const {feedOptions, routeBasePath} = options;
|
|
88
|
-
const {url: siteUrl, baseUrl, title, favicon} = siteConfig;
|
|
89
|
-
const blogBaseUrl = normalizeUrl([siteUrl, baseUrl, routeBasePath]);
|
|
90
|
-
|
|
91
|
-
const updated =
|
|
92
|
-
(blogPosts[0] && blogPosts[0].metadata.date) ||
|
|
93
|
-
new Date('2015-10-25T16:29:00.000-07:00');
|
|
94
|
-
|
|
95
|
-
const feed = new Feed({
|
|
96
|
-
id: blogBaseUrl,
|
|
97
|
-
title: feedOptions.title || `${title} Blog`,
|
|
98
|
-
updated,
|
|
99
|
-
language: feedOptions.language,
|
|
100
|
-
link: blogBaseUrl,
|
|
101
|
-
description: feedOptions.description || `${siteConfig.title} Blog`,
|
|
102
|
-
favicon: normalizeUrl([siteUrl, baseUrl, favicon]),
|
|
103
|
-
copyright: feedOptions.copyright,
|
|
104
|
-
});
|
|
105
|
-
|
|
106
|
-
blogPosts.forEach((post) => {
|
|
107
|
-
const {
|
|
108
|
-
id,
|
|
109
|
-
metadata: {title: metadataTitle, permalink, date, description},
|
|
110
|
-
} = post;
|
|
111
|
-
feed.addItem({
|
|
112
|
-
title: metadataTitle,
|
|
113
|
-
id,
|
|
114
|
-
link: normalizeUrl([siteUrl, permalink]),
|
|
115
|
-
date,
|
|
116
|
-
description,
|
|
117
|
-
});
|
|
105
|
+
async function parseBlogPostMarkdownFile(blogSourceAbsolute: string) {
|
|
106
|
+
const result = await parseMarkdownFile(blogSourceAbsolute, {
|
|
107
|
+
removeContentTitle: true,
|
|
118
108
|
});
|
|
119
|
-
|
|
120
|
-
|
|
109
|
+
return {
|
|
110
|
+
...result,
|
|
111
|
+
frontMatter: validateBlogPostFrontMatter(result.frontMatter),
|
|
112
|
+
};
|
|
121
113
|
}
|
|
122
114
|
|
|
123
|
-
|
|
115
|
+
const defaultReadingTime: ReadingTimeFunction = ({content, options}) => {
|
|
116
|
+
return readingTime(content, options).minutes;
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
async function processBlogSourceFile(
|
|
120
|
+
blogSourceRelative: string,
|
|
124
121
|
contentPaths: BlogContentPaths,
|
|
125
|
-
|
|
122
|
+
context: LoadContext,
|
|
126
123
|
options: PluginOptions,
|
|
127
|
-
|
|
124
|
+
authorsMap?: AuthorsMap,
|
|
125
|
+
): Promise<BlogPost | undefined> {
|
|
126
|
+
const {
|
|
127
|
+
siteConfig: {baseUrl},
|
|
128
|
+
siteDir,
|
|
129
|
+
i18n,
|
|
130
|
+
} = context;
|
|
128
131
|
const {
|
|
129
|
-
include,
|
|
130
132
|
routeBasePath,
|
|
133
|
+
tagsBasePath: tagsRouteBasePath,
|
|
131
134
|
truncateMarker,
|
|
132
135
|
showReadingTime,
|
|
133
136
|
editUrl,
|
|
134
137
|
} = options;
|
|
135
138
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
+
// Lookup in localized folder in priority
|
|
140
|
+
const blogDirPath = await getFolderContainingFile(
|
|
141
|
+
getContentPathList(contentPaths),
|
|
142
|
+
blogSourceRelative,
|
|
143
|
+
);
|
|
139
144
|
|
|
140
|
-
const
|
|
141
|
-
const blogSourceFiles = await globby(include, {
|
|
142
|
-
cwd: contentPaths.contentPath,
|
|
143
|
-
});
|
|
145
|
+
const blogSourceAbsolute = path.join(blogDirPath, blogSourceRelative);
|
|
144
146
|
|
|
145
|
-
const
|
|
147
|
+
const {frontMatter, content, contentTitle, excerpt} =
|
|
148
|
+
await parseBlogPostMarkdownFile(blogSourceAbsolute);
|
|
146
149
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
const aliasedSource = aliasedSitePath(blogSourceAbsolute, siteDir);
|
|
151
|
+
|
|
152
|
+
if (frontMatter.draft && process.env.NODE_ENV === 'production') {
|
|
153
|
+
return undefined;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
if (frontMatter.id) {
|
|
157
|
+
console.warn(
|
|
158
|
+
chalk.yellow(
|
|
159
|
+
`"id" header option is deprecated in ${blogSourceRelative} file. Please use "slug" option instead.`,
|
|
160
|
+
),
|
|
152
161
|
);
|
|
162
|
+
}
|
|
153
163
|
|
|
154
|
-
|
|
164
|
+
const parsedBlogFileName = parseBlogFileName(blogSourceRelative);
|
|
155
165
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
166
|
+
async function getDate(): Promise<Date> {
|
|
167
|
+
// Prefer user-defined date.
|
|
168
|
+
if (frontMatter.date) {
|
|
169
|
+
return new Date(frontMatter.date);
|
|
170
|
+
} else if (parsedBlogFileName.date) {
|
|
171
|
+
return parsedBlogFileName.date;
|
|
172
|
+
}
|
|
173
|
+
// Fallback to file create time
|
|
174
|
+
return (await fs.stat(blogSourceAbsolute)).birthtime;
|
|
175
|
+
}
|
|
163
176
|
|
|
164
|
-
|
|
177
|
+
const date = await getDate();
|
|
178
|
+
const formattedDate = formatBlogPostDate(i18n.currentLocale, date);
|
|
165
179
|
|
|
166
|
-
|
|
180
|
+
const title = frontMatter.title ?? contentTitle ?? parsedBlogFileName.text;
|
|
181
|
+
const description = frontMatter.description ?? excerpt ?? '';
|
|
167
182
|
|
|
168
|
-
|
|
169
|
-
return;
|
|
170
|
-
}
|
|
183
|
+
const slug = frontMatter.slug || parsedBlogFileName.slug;
|
|
171
184
|
|
|
172
|
-
|
|
173
|
-
console.warn(
|
|
174
|
-
chalk.yellow(
|
|
175
|
-
`"id" header option is deprecated in ${blogFileName} file. Please use "slug" option instead.`,
|
|
176
|
-
),
|
|
177
|
-
);
|
|
178
|
-
}
|
|
185
|
+
const permalink = normalizeUrl([baseUrl, routeBasePath, slug]);
|
|
179
186
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
187
|
+
function getBlogEditUrl() {
|
|
188
|
+
const blogPathRelative = path.relative(
|
|
189
|
+
blogDirPath,
|
|
190
|
+
path.resolve(blogSourceAbsolute),
|
|
191
|
+
);
|
|
184
192
|
|
|
185
|
-
if (
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
193
|
+
if (typeof editUrl === 'function') {
|
|
194
|
+
return editUrl({
|
|
195
|
+
blogDirPath: posixPath(path.relative(siteDir, blogDirPath)),
|
|
196
|
+
blogPath: posixPath(blogPathRelative),
|
|
197
|
+
permalink,
|
|
198
|
+
locale: i18n.currentLocale,
|
|
199
|
+
});
|
|
200
|
+
} else if (typeof editUrl === 'string') {
|
|
201
|
+
const isLocalized = blogDirPath === contentPaths.contentPathLocalized;
|
|
202
|
+
const fileContentPath =
|
|
203
|
+
isLocalized && options.editLocalizedFiles
|
|
204
|
+
? contentPaths.contentPathLocalized
|
|
205
|
+
: contentPaths.contentPath;
|
|
206
|
+
|
|
207
|
+
const contentPathEditUrl = normalizeUrl([
|
|
208
|
+
editUrl,
|
|
209
|
+
posixPath(path.relative(siteDir, fileContentPath)),
|
|
210
|
+
]);
|
|
211
|
+
|
|
212
|
+
return getEditUrl(blogPathRelative, contentPathEditUrl);
|
|
190
213
|
}
|
|
214
|
+
return undefined;
|
|
215
|
+
}
|
|
191
216
|
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
217
|
+
const tagsBasePath = normalizeUrl([
|
|
218
|
+
baseUrl,
|
|
219
|
+
routeBasePath,
|
|
220
|
+
tagsRouteBasePath,
|
|
221
|
+
]);
|
|
222
|
+
const authors = getBlogPostAuthors({authorsMap, frontMatter});
|
|
223
|
+
|
|
224
|
+
return {
|
|
225
|
+
id: frontMatter.slug ?? title,
|
|
226
|
+
metadata: {
|
|
227
|
+
permalink,
|
|
228
|
+
editUrl: getBlogEditUrl(),
|
|
229
|
+
source: aliasedSource,
|
|
230
|
+
title,
|
|
231
|
+
description,
|
|
232
|
+
date,
|
|
233
|
+
formattedDate,
|
|
234
|
+
tags: normalizeFrontMatterTags(tagsBasePath, frontMatter.tags),
|
|
235
|
+
readingTime: showReadingTime
|
|
236
|
+
? options.readingTime({
|
|
237
|
+
content,
|
|
238
|
+
frontMatter,
|
|
239
|
+
defaultReadingTime,
|
|
240
|
+
})
|
|
241
|
+
: undefined,
|
|
242
|
+
truncated: truncateMarker?.test(content) || false,
|
|
243
|
+
authors,
|
|
244
|
+
},
|
|
245
|
+
content,
|
|
246
|
+
};
|
|
247
|
+
}
|
|
196
248
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
const slug =
|
|
205
|
-
frontMatter.slug ||
|
|
206
|
-
(dateFilenameMatch ? toUrl({date, link: linkName}) : linkName);
|
|
207
|
-
|
|
208
|
-
const permalink = normalizeUrl([baseUrl, routeBasePath, slug]);
|
|
209
|
-
|
|
210
|
-
function getBlogEditUrl() {
|
|
211
|
-
const blogPathRelative = path.relative(blogDirPath, path.resolve(source));
|
|
212
|
-
|
|
213
|
-
if (typeof editUrl === 'function') {
|
|
214
|
-
return editUrl({
|
|
215
|
-
blogDirPath: posixPath(path.relative(siteDir, blogDirPath)),
|
|
216
|
-
blogPath: posixPath(blogPathRelative),
|
|
217
|
-
permalink,
|
|
218
|
-
locale: i18n.currentLocale,
|
|
219
|
-
});
|
|
220
|
-
} else if (typeof editUrl === 'string') {
|
|
221
|
-
const isLocalized = blogDirPath === contentPaths.contentPathLocalized;
|
|
222
|
-
const fileContentPath =
|
|
223
|
-
isLocalized && options.editLocalizedFiles
|
|
224
|
-
? contentPaths.contentPathLocalized
|
|
225
|
-
: contentPaths.contentPath;
|
|
226
|
-
|
|
227
|
-
const contentPathEditUrl = normalizeUrl([
|
|
228
|
-
editUrl,
|
|
229
|
-
posixPath(path.relative(siteDir, fileContentPath)),
|
|
230
|
-
]);
|
|
231
|
-
|
|
232
|
-
return getEditUrl(blogPathRelative, contentPathEditUrl);
|
|
233
|
-
} else {
|
|
234
|
-
return undefined;
|
|
235
|
-
}
|
|
236
|
-
}
|
|
249
|
+
export async function generateBlogPosts(
|
|
250
|
+
contentPaths: BlogContentPaths,
|
|
251
|
+
context: LoadContext,
|
|
252
|
+
options: PluginOptions,
|
|
253
|
+
): Promise<BlogPost[]> {
|
|
254
|
+
const {include, exclude} = options;
|
|
237
255
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
metadata: {
|
|
241
|
-
permalink,
|
|
242
|
-
editUrl: getBlogEditUrl(),
|
|
243
|
-
source: aliasedSource,
|
|
244
|
-
title,
|
|
245
|
-
description,
|
|
246
|
-
date,
|
|
247
|
-
formattedDate,
|
|
248
|
-
tags: frontMatter.tags ?? [],
|
|
249
|
-
readingTime: showReadingTime ? readingTime(content).minutes : undefined,
|
|
250
|
-
truncated: truncateMarker?.test(content) || false,
|
|
251
|
-
},
|
|
252
|
-
});
|
|
256
|
+
if (!fs.existsSync(contentPaths.contentPath)) {
|
|
257
|
+
return [];
|
|
253
258
|
}
|
|
254
259
|
|
|
255
|
-
await
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
260
|
+
const blogSourceFiles = await Globby(include, {
|
|
261
|
+
cwd: contentPaths.contentPath,
|
|
262
|
+
ignore: exclude,
|
|
263
|
+
});
|
|
264
|
+
|
|
265
|
+
const authorsMap = await getAuthorsMap({
|
|
266
|
+
contentPaths,
|
|
267
|
+
authorsMapPath: options.authorsMapPath,
|
|
268
|
+
});
|
|
269
|
+
|
|
270
|
+
const blogPosts = (
|
|
271
|
+
await Promise.all(
|
|
272
|
+
blogSourceFiles.map(async (blogSourceFile: string) => {
|
|
273
|
+
try {
|
|
274
|
+
return await processBlogSourceFile(
|
|
275
|
+
blogSourceFile,
|
|
276
|
+
contentPaths,
|
|
277
|
+
context,
|
|
278
|
+
options,
|
|
279
|
+
authorsMap,
|
|
280
|
+
);
|
|
281
|
+
} catch (e) {
|
|
282
|
+
console.error(
|
|
283
|
+
chalk.red(
|
|
284
|
+
`Processing of blog source file failed for path "${blogSourceFile}"`,
|
|
285
|
+
),
|
|
286
|
+
);
|
|
287
|
+
throw e;
|
|
288
|
+
}
|
|
289
|
+
}),
|
|
290
|
+
)
|
|
291
|
+
).filter(Boolean) as BlogPost[];
|
|
269
292
|
|
|
270
293
|
blogPosts.sort(
|
|
271
294
|
(a, b) => b.metadata.date.getTime() - a.metadata.date.getTime(),
|
package/src/feed.ts
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import {Feed, Author as FeedAuthor} from 'feed';
|
|
9
|
+
import {PluginOptions, Author, BlogPost, FeedType} from './types';
|
|
10
|
+
import {normalizeUrl, mdxToHtml} from '@docusaurus/utils';
|
|
11
|
+
import {DocusaurusConfig} from '@docusaurus/types';
|
|
12
|
+
import path from 'path';
|
|
13
|
+
import fs from 'fs-extra';
|
|
14
|
+
|
|
15
|
+
// TODO this is temporary until we handle mdxToHtml better
|
|
16
|
+
// It's hard to convert reliably JSX/require calls to an html feed content
|
|
17
|
+
// See https://github.com/facebook/docusaurus/issues/5664
|
|
18
|
+
function mdxToFeedContent(mdxContent: string): string | undefined {
|
|
19
|
+
try {
|
|
20
|
+
return mdxToHtml(mdxContent);
|
|
21
|
+
} catch (e) {
|
|
22
|
+
// TODO will we need a plugin option to configure how to handle such an error
|
|
23
|
+
// Swallow the error on purpose for now, until we understand better the problem space
|
|
24
|
+
return undefined;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export async function generateBlogFeed({
|
|
29
|
+
blogPosts,
|
|
30
|
+
options,
|
|
31
|
+
siteConfig,
|
|
32
|
+
}: {
|
|
33
|
+
blogPosts: BlogPost[];
|
|
34
|
+
options: PluginOptions;
|
|
35
|
+
siteConfig: DocusaurusConfig;
|
|
36
|
+
}): Promise<Feed | null> {
|
|
37
|
+
if (!blogPosts.length) {
|
|
38
|
+
return null;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const {feedOptions, routeBasePath} = options;
|
|
42
|
+
const {url: siteUrl, baseUrl, title, favicon} = siteConfig;
|
|
43
|
+
const blogBaseUrl = normalizeUrl([siteUrl, baseUrl, routeBasePath]);
|
|
44
|
+
|
|
45
|
+
const updated =
|
|
46
|
+
(blogPosts[0] && blogPosts[0].metadata.date) ||
|
|
47
|
+
new Date('2015-10-25T16:29:00.000-07:00'); // weird legacy magic date
|
|
48
|
+
|
|
49
|
+
const feed = new Feed({
|
|
50
|
+
id: blogBaseUrl,
|
|
51
|
+
title: feedOptions.title || `${title} Blog`,
|
|
52
|
+
updated,
|
|
53
|
+
language: feedOptions.language,
|
|
54
|
+
link: blogBaseUrl,
|
|
55
|
+
description: feedOptions.description || `${siteConfig.title} Blog`,
|
|
56
|
+
favicon: favicon ? normalizeUrl([siteUrl, baseUrl, favicon]) : undefined,
|
|
57
|
+
copyright: feedOptions.copyright,
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
function toFeedAuthor(author: Author): FeedAuthor {
|
|
61
|
+
// TODO ask author emails?
|
|
62
|
+
// RSS feed requires email to render authors
|
|
63
|
+
return {name: author.name, link: author.url};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
blogPosts.forEach((post) => {
|
|
67
|
+
const {
|
|
68
|
+
id,
|
|
69
|
+
metadata: {title: metadataTitle, permalink, date, description, authors},
|
|
70
|
+
} = post;
|
|
71
|
+
feed.addItem({
|
|
72
|
+
title: metadataTitle,
|
|
73
|
+
id,
|
|
74
|
+
link: normalizeUrl([siteUrl, permalink]),
|
|
75
|
+
date,
|
|
76
|
+
description,
|
|
77
|
+
content: mdxToFeedContent(post.content),
|
|
78
|
+
author: authors.map(toFeedAuthor),
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
return feed;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
async function createBlogFeedFile({
|
|
86
|
+
feed,
|
|
87
|
+
feedType,
|
|
88
|
+
filePath,
|
|
89
|
+
}: {
|
|
90
|
+
feed: Feed;
|
|
91
|
+
feedType: FeedType;
|
|
92
|
+
filePath: string;
|
|
93
|
+
}) {
|
|
94
|
+
const feedContent = feedType === 'rss' ? feed.rss2() : feed.atom1();
|
|
95
|
+
try {
|
|
96
|
+
await fs.outputFile(filePath, feedContent);
|
|
97
|
+
} catch (err) {
|
|
98
|
+
throw new Error(`Generating ${feedType} feed failed: ${err}.`);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export async function createBlogFeedFiles({
|
|
103
|
+
blogPosts,
|
|
104
|
+
options,
|
|
105
|
+
siteConfig,
|
|
106
|
+
outDir,
|
|
107
|
+
}: {
|
|
108
|
+
blogPosts: BlogPost[];
|
|
109
|
+
options: PluginOptions;
|
|
110
|
+
siteConfig: DocusaurusConfig;
|
|
111
|
+
outDir: string;
|
|
112
|
+
}): Promise<void> {
|
|
113
|
+
const feed = await generateBlogFeed({blogPosts, options, siteConfig});
|
|
114
|
+
|
|
115
|
+
const feedTypes = options.feedOptions.type;
|
|
116
|
+
if (!feed || !feedTypes) {
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
await Promise.all(
|
|
121
|
+
feedTypes.map(async function (feedType) {
|
|
122
|
+
await createBlogFeedFile({
|
|
123
|
+
feed,
|
|
124
|
+
feedType,
|
|
125
|
+
filePath: path.join(outDir, options.routeBasePath, `${feedType}.xml`),
|
|
126
|
+
});
|
|
127
|
+
}),
|
|
128
|
+
);
|
|
129
|
+
}
|