Skip to content

Commit 03ebfc9

Browse files
ovflowdbmuenzenmeyercanerakdas
authored
chore: normalise promises (nodejs#6177)
* chore: normalise promises * Update next-data/generators/websiteFeeds.mjs Co-authored-by: Caner Akdas <[email protected]> Signed-off-by: Brian Muenzenmeyer <[email protected]> --------- Signed-off-by: Brian Muenzenmeyer <[email protected]> Co-authored-by: Brian Muenzenmeyer <[email protected]> Co-authored-by: Caner Akdas <[email protected]>
1 parent 48b8845 commit 03ebfc9

File tree

3 files changed

+72
-68
lines changed

3 files changed

+72
-68
lines changed

next-data/generators/blogData.mjs

+22-15
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import readline from 'node:readline';
66

77
import graymatter from 'gray-matter';
88

9-
import * as nextHelpers from '../../next.helpers.mjs';
9+
import { getMarkdownFiles } from '../../next.helpers.mjs';
1010

1111
// gets the current blog path based on local module path
1212
const blogPath = join(process.cwd(), 'pages/en/blog');
@@ -54,36 +54,38 @@ const getFrontMatter = (filename, source) => {
5454
*/
5555
const generateBlogData = async () => {
5656
// we retrieve all the filenames of all blog posts
57-
const filenames = await nextHelpers.getMarkdownFiles(
58-
process.cwd(),
59-
'pages/en/blog',
60-
['**/index.md', '**/pagination.md']
61-
);
57+
const filenames = await getMarkdownFiles(process.cwd(), 'pages/en/blog', [
58+
'**/index.md',
59+
'**/pagination.md',
60+
]);
6261

6362
return new Promise(resolve => {
6463
const blogPosts = [];
64+
const rawFrontmatter = [];
6565

66-
for (const filename of filenames) {
67-
let rawFrontmatter = '';
68-
let countOfSeparators = 0;
69-
66+
filenames.forEach(filename => {
7067
// We create a stream for reading a file instead of reading the files
7168
const _stream = createReadStream(join(blogPath, filename));
7269

7370
// We create a readline interface to read the file line-by-line
7471
const _readLine = readline.createInterface({ input: _stream });
7572

73+
// Creates an array of the metadata based on the filename
74+
// This prevents concurrency issues since the for-loop is synchronous
75+
// and these event listeners are not
76+
rawFrontmatter[filename] = [0, ''];
77+
7678
// We read line by line
7779
_readLine.on('line', line => {
78-
rawFrontmatter += `${line}\n`;
80+
rawFrontmatter[filename][1] += `${line}\n`;
7981

8082
// We observe the frontmatter separators
8183
if (line === '---') {
82-
countOfSeparators += 1;
84+
rawFrontmatter[filename][0] += 1;
8385
}
8486

8587
// Once we have two separators we close the readLine and the stream
86-
if (countOfSeparators === 2) {
88+
if (rawFrontmatter[filename][0] === 2) {
8789
_readLine.close();
8890
_stream.close();
8991
}
@@ -93,7 +95,12 @@ const generateBlogData = async () => {
9395
// This allows us to only read the frontmatter part of each file
9496
// and optimise the read-process as we have thousands of markdown files
9597
_readLine.on('close', () => {
96-
blogPosts.push(getFrontMatter(filename, rawFrontmatter));
98+
const frontmatter = getFrontMatter(
99+
filename,
100+
rawFrontmatter[filename][1]
101+
);
102+
103+
blogPosts.push(frontmatter);
97104

98105
// Once we finish reading all fles
99106
if (blogPosts.length === filenames.length) {
@@ -104,7 +111,7 @@ const generateBlogData = async () => {
104111
});
105112
}
106113
});
107-
}
114+
});
108115
});
109116
};
110117

next-data/generators/releaseData.mjs

+11-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
'use strict';
22

3+
import nodevu from '@nodevu/core';
4+
35
// Gets the appropriate release status for each major release
46
const getNodeReleaseStatus = (now, support) => {
57
const { endOfLife, maintenanceStart, ltsStart, currentStart } = support;
@@ -29,10 +31,8 @@ const getNodeReleaseStatus = (now, support) => {
2931
*
3032
* @returns {Promise<import('../../types').NodeRelease[]>}
3133
*/
32-
const generateReleaseData = async () => {
33-
return import('@nodevu/core').then(async ({ default: nodevu }) => {
34-
const nodevuOutput = await nodevu({ fetch: fetch });
35-
34+
const generateReleaseData = () => {
35+
return nodevu({ fetch: fetch }).then(nodevuOutput => {
3636
// Filter out those without documented support
3737
// Basically those not in schedule.json
3838
const majors = Object.values(nodevuOutput).filter(major => !!major.support);
@@ -64,17 +64,13 @@ const generateReleaseData = async () => {
6464
};
6565
});
6666

67-
return Promise.resolve(
68-
// nodevu returns duplicated v0.x versions (v0.12, v0.10, ...).
69-
// This behavior seems intentional as the case is hardcoded in nodevu,
70-
// see https://github.com/cutenode/nodevu/blob/0c8538c70195fb7181e0a4d1eeb6a28e8ed95698/core/index.js#L24.
71-
// This line ignores those duplicated versions and takes the latest
72-
// v0.x version (v0.12.18). It is also consistent with the legacy
73-
// nodejs.org implementation.
74-
nodeReleases.filter(
75-
release => release.major !== 0 || release.version === '0.12.18'
76-
)
77-
);
67+
// nodevu returns duplicated v0.x versions (v0.12, v0.10, ...).
68+
// This behavior seems intentional as the case is hardcoded in nodevu,
69+
// see https://github.com/cutenode/nodevu/blob/0c8538c70195fb7181e0a4d1eeb6a28e8ed95698/core/index.js#L24.
70+
// This line ignores those duplicated versions and takes the latest
71+
// v0.x version (v0.12.18). It is also consistent with the legacy
72+
// nodejs.org implementation.
73+
return nodeReleases.filter(r => r.major !== 0 || r.version === '0.12.18');
7874
});
7975
};
8076

next-data/generators/websiteFeeds.mjs

+39-38
Original file line numberDiff line numberDiff line change
@@ -5,50 +5,51 @@ import { Feed } from 'feed';
55
import { BASE_URL, BASE_PATH } from '../../next.constants.mjs';
66
import { siteConfig } from '../../next.json.mjs';
77

8+
// This is the Base URL for the Node.js Website
9+
// with English locale (which is where the website feeds run)
10+
const canonicalUrl = `${BASE_URL}${BASE_PATH}/en`;
11+
812
/**
913
* This method generates RSS website feeds based on the current website configuration
1014
* and the current blog data that is available
1115
*
1216
* @param {Promise<import('../../types').BlogDataRSC>} blogData
1317
*/
14-
const generateWebsiteFeeds = async blogData => {
15-
const canonicalUrl = `${BASE_URL}${BASE_PATH}/en`;
16-
17-
// Wait for the Blog Data for being generate
18-
const { posts } = await blogData;
19-
20-
/**
21-
* This generates all the Website RSS Feeds that are used for the website
22-
*
23-
* @type {[string, Feed][]}
24-
*/
25-
const websiteFeeds = siteConfig.rssFeeds.map(
26-
({ category, title, description, file }) => {
27-
const feed = new Feed({
28-
id: file,
29-
title: title,
30-
language: 'en',
31-
link: `${canonicalUrl}/feed/${file}`,
32-
description: description || description,
33-
});
34-
35-
const blogFeedEntries = posts
36-
.filter(post => !category || post.category === category)
37-
.map(post => ({
38-
id: post.slug,
39-
title: post.title,
40-
author: post.author,
41-
date: new Date(post.date),
42-
link: `${canonicalUrl}${post.slug}`,
43-
}));
44-
45-
blogFeedEntries.forEach(entry => feed.addItem(entry));
46-
47-
return [file, feed];
48-
}
49-
);
50-
51-
return new Map(websiteFeeds);
18+
const generateWebsiteFeeds = blogData => {
19+
return blogData.then(({ posts }) => {
20+
/**
21+
* This generates all the Website RSS Feeds that are used for the website
22+
*
23+
* @type {[string, Feed][]}
24+
*/
25+
const websiteFeeds = siteConfig.rssFeeds.map(
26+
({ category, title, description, file }) => {
27+
const feed = new Feed({
28+
id: file,
29+
title: title,
30+
language: 'en',
31+
link: `${canonicalUrl}/feed/${file}`,
32+
description: description,
33+
});
34+
35+
const blogFeedEntries = posts
36+
.filter(post => !category || post.category === category)
37+
.map(post => ({
38+
id: post.slug,
39+
title: post.title,
40+
author: post.author,
41+
date: new Date(post.date),
42+
link: `${canonicalUrl}${post.slug}`,
43+
}));
44+
45+
blogFeedEntries.forEach(entry => feed.addItem(entry));
46+
47+
return [file, feed];
48+
}
49+
);
50+
51+
return new Map(websiteFeeds);
52+
});
5253
};
5354

5455
export default generateWebsiteFeeds;

0 commit comments

Comments
 (0)