@docusaurus/utils 2.0.0-beta.0f144213d → 2.0.0-beta.11
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/constants.d.ts +19 -0
- package/lib/constants.js +26 -0
- package/lib/globUtils.d.ts +11 -0
- package/lib/globUtils.js +47 -0
- package/lib/hashUtils.js +4 -4
- package/lib/index.d.ts +10 -6
- package/lib/index.js +39 -92
- package/lib/markdownLinks.js +19 -6
- package/lib/markdownParser.js +14 -6
- package/lib/mdxUtils.d.ts +16 -0
- package/lib/mdxUtils.js +30 -0
- package/lib/normalizeUrl.d.ts +7 -0
- package/lib/normalizeUrl.js +66 -0
- package/lib/pathUtils.js +3 -5
- package/lib/slugger.d.ts +13 -0
- package/lib/slugger.js +18 -0
- package/lib/tags.d.ts +18 -0
- package/lib/tags.js +72 -0
- package/lib/webpackUtils.d.ts +29 -0
- package/lib/webpackUtils.js +109 -0
- package/package.json +23 -7
- package/src/__tests__/globUtils.test.ts +109 -0
- package/src/__tests__/index.test.ts +6 -110
- package/src/__tests__/markdownParser.test.ts +15 -2
- package/src/__tests__/mdxUtils.test.ts +133 -0
- package/src/__tests__/normalizeUrl.test.ts +117 -0
- package/src/__tests__/pathUtils.test.ts +4 -2
- package/src/__tests__/slugger.test.ts +27 -0
- package/src/__tests__/tags.test.ts +183 -0
- package/src/__tests__/webpackUtils.test.ts +33 -0
- package/src/constants.ts +38 -0
- package/src/deps.d.ts +14 -0
- package/src/globUtils.ts +63 -0
- package/src/index.ts +21 -91
- package/src/markdownLinks.ts +19 -8
- package/src/markdownParser.ts +18 -11
- package/src/mdxUtils.ts +32 -0
- package/src/normalizeUrl.ts +80 -0
- package/src/pathUtils.ts +2 -3
- package/src/slugger.ts +24 -0
- package/src/tags.ts +100 -0
- package/src/webpackUtils.ts +144 -0
- package/lib/codeTranslationsUtils.d.ts +0 -11
- package/lib/codeTranslationsUtils.js +0 -50
- package/src/__tests__/__fixtures__/defaultCodeTranslations/en.json +0 -4
- package/src/__tests__/__fixtures__/defaultCodeTranslations/fr-FR.json +0 -5
- package/src/__tests__/__fixtures__/defaultCodeTranslations/fr.json +0 -4
- package/src/__tests__/codeTranslationsUtils.test.ts +0 -112
- package/src/codeTranslationsUtils.ts +0 -56
package/lib/index.js
CHANGED
|
@@ -6,28 +6,39 @@
|
|
|
6
6
|
* LICENSE file in the root directory of this source tree.
|
|
7
7
|
*/
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.parseMarkdownHeadingId = exports.updateTranslationFileMessages = exports.getSwizzledComponent = exports.mergeTranslations = exports.reportMessage = exports.getFolderContainingFile = exports.findFolderContainingFile = exports.findAsyncSequential = exports.mapAsyncSequencial = exports.getPluginI18nPath = exports.getElementsAround = exports.removePrefix = exports.removeSuffix = exports.removeTrailingSlash = exports.addTrailingSlash = exports.addTrailingPathSeparator = exports.addLeadingSlash = exports.resolvePathname = exports.isValidPathname = exports.getEditUrl = exports.aliasedSitePath = exports.
|
|
9
|
+
exports.parseMarkdownHeadingId = exports.updateTranslationFileMessages = exports.getSwizzledComponent = exports.mergeTranslations = exports.reportMessage = exports.getFolderContainingFile = exports.findFolderContainingFile = exports.findAsyncSequential = exports.mapAsyncSequencial = exports.getPluginI18nPath = exports.getElementsAround = exports.removePrefix = exports.removeSuffix = exports.removeTrailingSlash = exports.addTrailingSlash = exports.addTrailingPathSeparator = exports.addLeadingSlash = exports.resolvePathname = exports.isValidPathname = exports.getEditUrl = exports.aliasedSitePath = exports.getSubFolder = exports.idx = exports.genChunkName = exports.toMessageRelativeFilePath = exports.genComponentName = exports.upperFirst = exports.encodePath = exports.fileToPath = exports.objectWithKeySorted = exports.generate = exports.createAbsoluteFilePathMatcher = exports.createMatcher = exports.GlobExcludeDefault = exports.Globby = exports.docuHash = exports.simpleHash = exports.md5Hash = exports.posixPath = void 0;
|
|
10
10
|
const tslib_1 = require("tslib");
|
|
11
|
-
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
12
|
-
const path_1 = tslib_1.__importDefault(require("path"));
|
|
11
|
+
const chalk_1 = (0, tslib_1.__importDefault)(require("chalk"));
|
|
12
|
+
const path_1 = (0, tslib_1.__importDefault)(require("path"));
|
|
13
13
|
const crypto_1 = require("crypto");
|
|
14
14
|
const lodash_1 = require("lodash");
|
|
15
|
-
const escape_string_regexp_1 = tslib_1.__importDefault(require("escape-string-regexp"));
|
|
16
|
-
const fs_extra_1 = tslib_1.__importDefault(require("fs-extra"));
|
|
15
|
+
const escape_string_regexp_1 = (0, tslib_1.__importDefault)(require("escape-string-regexp"));
|
|
16
|
+
const fs_extra_1 = (0, tslib_1.__importDefault)(require("fs-extra"));
|
|
17
17
|
const url_1 = require("url");
|
|
18
|
-
|
|
19
|
-
const resolve_pathname_1 = tslib_1.__importDefault(require("resolve-pathname"));
|
|
18
|
+
const resolve_pathname_1 = (0, tslib_1.__importDefault)(require("resolve-pathname"));
|
|
20
19
|
const posixPath_1 = require("./posixPath");
|
|
21
20
|
const hashUtils_1 = require("./hashUtils");
|
|
21
|
+
const normalizeUrl_1 = require("./normalizeUrl");
|
|
22
|
+
const constants_1 = require("./constants");
|
|
23
|
+
(0, tslib_1.__exportStar)(require("./constants"), exports);
|
|
24
|
+
(0, tslib_1.__exportStar)(require("./mdxUtils"), exports);
|
|
25
|
+
(0, tslib_1.__exportStar)(require("./normalizeUrl"), exports);
|
|
26
|
+
(0, tslib_1.__exportStar)(require("./tags"), exports);
|
|
22
27
|
exports.posixPath = posixPath_1.posixPath;
|
|
23
|
-
tslib_1.__exportStar(require("./
|
|
24
|
-
tslib_1.__exportStar(require("./
|
|
25
|
-
tslib_1.__exportStar(require("./
|
|
26
|
-
tslib_1.__exportStar(require("./
|
|
28
|
+
(0, tslib_1.__exportStar)(require("./markdownParser"), exports);
|
|
29
|
+
(0, tslib_1.__exportStar)(require("./markdownLinks"), exports);
|
|
30
|
+
(0, tslib_1.__exportStar)(require("./escapePath"), exports);
|
|
31
|
+
(0, tslib_1.__exportStar)(require("./slugger"), exports);
|
|
27
32
|
var hashUtils_2 = require("./hashUtils");
|
|
28
33
|
Object.defineProperty(exports, "md5Hash", { enumerable: true, get: function () { return hashUtils_2.md5Hash; } });
|
|
29
34
|
Object.defineProperty(exports, "simpleHash", { enumerable: true, get: function () { return hashUtils_2.simpleHash; } });
|
|
30
35
|
Object.defineProperty(exports, "docuHash", { enumerable: true, get: function () { return hashUtils_2.docuHash; } });
|
|
36
|
+
var globUtils_1 = require("./globUtils");
|
|
37
|
+
Object.defineProperty(exports, "Globby", { enumerable: true, get: function () { return globUtils_1.Globby; } });
|
|
38
|
+
Object.defineProperty(exports, "GlobExcludeDefault", { enumerable: true, get: function () { return globUtils_1.GlobExcludeDefault; } });
|
|
39
|
+
Object.defineProperty(exports, "createMatcher", { enumerable: true, get: function () { return globUtils_1.createMatcher; } });
|
|
40
|
+
Object.defineProperty(exports, "createAbsoluteFilePathMatcher", { enumerable: true, get: function () { return globUtils_1.createAbsoluteFilePathMatcher; } });
|
|
41
|
+
(0, tslib_1.__exportStar)(require("./webpackUtils"), exports);
|
|
31
42
|
const fileHash = new Map();
|
|
32
43
|
async function generate(generatedFilesDir, file, content, skipCache = process.env.NODE_ENV === 'production') {
|
|
33
44
|
const filepath = path_1.default.join(generatedFilesDir, file);
|
|
@@ -42,10 +53,10 @@ async function generate(generatedFilesDir, file, content, skipCache = process.en
|
|
|
42
53
|
// This is to avoid unnecessary overwriting and we can reuse old file.
|
|
43
54
|
if (!lastHash && fs_extra_1.default.existsSync(filepath)) {
|
|
44
55
|
const lastContent = await fs_extra_1.default.readFile(filepath, 'utf8');
|
|
45
|
-
lastHash = crypto_1.createHash('md5').update(lastContent).digest('hex');
|
|
56
|
+
lastHash = (0, crypto_1.createHash)('md5').update(lastContent).digest('hex');
|
|
46
57
|
fileHash.set(filepath, lastHash);
|
|
47
58
|
}
|
|
48
|
-
const currentHash = crypto_1.createHash('md5').update(content).digest('hex');
|
|
59
|
+
const currentHash = (0, crypto_1.createHash)('md5').update(content).digest('hex');
|
|
49
60
|
if (lastHash !== currentHash) {
|
|
50
61
|
await fs_extra_1.default.ensureDir(path_1.default.dirname(filepath));
|
|
51
62
|
await fs_extra_1.default.writeFile(filepath, content);
|
|
@@ -99,8 +110,8 @@ function genComponentName(pagePath) {
|
|
|
99
110
|
if (pagePath === '/') {
|
|
100
111
|
return 'index';
|
|
101
112
|
}
|
|
102
|
-
const pageHash = hashUtils_1.docuHash(pagePath);
|
|
103
|
-
return upperFirst(lodash_1.camelCase(pageHash));
|
|
113
|
+
const pageHash = (0, hashUtils_1.docuHash)(pagePath);
|
|
114
|
+
return upperFirst((0, lodash_1.camelCase)(pageHash));
|
|
104
115
|
}
|
|
105
116
|
exports.genComponentName = genComponentName;
|
|
106
117
|
// When you want to display a path in a message/warning/error,
|
|
@@ -111,7 +122,7 @@ exports.genComponentName = genComponentName;
|
|
|
111
122
|
// on both Unix/Windows
|
|
112
123
|
// For Windows users this is not perfect (as they see / instead of \) but it's probably good enough
|
|
113
124
|
function toMessageRelativeFilePath(filePath) {
|
|
114
|
-
return exports.posixPath(path_1.default.relative(process.cwd(), filePath));
|
|
125
|
+
return (0, exports.posixPath)(path_1.default.relative(process.cwd(), filePath));
|
|
115
126
|
}
|
|
116
127
|
exports.toMessageRelativeFilePath = toMessageRelativeFilePath;
|
|
117
128
|
const chunkNameCache = new Map();
|
|
@@ -122,15 +133,15 @@ function genChunkName(modulePath, prefix, preferredName, shortId = process.env.N
|
|
|
122
133
|
let chunkName = chunkNameCache.get(modulePath);
|
|
123
134
|
if (!chunkName) {
|
|
124
135
|
if (shortId) {
|
|
125
|
-
chunkName = hashUtils_1.simpleHash(modulePath, 8);
|
|
136
|
+
chunkName = (0, hashUtils_1.simpleHash)(modulePath, 8);
|
|
126
137
|
}
|
|
127
138
|
else {
|
|
128
139
|
let str = modulePath;
|
|
129
140
|
if (preferredName) {
|
|
130
|
-
const shortHash = hashUtils_1.simpleHash(modulePath, 3);
|
|
141
|
+
const shortHash = (0, hashUtils_1.simpleHash)(modulePath, 3);
|
|
131
142
|
str = `${preferredName}${shortHash}`;
|
|
132
143
|
}
|
|
133
|
-
const name = str === '/' ? 'index' : hashUtils_1.docuHash(str);
|
|
144
|
+
const name = str === '/' ? 'index' : (0, hashUtils_1.docuHash)(str);
|
|
134
145
|
chunkName = prefix ? `${prefix}---${name}` : name;
|
|
135
146
|
}
|
|
136
147
|
chunkNameCache.set(modulePath, chunkName);
|
|
@@ -152,77 +163,20 @@ exports.idx = idx;
|
|
|
152
163
|
* Given a filepath and dirpath, get the first directory.
|
|
153
164
|
*/
|
|
154
165
|
function getSubFolder(file, refDir) {
|
|
155
|
-
const separator = escape_string_regexp_1.default(path_1.default.sep);
|
|
156
|
-
const baseDir = escape_string_regexp_1.default(path_1.default.basename(refDir));
|
|
166
|
+
const separator = (0, escape_string_regexp_1.default)(path_1.default.sep);
|
|
167
|
+
const baseDir = (0, escape_string_regexp_1.default)(path_1.default.basename(refDir));
|
|
157
168
|
const regexSubFolder = new RegExp(`${baseDir}${separator}(.*?)${separator}.*`);
|
|
158
169
|
const match = regexSubFolder.exec(file);
|
|
159
170
|
return match && match[1];
|
|
160
171
|
}
|
|
161
172
|
exports.getSubFolder = getSubFolder;
|
|
162
|
-
function normalizeUrl(rawUrls) {
|
|
163
|
-
const urls = [...rawUrls];
|
|
164
|
-
const resultArray = [];
|
|
165
|
-
let hasStartingSlash = false;
|
|
166
|
-
let hasEndingSlash = false;
|
|
167
|
-
// If the first part is a plain protocol, we combine it with the next part.
|
|
168
|
-
if (urls[0].match(/^[^/:]+:\/*$/) && urls.length > 1) {
|
|
169
|
-
const first = urls.shift();
|
|
170
|
-
urls[0] = first + urls[0];
|
|
171
|
-
}
|
|
172
|
-
// There must be two or three slashes in the file protocol,
|
|
173
|
-
// two slashes in anything else.
|
|
174
|
-
const replacement = urls[0].match(/^file:\/\/\//) ? '$1:///' : '$1://';
|
|
175
|
-
urls[0] = urls[0].replace(/^([^/:]+):\/*/, replacement);
|
|
176
|
-
// eslint-disable-next-line
|
|
177
|
-
for (let i = 0; i < urls.length; i++) {
|
|
178
|
-
let component = urls[i];
|
|
179
|
-
if (typeof component !== 'string') {
|
|
180
|
-
throw new TypeError(`Url must be a string. Received ${typeof component}`);
|
|
181
|
-
}
|
|
182
|
-
if (component === '') {
|
|
183
|
-
if (i === urls.length - 1 && hasEndingSlash) {
|
|
184
|
-
resultArray.push('/');
|
|
185
|
-
}
|
|
186
|
-
// eslint-disable-next-line
|
|
187
|
-
continue;
|
|
188
|
-
}
|
|
189
|
-
if (component !== '/') {
|
|
190
|
-
if (i > 0) {
|
|
191
|
-
// Removing the starting slashes for each component but the first.
|
|
192
|
-
component = component.replace(/^[/]+/,
|
|
193
|
-
// Special case where the first element of rawUrls is empty ["", "/hello"] => /hello
|
|
194
|
-
component[0] === '/' && !hasStartingSlash ? '/' : '');
|
|
195
|
-
}
|
|
196
|
-
hasEndingSlash = component[component.length - 1] === '/';
|
|
197
|
-
// Removing the ending slashes for each component but the last.
|
|
198
|
-
// For the last component we will combine multiple slashes to a single one.
|
|
199
|
-
component = component.replace(/[/]+$/, i < urls.length - 1 ? '' : '/');
|
|
200
|
-
}
|
|
201
|
-
hasStartingSlash = true;
|
|
202
|
-
resultArray.push(component);
|
|
203
|
-
}
|
|
204
|
-
let str = resultArray.join('/');
|
|
205
|
-
// Each input component is now separated by a single slash
|
|
206
|
-
// except the possible first plain protocol part.
|
|
207
|
-
// Remove trailing slash before parameters or hash.
|
|
208
|
-
str = str.replace(/\/(\?|&|#[^!])/g, '$1');
|
|
209
|
-
// Replace ? in parameters with &.
|
|
210
|
-
const parts = str.split('?');
|
|
211
|
-
str = parts.shift() + (parts.length > 0 ? '?' : '') + parts.join('&');
|
|
212
|
-
// Dedupe forward slashes in the entire path, avoiding protocol slashes.
|
|
213
|
-
str = str.replace(/([^:]\/)\/+/g, '$1');
|
|
214
|
-
// Dedupe forward slashes at the beginning of the path.
|
|
215
|
-
str = str.replace(/^\/+/g, '/');
|
|
216
|
-
return str;
|
|
217
|
-
}
|
|
218
|
-
exports.normalizeUrl = normalizeUrl;
|
|
219
173
|
/**
|
|
220
174
|
* Alias filepath relative to site directory, very useful so that we
|
|
221
175
|
* don't expose user's site structure.
|
|
222
176
|
* Example: some/path/to/website/docs/foo.md -> @site/docs/foo.md
|
|
223
177
|
*/
|
|
224
178
|
function aliasedSitePath(filePath, siteDir) {
|
|
225
|
-
const relativePath = exports.posixPath(path_1.default.relative(siteDir, filePath));
|
|
179
|
+
const relativePath = (0, exports.posixPath)(path_1.default.relative(siteDir, filePath));
|
|
226
180
|
// Cannot use path.join() as it resolves '../' and removes
|
|
227
181
|
// the '@site'. Let webpack loader resolve it.
|
|
228
182
|
return `@site/${relativePath}`;
|
|
@@ -230,7 +184,7 @@ function aliasedSitePath(filePath, siteDir) {
|
|
|
230
184
|
exports.aliasedSitePath = aliasedSitePath;
|
|
231
185
|
function getEditUrl(fileRelativePath, editUrl) {
|
|
232
186
|
return editUrl
|
|
233
|
-
? normalizeUrl([editUrl, exports.posixPath(fileRelativePath)])
|
|
187
|
+
? (0, normalizeUrl_1.normalizeUrl)([editUrl, (0, exports.posixPath)(fileRelativePath)])
|
|
234
188
|
: undefined;
|
|
235
189
|
}
|
|
236
190
|
exports.getEditUrl = getEditUrl;
|
|
@@ -250,7 +204,7 @@ function isValidPathname(str) {
|
|
|
250
204
|
exports.isValidPathname = isValidPathname;
|
|
251
205
|
// resolve pathname and fail fast if resolution fails
|
|
252
206
|
function resolvePathname(to, from) {
|
|
253
|
-
return resolve_pathname_1.default(to, from);
|
|
207
|
+
return (0, resolve_pathname_1.default)(to, from);
|
|
254
208
|
}
|
|
255
209
|
exports.resolvePathname = resolvePathname;
|
|
256
210
|
function addLeadingSlash(str) {
|
|
@@ -292,23 +246,19 @@ function getElementsAround(array, aroundIndex) {
|
|
|
292
246
|
return { previous, next };
|
|
293
247
|
}
|
|
294
248
|
exports.getElementsAround = getElementsAround;
|
|
295
|
-
function getPluginI18nPath({ siteDir, locale, pluginName, pluginId =
|
|
296
|
-
subPaths = [], }) {
|
|
249
|
+
function getPluginI18nPath({ siteDir, locale, pluginName, pluginId = constants_1.DEFAULT_PLUGIN_ID, subPaths = [], }) {
|
|
297
250
|
return path_1.default.join(siteDir, 'i18n',
|
|
298
251
|
// namespace first by locale: convenient to work in a single folder for a translator
|
|
299
252
|
locale,
|
|
300
253
|
// Make it convenient to use for single-instance
|
|
301
254
|
// ie: return "docs", not "docs-default" nor "docs/default"
|
|
302
|
-
`${pluginName}${
|
|
303
|
-
// TODO duplicate constant :(
|
|
304
|
-
pluginId === 'default' ? '' : `-${pluginId}`}`, ...subPaths);
|
|
255
|
+
`${pluginName}${pluginId === constants_1.DEFAULT_PLUGIN_ID ? '' : `-${pluginId}`}`, ...subPaths);
|
|
305
256
|
}
|
|
306
257
|
exports.getPluginI18nPath = getPluginI18nPath;
|
|
307
258
|
async function mapAsyncSequencial(array, action) {
|
|
308
259
|
const results = [];
|
|
309
260
|
// eslint-disable-next-line no-restricted-syntax
|
|
310
261
|
for (const t of array) {
|
|
311
|
-
// eslint-disable-next-line no-await-in-loop
|
|
312
262
|
const result = await action(t);
|
|
313
263
|
results.push(result);
|
|
314
264
|
}
|
|
@@ -318,7 +268,6 @@ exports.mapAsyncSequencial = mapAsyncSequencial;
|
|
|
318
268
|
async function findAsyncSequential(array, predicate) {
|
|
319
269
|
// eslint-disable-next-line no-restricted-syntax
|
|
320
270
|
for (const t of array) {
|
|
321
|
-
// eslint-disable-next-line no-await-in-loop
|
|
322
271
|
if (await predicate(t)) {
|
|
323
272
|
return t;
|
|
324
273
|
}
|
|
@@ -361,9 +310,7 @@ function reportMessage(message, reportingSeverity) {
|
|
|
361
310
|
}
|
|
362
311
|
exports.reportMessage = reportMessage;
|
|
363
312
|
function mergeTranslations(contents) {
|
|
364
|
-
return contents.reduce((acc, content) => {
|
|
365
|
-
return { ...acc, ...content };
|
|
366
|
-
}, {});
|
|
313
|
+
return contents.reduce((acc, content) => ({ ...acc, ...content }), {});
|
|
367
314
|
}
|
|
368
315
|
exports.mergeTranslations = mergeTranslations;
|
|
369
316
|
function getSwizzledComponent(componentPath) {
|
|
@@ -378,7 +325,7 @@ exports.getSwizzledComponent = getSwizzledComponent;
|
|
|
378
325
|
function updateTranslationFileMessages(translationFile, updateMessage) {
|
|
379
326
|
return {
|
|
380
327
|
...translationFile,
|
|
381
|
-
content: lodash_1.mapValues(translationFile.content, (translation) => ({
|
|
328
|
+
content: (0, lodash_1.mapValues)(translationFile.content, (translation) => ({
|
|
382
329
|
...translation,
|
|
383
330
|
message: updateMessage(translation.message),
|
|
384
331
|
})),
|
package/lib/markdownLinks.js
CHANGED
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
*/
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.replaceMarkdownLinks = void 0;
|
|
10
|
-
const
|
|
10
|
+
const tslib_1 = require("tslib");
|
|
11
|
+
const path_1 = (0, tslib_1.__importDefault)(require("path"));
|
|
11
12
|
const index_1 = require("./index");
|
|
12
13
|
function replaceMarkdownLinks({ siteDir, fileString, filePath, contentPaths, sourceToPermalink, }) {
|
|
13
14
|
const { contentPath, contentPathLocalized } = contentPaths;
|
|
@@ -30,12 +31,24 @@ function replaceMarkdownLinks({ siteDir, fileString, filePath, contentPaths, sou
|
|
|
30
31
|
while (mdMatch !== null) {
|
|
31
32
|
// Replace it to correct html link.
|
|
32
33
|
const mdLink = mdMatch[1];
|
|
33
|
-
const
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
const sourcesToTry = [
|
|
35
|
+
path_1.default.resolve(path_1.default.dirname(filePath), decodeURIComponent(mdLink)),
|
|
36
|
+
`${contentPathLocalized}/${decodeURIComponent(mdLink)}`,
|
|
37
|
+
`${contentPath}/${decodeURIComponent(mdLink)}`,
|
|
38
|
+
];
|
|
39
|
+
const aliasedSourceMatch = sourcesToTry
|
|
40
|
+
.map((source) => (0, index_1.aliasedSitePath)(source, siteDir))
|
|
41
|
+
.find((source) => sourceToPermalink[source]);
|
|
42
|
+
const permalink = aliasedSourceMatch
|
|
43
|
+
? sourceToPermalink[aliasedSourceMatch]
|
|
44
|
+
: undefined;
|
|
37
45
|
if (permalink) {
|
|
38
|
-
|
|
46
|
+
// MDX won't be happy if the permalink contains a space, we need to convert it to %20
|
|
47
|
+
const encodedPermalink = permalink
|
|
48
|
+
.split('/')
|
|
49
|
+
.map((part) => part.replace(/\s/g, '%20'))
|
|
50
|
+
.join('/');
|
|
51
|
+
modifiedLine = modifiedLine.replace(mdLink, encodedPermalink);
|
|
39
52
|
}
|
|
40
53
|
else {
|
|
41
54
|
const brokenMarkdownLink = {
|
package/lib/markdownParser.js
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.parseMarkdownFile = exports.parseMarkdownString = exports.parseMarkdownContentTitle = exports.parseFrontMatter = exports.createExcerpt = void 0;
|
|
10
10
|
const tslib_1 = require("tslib");
|
|
11
|
-
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
12
|
-
const fs_extra_1 = tslib_1.__importDefault(require("fs-extra"));
|
|
13
|
-
const gray_matter_1 = tslib_1.__importDefault(require("gray-matter"));
|
|
11
|
+
const chalk_1 = (0, tslib_1.__importDefault)(require("chalk"));
|
|
12
|
+
const fs_extra_1 = (0, tslib_1.__importDefault)(require("fs-extra"));
|
|
13
|
+
const gray_matter_1 = (0, tslib_1.__importDefault)(require("gray-matter"));
|
|
14
14
|
// Hacky way of stripping out import statements from the excerpt
|
|
15
15
|
// TODO: Find a better way to do so, possibly by compiling the Markdown content,
|
|
16
16
|
// stripping out HTML tags and obtaining the first line.
|
|
@@ -20,6 +20,7 @@ function createExcerpt(fileString) {
|
|
|
20
20
|
// Remove Markdown alternate title
|
|
21
21
|
.replace(/^[^\n]*\n[=]+/g, '')
|
|
22
22
|
.split('\n');
|
|
23
|
+
let inCode = false;
|
|
23
24
|
/* eslint-disable no-continue */
|
|
24
25
|
// eslint-disable-next-line no-restricted-syntax
|
|
25
26
|
for (const fileLine of fileLines) {
|
|
@@ -31,6 +32,14 @@ function createExcerpt(fileString) {
|
|
|
31
32
|
if (/^\s*?import\s.*(from.*)?;?|export\s.*{.*};?/.test(fileLine)) {
|
|
32
33
|
continue;
|
|
33
34
|
}
|
|
35
|
+
// Skip code block line.
|
|
36
|
+
if (fileLine.trim().startsWith('```')) {
|
|
37
|
+
inCode = !inCode;
|
|
38
|
+
continue;
|
|
39
|
+
}
|
|
40
|
+
else if (inCode) {
|
|
41
|
+
continue;
|
|
42
|
+
}
|
|
34
43
|
const cleanedLine = fileLine
|
|
35
44
|
// Remove HTML tags.
|
|
36
45
|
.replace(/<[^>]*>/g, '')
|
|
@@ -66,7 +75,7 @@ function createExcerpt(fileString) {
|
|
|
66
75
|
exports.createExcerpt = createExcerpt;
|
|
67
76
|
function parseFrontMatter(markdownFileContent) {
|
|
68
77
|
var _a;
|
|
69
|
-
const { data, content } = gray_matter_1.default(markdownFileContent);
|
|
78
|
+
const { data, content } = (0, gray_matter_1.default)(markdownFileContent);
|
|
70
79
|
return {
|
|
71
80
|
frontMatter: data !== null && data !== void 0 ? data : {},
|
|
72
81
|
content: (_a = content === null || content === void 0 ? void 0 : content.trim()) !== null && _a !== void 0 ? _a : '',
|
|
@@ -86,8 +95,7 @@ function parseMarkdownContentTitle(contentUntrimmed, options) {
|
|
|
86
95
|
var _a, _b;
|
|
87
96
|
const removeContentTitleOption = (_a = options === null || options === void 0 ? void 0 : options.removeContentTitle) !== null && _a !== void 0 ? _a : false;
|
|
88
97
|
const content = contentUntrimmed.trim();
|
|
89
|
-
const IMPORT_STATEMENT = /import\s+(([\w*{}\s\n,]+)from\s+)?["'\s]([@\w/_.-]+)["'\s];?|\n
|
|
90
|
-
.source;
|
|
98
|
+
const IMPORT_STATEMENT = /import\s+(([\w*{}\s\n,]+)from\s+)?["'\s]([@\w/_.-]+)["'\s];?|\n/.source;
|
|
91
99
|
const REGULAR_TITLE = /(?<pattern>#\s*(?<title>[^#\n{]*)+[ \t]*(?<suffix>({#*[\w-]+})|#)?\n*?)/
|
|
92
100
|
.source;
|
|
93
101
|
const ALTERNATE_TITLE = /(?<pattern>\s*(?<title>[^\n]*)\s*\n[=]+)/.source;
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
* Transform mdx text to plain html text
|
|
9
|
+
* Initially created to convert MDX blog posts to HTML for the RSS feed
|
|
10
|
+
* without import/export nodes
|
|
11
|
+
*
|
|
12
|
+
* TODO not ideal implementation, won't work well with MDX elements!
|
|
13
|
+
* TODO theme+global site config should be able to declare MDX comps in scope for rendering the RSS feeds
|
|
14
|
+
* see also https://github.com/facebook/docusaurus/issues/4625
|
|
15
|
+
*/
|
|
16
|
+
export declare function mdxToHtml(mdxStr: string): string;
|
package/lib/mdxUtils.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.mdxToHtml = void 0;
|
|
10
|
+
const tslib_1 = require("tslib");
|
|
11
|
+
const react_1 = (0, tslib_1.__importDefault)(require("react"));
|
|
12
|
+
const server_1 = (0, tslib_1.__importDefault)(require("react-dom/server"));
|
|
13
|
+
const runtime_1 = (0, tslib_1.__importDefault)(require("@mdx-js/runtime"));
|
|
14
|
+
const remark_mdx_remove_imports_1 = (0, tslib_1.__importDefault)(require("remark-mdx-remove-imports"));
|
|
15
|
+
const remark_mdx_remove_exports_1 = (0, tslib_1.__importDefault)(require("remark-mdx-remove-exports"));
|
|
16
|
+
/**
|
|
17
|
+
* Transform mdx text to plain html text
|
|
18
|
+
* Initially created to convert MDX blog posts to HTML for the RSS feed
|
|
19
|
+
* without import/export nodes
|
|
20
|
+
*
|
|
21
|
+
* TODO not ideal implementation, won't work well with MDX elements!
|
|
22
|
+
* TODO theme+global site config should be able to declare MDX comps in scope for rendering the RSS feeds
|
|
23
|
+
* see also https://github.com/facebook/docusaurus/issues/4625
|
|
24
|
+
*/
|
|
25
|
+
function mdxToHtml(mdxStr) {
|
|
26
|
+
return server_1.default.renderToString(react_1.default.createElement(runtime_1.default, { remarkPlugins: [remark_mdx_remove_imports_1.default, remark_mdx_remove_exports_1.default] }, [
|
|
27
|
+
mdxStr,
|
|
28
|
+
]));
|
|
29
|
+
}
|
|
30
|
+
exports.mdxToHtml = mdxToHtml;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.normalizeUrl = void 0;
|
|
10
|
+
function normalizeUrl(rawUrls) {
|
|
11
|
+
const urls = [...rawUrls];
|
|
12
|
+
const resultArray = [];
|
|
13
|
+
let hasStartingSlash = false;
|
|
14
|
+
let hasEndingSlash = false;
|
|
15
|
+
// If the first part is a plain protocol, we combine it with the next part.
|
|
16
|
+
if (urls[0].match(/^[^/:]+:\/*$/) && urls.length > 1) {
|
|
17
|
+
const first = urls.shift();
|
|
18
|
+
urls[0] = first + urls[0];
|
|
19
|
+
}
|
|
20
|
+
// There must be two or three slashes in the file protocol,
|
|
21
|
+
// two slashes in anything else.
|
|
22
|
+
const replacement = urls[0].match(/^file:\/\/\//) ? '$1:///' : '$1://';
|
|
23
|
+
urls[0] = urls[0].replace(/^([^/:]+):\/*/, replacement);
|
|
24
|
+
// eslint-disable-next-line
|
|
25
|
+
for (let i = 0; i < urls.length; i++) {
|
|
26
|
+
let component = urls[i];
|
|
27
|
+
if (typeof component !== 'string') {
|
|
28
|
+
throw new TypeError(`Url must be a string. Received ${typeof component}`);
|
|
29
|
+
}
|
|
30
|
+
if (component === '') {
|
|
31
|
+
if (i === urls.length - 1 && hasEndingSlash) {
|
|
32
|
+
resultArray.push('/');
|
|
33
|
+
}
|
|
34
|
+
// eslint-disable-next-line
|
|
35
|
+
continue;
|
|
36
|
+
}
|
|
37
|
+
if (component !== '/') {
|
|
38
|
+
if (i > 0) {
|
|
39
|
+
// Removing the starting slashes for each component but the first.
|
|
40
|
+
component = component.replace(/^[/]+/,
|
|
41
|
+
// Special case where the first element of rawUrls is empty ["", "/hello"] => /hello
|
|
42
|
+
component[0] === '/' && !hasStartingSlash ? '/' : '');
|
|
43
|
+
}
|
|
44
|
+
hasEndingSlash = component[component.length - 1] === '/';
|
|
45
|
+
// Removing the ending slashes for each component but the last.
|
|
46
|
+
// For the last component we will combine multiple slashes to a single one.
|
|
47
|
+
component = component.replace(/[/]+$/, i < urls.length - 1 ? '' : '/');
|
|
48
|
+
}
|
|
49
|
+
hasStartingSlash = true;
|
|
50
|
+
resultArray.push(component);
|
|
51
|
+
}
|
|
52
|
+
let str = resultArray.join('/');
|
|
53
|
+
// Each input component is now separated by a single slash
|
|
54
|
+
// except the possible first plain protocol part.
|
|
55
|
+
// Remove trailing slash before parameters or hash.
|
|
56
|
+
str = str.replace(/\/(\?|&|#[^!])/g, '$1');
|
|
57
|
+
// Replace ? in parameters with &.
|
|
58
|
+
const parts = str.split('?');
|
|
59
|
+
str = parts.shift() + (parts.length > 0 ? '?' : '') + parts.join('&');
|
|
60
|
+
// Dedupe forward slashes in the entire path, avoiding protocol slashes.
|
|
61
|
+
str = str.replace(/([^:]\/)\/+/g, '$1');
|
|
62
|
+
// Dedupe forward slashes at the beginning of the path.
|
|
63
|
+
str = str.replace(/^\/+/g, '/');
|
|
64
|
+
return str;
|
|
65
|
+
}
|
|
66
|
+
exports.normalizeUrl = normalizeUrl;
|
package/lib/pathUtils.js
CHANGED
|
@@ -15,11 +15,9 @@ const MAX_PATH_SEGMENT_BYTES = 255;
|
|
|
15
15
|
const SPACE_FOR_APPENDING = 10;
|
|
16
16
|
const isMacOs = process.platform === `darwin`;
|
|
17
17
|
const isWindows = process.platform === `win32`;
|
|
18
|
-
const isNameTooLong = (str) =>
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
: Buffer.from(str).length + SPACE_FOR_APPENDING > MAX_PATH_SEGMENT_BYTES; // Other (255 bytes)
|
|
22
|
-
};
|
|
18
|
+
const isNameTooLong = (str) => isMacOs || isWindows
|
|
19
|
+
? str.length + SPACE_FOR_APPENDING > MAX_PATH_SEGMENT_CHARS // MacOS (APFS) and Windows (NTFS) filename length limit (255 chars)
|
|
20
|
+
: Buffer.from(str).length + SPACE_FOR_APPENDING > MAX_PATH_SEGMENT_BYTES; // Other (255 bytes)
|
|
23
21
|
exports.isNameTooLong = isNameTooLong;
|
|
24
22
|
const shortName = (str) => {
|
|
25
23
|
if (isMacOs || isWindows) {
|
package/lib/slugger.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
export declare type SluggerOptions = {
|
|
8
|
+
maintainCase?: boolean;
|
|
9
|
+
};
|
|
10
|
+
export declare type Slugger = {
|
|
11
|
+
slug: (value: string, options?: SluggerOptions) => string;
|
|
12
|
+
};
|
|
13
|
+
export declare function createSlugger(): Slugger;
|
package/lib/slugger.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.createSlugger = void 0;
|
|
10
|
+
const tslib_1 = require("tslib");
|
|
11
|
+
const github_slugger_1 = (0, tslib_1.__importDefault)(require("github-slugger"));
|
|
12
|
+
function createSlugger() {
|
|
13
|
+
const githubSlugger = new github_slugger_1.default();
|
|
14
|
+
return {
|
|
15
|
+
slug: (value, options) => githubSlugger.slug(value, options === null || options === void 0 ? void 0 : options.maintainCase),
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
exports.createSlugger = createSlugger;
|
package/lib/tags.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
export declare type Tag = {
|
|
8
|
+
label: string;
|
|
9
|
+
permalink: string;
|
|
10
|
+
};
|
|
11
|
+
export declare type FrontMatterTag = string | Tag;
|
|
12
|
+
export declare function normalizeFrontMatterTag(tagsPath: string, frontMatterTag: FrontMatterTag): Tag;
|
|
13
|
+
export declare function normalizeFrontMatterTags(tagsPath: string, frontMatterTags: FrontMatterTag[] | undefined): Tag[];
|
|
14
|
+
export declare type TaggedItemGroup<Item> = {
|
|
15
|
+
tag: Tag;
|
|
16
|
+
items: Item[];
|
|
17
|
+
};
|
|
18
|
+
export declare function groupTaggedItems<Item>(items: Item[], getItemTags: (item: Item) => Tag[]): Record<string, TaggedItemGroup<Item>>;
|
package/lib/tags.js
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.groupTaggedItems = exports.normalizeFrontMatterTags = exports.normalizeFrontMatterTag = void 0;
|
|
10
|
+
const lodash_1 = require("lodash");
|
|
11
|
+
const normalizeUrl_1 = require("./normalizeUrl");
|
|
12
|
+
function normalizeFrontMatterTag(tagsPath, frontMatterTag) {
|
|
13
|
+
function toTagObject(tagString) {
|
|
14
|
+
return {
|
|
15
|
+
label: tagString,
|
|
16
|
+
permalink: (0, lodash_1.kebabCase)(tagString),
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
// TODO maybe make ensure the permalink is valid url path?
|
|
20
|
+
function normalizeTagPermalink(permalink) {
|
|
21
|
+
// note: we always apply tagsPath on purpose
|
|
22
|
+
// for versioned docs, v1/doc.md and v2/doc.md tags with custom permalinks don't lead to the same created page
|
|
23
|
+
// tagsPath is different for each doc version
|
|
24
|
+
return (0, normalizeUrl_1.normalizeUrl)([tagsPath, permalink]);
|
|
25
|
+
}
|
|
26
|
+
const tag = typeof frontMatterTag === 'string'
|
|
27
|
+
? toTagObject(frontMatterTag)
|
|
28
|
+
: frontMatterTag;
|
|
29
|
+
return {
|
|
30
|
+
label: tag.label,
|
|
31
|
+
permalink: normalizeTagPermalink(tag.permalink),
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
exports.normalizeFrontMatterTag = normalizeFrontMatterTag;
|
|
35
|
+
function normalizeFrontMatterTags(tagsPath, frontMatterTags) {
|
|
36
|
+
var _a;
|
|
37
|
+
const tags = (_a = frontMatterTags === null || frontMatterTags === void 0 ? void 0 : frontMatterTags.map((tag) => normalizeFrontMatterTag(tagsPath, tag))) !== null && _a !== void 0 ? _a : [];
|
|
38
|
+
return (0, lodash_1.uniqBy)(tags, (tag) => tag.permalink);
|
|
39
|
+
}
|
|
40
|
+
exports.normalizeFrontMatterTags = normalizeFrontMatterTags;
|
|
41
|
+
// Permits to group docs/blogPosts by tag (provided by FrontMatter)
|
|
42
|
+
// Note: groups are indexed by permalink, because routes must be unique in the end
|
|
43
|
+
// Labels may vary on 2 md files but they are normalized.
|
|
44
|
+
// Docs with label='some label' and label='some-label' should end-up in the same group/page in the end
|
|
45
|
+
// We can't create 2 routes /some-label because one would override the other
|
|
46
|
+
function groupTaggedItems(items, getItemTags) {
|
|
47
|
+
const result = {};
|
|
48
|
+
function handleItemTag(item, tag) {
|
|
49
|
+
var _a;
|
|
50
|
+
// Init missing tag groups
|
|
51
|
+
// TODO: it's not really clear what should be the behavior if 2 items have the same tag but the permalink is different for each
|
|
52
|
+
// For now, the first tag found wins
|
|
53
|
+
result[tag.permalink] = (_a = result[tag.permalink]) !== null && _a !== void 0 ? _a : {
|
|
54
|
+
tag,
|
|
55
|
+
items: [],
|
|
56
|
+
};
|
|
57
|
+
// Add item to group
|
|
58
|
+
result[tag.permalink].items.push(item);
|
|
59
|
+
}
|
|
60
|
+
items.forEach((item) => {
|
|
61
|
+
getItemTags(item).forEach((tag) => {
|
|
62
|
+
handleItemTag(item, tag);
|
|
63
|
+
});
|
|
64
|
+
});
|
|
65
|
+
// If user add twice the same tag to a md doc (weird but possible),
|
|
66
|
+
// we don't want the item to appear twice in the list...
|
|
67
|
+
Object.values(result).forEach((group) => {
|
|
68
|
+
group.items = (0, lodash_1.uniq)(group.items);
|
|
69
|
+
});
|
|
70
|
+
return result;
|
|
71
|
+
}
|
|
72
|
+
exports.groupTaggedItems = groupTaggedItems;
|
|
@@ -0,0 +1,29 @@
|
|
|
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
|
+
import type { RuleSetRule } from 'webpack';
|
|
8
|
+
declare type AssetFolder = 'images' | 'files' | 'fonts' | 'medias';
|
|
9
|
+
declare type FileLoaderUtils = {
|
|
10
|
+
loaders: {
|
|
11
|
+
file: (options: {
|
|
12
|
+
folder: AssetFolder;
|
|
13
|
+
}) => RuleSetRule;
|
|
14
|
+
url: (options: {
|
|
15
|
+
folder: AssetFolder;
|
|
16
|
+
}) => RuleSetRule;
|
|
17
|
+
inlineMarkdownImageFileLoader: string;
|
|
18
|
+
inlineMarkdownLinkFileLoader: string;
|
|
19
|
+
};
|
|
20
|
+
rules: {
|
|
21
|
+
images: () => RuleSetRule;
|
|
22
|
+
fonts: () => RuleSetRule;
|
|
23
|
+
media: () => RuleSetRule;
|
|
24
|
+
svg: () => RuleSetRule;
|
|
25
|
+
otherAssets: () => RuleSetRule;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export declare function getFileLoaderUtils(): FileLoaderUtils;
|
|
29
|
+
export {};
|