@@ -482,21 +482,23 @@ function itemTsDoc(item: DocNode, apiItem: ApiItem) {
482
482
483
483
function itemInfo ( item : ApiDeclaredItem ) {
484
484
const sourceExcerpt = item . excerpt . text . trim ( ) ;
485
+ const { sourceURL, sourceLine } = resolveFileUrl ( item ) ;
485
486
486
487
const isStatic = ApiStaticMixin . isBaseClassOf ( item ) && item . isStatic ;
487
488
const isProtected = ApiProtectedMixin . isBaseClassOf ( item ) && item . isProtected ;
488
489
const isReadonly = ApiReadonlyMixin . isBaseClassOf ( item ) && item . isReadonly ;
489
490
const isAbstract = ApiAbstractMixin . isBaseClassOf ( item ) && item . isAbstract ;
490
491
const isOptional = ApiOptionalMixin . isBaseClassOf ( item ) && item . isOptional ;
491
492
const isDeprecated = Boolean ( item . tsdocComment ?. deprecatedBlock ) ;
493
+ const isExternal = Boolean ( item . sourceLocation . fileUrl ?. includes ( 'node_modules' ) ) ;
492
494
493
495
const hasSummary = Boolean ( item . tsdocComment ?. summarySection ) ;
494
496
495
497
return {
496
498
kind : item . kind ,
497
499
displayName : item . displayName ,
498
- sourceURL : item . sourceLocation . fileUrl ,
499
- sourceLine : item . sourceLocation . fileLine ,
500
+ sourceURL,
501
+ sourceLine,
500
502
sourceExcerpt,
501
503
summary : hasSummary ? itemTsDoc ( item . tsdocComment ! , item ) : null ,
502
504
isStatic,
@@ -505,6 +507,59 @@ function itemInfo(item: ApiDeclaredItem) {
505
507
isAbstract,
506
508
isDeprecated,
507
509
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 ,
508
563
} ;
509
564
}
510
565
0 commit comments