mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-01 03:08:17 +02:00
Co-authored-by: Joshua Chen <sidachen2003@gmail.com> Co-authored-by: Armano <armano2@users.noreply.github.com> Co-authored-by: Alexey Pyltsyn <lex61rus@gmail.com>
79 lines
2.2 KiB
TypeScript
79 lines
2.2 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import {
|
|
addLeadingSlash,
|
|
addTrailingSlash,
|
|
isValidPathname,
|
|
resolvePathname,
|
|
} from '@docusaurus/utils';
|
|
import {
|
|
DefaultNumberPrefixParser,
|
|
stripPathNumberPrefixes,
|
|
} from './numberPrefix';
|
|
import type {DocMetadataBase, NumberPrefixParser} from './types';
|
|
import {isConventionalDocIndex} from './docs';
|
|
|
|
export default function getSlug({
|
|
baseID,
|
|
frontmatterSlug,
|
|
source,
|
|
sourceDirName,
|
|
stripDirNumberPrefixes = true,
|
|
numberPrefixParser = DefaultNumberPrefixParser,
|
|
}: {
|
|
baseID: string;
|
|
frontmatterSlug?: string;
|
|
source: DocMetadataBase['slug'];
|
|
sourceDirName: DocMetadataBase['sourceDirName'];
|
|
stripDirNumberPrefixes?: boolean;
|
|
numberPrefixParser?: NumberPrefixParser;
|
|
}): string {
|
|
function getDirNameSlug(): string {
|
|
const dirNameStripped = stripDirNumberPrefixes
|
|
? stripPathNumberPrefixes(sourceDirName, numberPrefixParser)
|
|
: sourceDirName;
|
|
const resolveDirname =
|
|
sourceDirName === '.'
|
|
? '/'
|
|
: addLeadingSlash(addTrailingSlash(dirNameStripped));
|
|
return resolveDirname;
|
|
}
|
|
|
|
function computeSlug(): string {
|
|
if (frontmatterSlug?.startsWith('/')) {
|
|
return frontmatterSlug;
|
|
} else {
|
|
const dirNameSlug = getDirNameSlug();
|
|
if (!frontmatterSlug && isConventionalDocIndex({source, sourceDirName})) {
|
|
return dirNameSlug;
|
|
}
|
|
const baseSlug = frontmatterSlug || baseID;
|
|
return resolvePathname(baseSlug, getDirNameSlug());
|
|
}
|
|
}
|
|
|
|
function ensureValidSlug(slug: string): string {
|
|
if (!isValidPathname(slug)) {
|
|
throw new Error(
|
|
`We couldn't compute a valid slug for document with id "${baseID}" in "${sourceDirName}" directory.
|
|
The slug we computed looks invalid: ${slug}.
|
|
Maybe your slug frontmatter is incorrect or you use weird chars in the file path?
|
|
By using the slug frontmatter, you should be able to fix this error, by using the slug of your choice:
|
|
|
|
Example =>
|
|
---
|
|
slug: /my/customDocPath
|
|
---
|
|
`,
|
|
);
|
|
}
|
|
return slug;
|
|
}
|
|
|
|
return ensureValidSlug(computeSlug());
|
|
}
|