forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.helpers.mjs
60 lines (51 loc) · 1.96 KB
/
next.helpers.mjs
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
'use strict';
import { fileURLToPath } from 'node:url';
import { glob } from 'glob';
/**
* We create a locale cache of Glob Promises
* to avoid reading the file system multiple times
* this is done since we don't need to constantly re-run the glob
* query as it is only needed once
*
* @type {Map<string, Promise<string>>} */
const globCacheByPath = new Map();
export const getMatchingRoutes = (route = '', matches = []) =>
matches.some(match => route === match);
/**
* This method is responsible for reading all immediate subdirectories of a directory
*
* @param {string} root the root directory to search from
* @param {string} cwd the current working directory
* @returns {Promise<string[]>} a promise containing an array of directories
*/
export const getDirectories = async (root, cwd) => {
return glob('*', { root, cwd, withFileTypes: true })
.then(d => d.filter(e => e.isDirectory()))
.then(d => d.map(e => e.name));
};
/**
* This gets the relative path from `import.meta.url`
*
* @param {string} path the current import path
* @returns {string} the relative path from import
*/
export const getRelativePath = path => fileURLToPath(new URL('.', path));
/**
* This method is responsible for retrieving a glob of all files that exist
* within a given language directory
*
* Note that we ignore the blog directory for static builds as otherwise generating
* that many pages would be too much for the build process to handle.
*
* @param {string} root the root directory to search from
* @param {string} cwd the given locale code
* @param {string[]} ignore an array of glob patterns to ignore
* @returns {Promise<string[]>} a promise containing an array of paths
*/
export const getMarkdownFiles = async (root, cwd, ignore = []) => {
const cacheKey = `${root}${cwd}${ignore.join('')}`;
if (!globCacheByPath.has(cacheKey)) {
globCacheByPath.set(cacheKey, glob('**/*.{md,mdx}', { root, cwd, ignore }));
}
return globCacheByPath.get(cacheKey);
};