Skip to content

Commit aa61c20

Browse files
Qjuhkodiakhq[bot]
authored andcommittedJan 9, 2025
feat(website): include reexported members in docs (#10518)
* feat(website): add re-exported members to docs site * refactor(scripts): rewrite sourceURL for externals * feat(website): add external badge --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent d48136b commit aa61c20

File tree

4 files changed

+69
-3
lines changed

4 files changed

+69
-3
lines changed
 

‎apps/website/src/components/Badges.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ export async function Badges({ node }: { readonly node: any }) {
1818
const isAbstract = node.isAbstract;
1919
const isReadonly = node.isReadonly;
2020
const isOptional = node.isOptional;
21+
const isExternal = node.isExternal;
2122

22-
const isAny = isDeprecated || isProtected || isStatic || isAbstract || isReadonly || isOptional;
23+
const isAny = isDeprecated || isProtected || isStatic || isAbstract || isReadonly || isOptional || isExternal;
2324

2425
return isAny ? (
2526
<div className="mb-1 flex gap-3">
@@ -33,6 +34,7 @@ export async function Badges({ node }: { readonly node: any }) {
3334
{isAbstract ? <Badge className="bg-cyan-500/20 text-cyan-500">abstract</Badge> : null}
3435
{isReadonly ? <Badge className="bg-purple-500/20 text-purple-500">readonly</Badge> : null}
3536
{isOptional ? <Badge className="bg-cyan-500/20 text-cyan-500">optional</Badge> : null}
37+
{isExternal ? <Badge className="bg-purple-500/20 text-purple-500">external</Badge> : null}
3638
</div>
3739
) : null;
3840
}

‎packages/core/api-extractor.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "../../api-extractor.json",
3+
"bundledPackages": ["discord-api-types"],
34
"docModel": {
45
"projectFolderUrl": "https://github.com/discordjs/discord.js/tree/main/packages/core"
56
}

‎packages/discord.js/api-extractor.json

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
{
22
"extends": "../../api-extractor.json",
33
"mainEntryPointFilePath": "<projectFolder>/typings/index.d.ts",
4+
"bundledPackages": [
5+
"discord-api-types",
6+
"@discordjs/builders",
7+
"@discordjs/formatters",
8+
"@discordjs/rest",
9+
"@discordjs/util",
10+
"@discordjs/ws"
11+
],
412
"docModel": {
513
"projectFolderUrl": "https://github.com/discordjs/discord.js/tree/main/packages/discord.js"
614
}

‎packages/scripts/src/generateSplitDocumentation.ts

+57-2
Original file line numberDiff line numberDiff line change
@@ -482,21 +482,23 @@ function itemTsDoc(item: DocNode, apiItem: ApiItem) {
482482

483483
function itemInfo(item: ApiDeclaredItem) {
484484
const sourceExcerpt = item.excerpt.text.trim();
485+
const { sourceURL, sourceLine } = resolveFileUrl(item);
485486

486487
const isStatic = ApiStaticMixin.isBaseClassOf(item) && item.isStatic;
487488
const isProtected = ApiProtectedMixin.isBaseClassOf(item) && item.isProtected;
488489
const isReadonly = ApiReadonlyMixin.isBaseClassOf(item) && item.isReadonly;
489490
const isAbstract = ApiAbstractMixin.isBaseClassOf(item) && item.isAbstract;
490491
const isOptional = ApiOptionalMixin.isBaseClassOf(item) && item.isOptional;
491492
const isDeprecated = Boolean(item.tsdocComment?.deprecatedBlock);
493+
const isExternal = Boolean(item.sourceLocation.fileUrl?.includes('node_modules'));
492494

493495
const hasSummary = Boolean(item.tsdocComment?.summarySection);
494496

495497
return {
496498
kind: item.kind,
497499
displayName: item.displayName,
498-
sourceURL: item.sourceLocation.fileUrl,
499-
sourceLine: item.sourceLocation.fileLine,
500+
sourceURL,
501+
sourceLine,
500502
sourceExcerpt,
501503
summary: hasSummary ? itemTsDoc(item.tsdocComment!, item) : null,
502504
isStatic,
@@ -505,6 +507,59 @@ function itemInfo(item: ApiDeclaredItem) {
505507
isAbstract,
506508
isDeprecated,
507509
isOptional,
510+
isExternal,
511+
};
512+
}
513+
514+
function resolveFileUrl(item: ApiDeclaredItem) {
515+
const {
516+
displayName,
517+
kind,
518+
sourceLocation: { fileUrl, fileLine },
519+
} = item;
520+
if (fileUrl?.includes('/node_modules/')) {
521+
const [, pkg] = fileUrl.split('/node_modules/');
522+
const parts = pkg?.split('/')[1]?.split('@');
523+
const unscoped = parts?.[0]?.length;
524+
if (!unscoped) parts?.shift();
525+
const pkgName = parts?.shift();
526+
const version = parts?.shift()?.split('_')?.[0];
527+
528+
// https://github.com/discordjs/discord.js/tree/main/node_modules/.pnpm/@discordjs+builders@1.9.0/node_modules/@discordjs/builders/dist/index.d.ts#L1764
529+
// https://github.com/discordjs/discord.js/tree/main/node_modules/.pnpm/@discordjs+ws@1.1.1_bufferutil@4.0.8_utf-8-validate@6.0.4/node_modules/@discordjs/ws/dist/index.d.ts#L...
530+
if (!unscoped && pkgName?.startsWith('discordjs+')) {
531+
let currentItem = item;
532+
while (currentItem.parent && currentItem.parent.kind !== ApiItemKind.EntryPoint)
533+
currentItem = currentItem.parent as ApiDeclaredItem;
534+
535+
return {
536+
sourceURL: `/docs/packages/${pkgName.replace('discordjs+', '')}/${version}/${currentItem.displayName}:${currentItem.kind}`,
537+
};
538+
}
539+
540+
// https://github.com/discordjs/discord.js/tree/main/node_modules/.pnpm/discord-api-types@0.37.97/node_modules/discord-api-types/payloads/v10/gateway.d.ts#L240
541+
if (pkgName === 'discord-api-types') {
542+
const DISCORD_API_TYPES_VERSION = 'v10';
543+
const DISCORD_API_TYPES_DOCS_URL = `https://discord-api-types.dev/api/discord-api-types-${DISCORD_API_TYPES_VERSION}`;
544+
let href = DISCORD_API_TYPES_DOCS_URL;
545+
546+
if (kind === ApiItemKind.EnumMember) {
547+
href += `/enum/${item.parent!.displayName}#${displayName}`;
548+
} else if (kind === ApiItemKind.TypeAlias || kind === ApiItemKind.Variable) {
549+
href += `#${displayName}`;
550+
} else {
551+
href += `/${kindToMeaning.get(kind)}/${displayName}`;
552+
}
553+
554+
return {
555+
sourceURL: href,
556+
};
557+
}
558+
}
559+
560+
return {
561+
sourceURL: fileUrl,
562+
sourceLine: fileLine,
508563
};
509564
}
510565

0 commit comments

Comments
 (0)
Please sign in to comment.