Adds @xuqm/h5-sdk/private entry point with JSON-based initialization, feature gating, and error codes for private deployment scenarios. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
250 行
14 KiB
JavaScript
250 行
14 KiB
JavaScript
"use strict";
|
|
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
// See LICENSE in the project root for license information.
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || (function () {
|
|
var ownKeys = function(o) {
|
|
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
var ar = [];
|
|
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
return ar;
|
|
};
|
|
return ownKeys(o);
|
|
};
|
|
return function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
})();
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.DocCommentEnhancer = void 0;
|
|
const ts = __importStar(require("typescript"));
|
|
const tsdoc = __importStar(require("@microsoft/tsdoc"));
|
|
const api_extractor_model_1 = require("@microsoft/api-extractor-model");
|
|
const AstSymbol_1 = require("../analyzer/AstSymbol");
|
|
const ExtractorMessageId_1 = require("../api/ExtractorMessageId");
|
|
const VisitorState_1 = require("../collector/VisitorState");
|
|
const AstReferenceResolver_1 = require("../analyzer/AstReferenceResolver");
|
|
class DocCommentEnhancer {
|
|
constructor(collector) {
|
|
this._collector = collector;
|
|
}
|
|
static analyze(collector) {
|
|
const docCommentEnhancer = new DocCommentEnhancer(collector);
|
|
docCommentEnhancer.analyze();
|
|
}
|
|
analyze() {
|
|
for (const entity of this._collector.entities) {
|
|
if (entity.astEntity instanceof AstSymbol_1.AstSymbol) {
|
|
if (entity.consumable ||
|
|
this._collector.extractorConfig.apiReportIncludeForgottenExports ||
|
|
this._collector.extractorConfig.docModelIncludeForgottenExports) {
|
|
entity.astEntity.forEachDeclarationRecursive((astDeclaration) => {
|
|
this._analyzeApiItem(astDeclaration);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
_analyzeApiItem(astDeclaration) {
|
|
const metadata = this._collector.fetchApiItemMetadata(astDeclaration);
|
|
if (metadata.docCommentEnhancerVisitorState === VisitorState_1.VisitorState.Visited) {
|
|
return;
|
|
}
|
|
if (metadata.docCommentEnhancerVisitorState === VisitorState_1.VisitorState.Visiting) {
|
|
this._collector.messageRouter.addAnalyzerIssue(ExtractorMessageId_1.ExtractorMessageId.CyclicInheritDoc, `The @inheritDoc tag for "${astDeclaration.astSymbol.localName}" refers to its own declaration`, astDeclaration);
|
|
return;
|
|
}
|
|
metadata.docCommentEnhancerVisitorState = VisitorState_1.VisitorState.Visiting;
|
|
if (metadata.tsdocComment && metadata.tsdocComment.inheritDocTag) {
|
|
this._applyInheritDoc(astDeclaration, metadata.tsdocComment, metadata.tsdocComment.inheritDocTag);
|
|
}
|
|
this._analyzeNeedsDocumentation(astDeclaration, metadata);
|
|
this._checkForBrokenLinks(astDeclaration, metadata);
|
|
metadata.docCommentEnhancerVisitorState = VisitorState_1.VisitorState.Visited;
|
|
}
|
|
_analyzeNeedsDocumentation(astDeclaration, metadata) {
|
|
if (astDeclaration.declaration.kind === ts.SyntaxKind.Constructor) {
|
|
// Constructors always do pretty much the same thing, so it's annoying to require people to write
|
|
// descriptions for them. Instead, if the constructor lacks a TSDoc summary, then API Extractor
|
|
// will auto-generate one.
|
|
metadata.undocumented = false;
|
|
// The class that contains this constructor
|
|
const classDeclaration = astDeclaration.parent;
|
|
const configuration = this._collector.extractorConfig.tsdocConfiguration;
|
|
if (!metadata.tsdocComment) {
|
|
metadata.tsdocComment = new tsdoc.DocComment({ configuration });
|
|
}
|
|
if (!tsdoc.PlainTextEmitter.hasAnyTextContent(metadata.tsdocComment.summarySection)) {
|
|
metadata.tsdocComment.summarySection.appendNodesInParagraph([
|
|
new tsdoc.DocPlainText({ configuration, text: 'Constructs a new instance of the ' }),
|
|
new tsdoc.DocCodeSpan({
|
|
configuration,
|
|
code: classDeclaration.astSymbol.localName
|
|
}),
|
|
new tsdoc.DocPlainText({ configuration, text: ' class' })
|
|
]);
|
|
}
|
|
const apiItemMetadata = this._collector.fetchApiItemMetadata(astDeclaration);
|
|
if (apiItemMetadata.effectiveReleaseTag === api_extractor_model_1.ReleaseTag.Internal) {
|
|
// If the constructor is marked as internal, then add a boilerplate notice for the containing class
|
|
const classMetadata = this._collector.fetchApiItemMetadata(classDeclaration);
|
|
if (!classMetadata.tsdocComment) {
|
|
classMetadata.tsdocComment = new tsdoc.DocComment({ configuration });
|
|
}
|
|
if (classMetadata.tsdocComment.remarksBlock === undefined) {
|
|
classMetadata.tsdocComment.remarksBlock = new tsdoc.DocBlock({
|
|
configuration,
|
|
blockTag: new tsdoc.DocBlockTag({
|
|
configuration,
|
|
tagName: tsdoc.StandardTags.remarks.tagName
|
|
})
|
|
});
|
|
}
|
|
classMetadata.tsdocComment.remarksBlock.content.appendNode(new tsdoc.DocParagraph({ configuration }, [
|
|
new tsdoc.DocPlainText({
|
|
configuration,
|
|
text: `The constructor for this class is marked as internal. Third-party code should not` +
|
|
` call the constructor directly or create subclasses that extend the `
|
|
}),
|
|
new tsdoc.DocCodeSpan({
|
|
configuration,
|
|
code: classDeclaration.astSymbol.localName
|
|
}),
|
|
new tsdoc.DocPlainText({ configuration, text: ' class.' })
|
|
]));
|
|
}
|
|
return;
|
|
}
|
|
else {
|
|
// For non-constructor items, we will determine whether or not the item is documented as follows:
|
|
// 1. If it contains a summary section with at least 10 characters, then it is considered "documented".
|
|
// 2. If it contains an @inheritDoc tag, then it *may* be considered "documented", depending on whether or not
|
|
// the tag resolves to a "documented" API member.
|
|
// - Note: for external members, we cannot currently determine this, so we will consider the "documented"
|
|
// status to be unknown.
|
|
if (metadata.tsdocComment) {
|
|
if (tsdoc.PlainTextEmitter.hasAnyTextContent(metadata.tsdocComment.summarySection, 10)) {
|
|
// If the API item has a summary comment block (with at least 10 characters), mark it as "documented".
|
|
metadata.undocumented = false;
|
|
}
|
|
else if (metadata.tsdocComment.inheritDocTag) {
|
|
if (this._refersToDeclarationInWorkingPackage(metadata.tsdocComment.inheritDocTag.declarationReference)) {
|
|
// If the API item has an `@inheritDoc` comment that points to an API item in the working package,
|
|
// then the documentation contents should have already been copied from the target via `_applyInheritDoc`.
|
|
// The continued existence of the tag indicates that the declaration reference was invalid, and not
|
|
// documentation contents could be copied.
|
|
// An analyzer issue will have already been logged for this.
|
|
// We will treat such an API as "undocumented".
|
|
metadata.undocumented = true;
|
|
}
|
|
else {
|
|
// If the API item has an `@inheritDoc` comment that points to an external API item, we cannot currently
|
|
// determine whether or not the target is "documented", so we cannot say definitively that this is "undocumented".
|
|
metadata.undocumented = false;
|
|
}
|
|
}
|
|
else {
|
|
// If the API item has neither a summary comment block, nor an `@inheritDoc` comment, mark it as "undocumented".
|
|
metadata.undocumented = true;
|
|
}
|
|
}
|
|
else {
|
|
// If there is no tsdoc comment at all, mark "undocumented".
|
|
metadata.undocumented = true;
|
|
}
|
|
}
|
|
}
|
|
_checkForBrokenLinks(astDeclaration, metadata) {
|
|
if (!metadata.tsdocComment) {
|
|
return;
|
|
}
|
|
this._checkForBrokenLinksRecursive(astDeclaration, metadata.tsdocComment);
|
|
}
|
|
_checkForBrokenLinksRecursive(astDeclaration, node) {
|
|
if (node instanceof tsdoc.DocLinkTag) {
|
|
if (node.codeDestination) {
|
|
// Is it referring to the working package? If not, we don't do any link validation, because
|
|
// AstReferenceResolver doesn't support it yet (but ModelReferenceResolver does of course).
|
|
// Tracked by: https://github.com/microsoft/rushstack/issues/1195
|
|
if (this._refersToDeclarationInWorkingPackage(node.codeDestination)) {
|
|
const referencedAstDeclaration = this._collector.astReferenceResolver.resolve(node.codeDestination);
|
|
if (referencedAstDeclaration instanceof AstReferenceResolver_1.ResolverFailure) {
|
|
this._collector.messageRouter.addAnalyzerIssue(ExtractorMessageId_1.ExtractorMessageId.UnresolvedLink, 'The @link reference could not be resolved: ' + referencedAstDeclaration.reason, astDeclaration);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for (const childNode of node.getChildNodes()) {
|
|
this._checkForBrokenLinksRecursive(astDeclaration, childNode);
|
|
}
|
|
}
|
|
/**
|
|
* Follow an `{@inheritDoc ___}` reference and copy the content that we find in the referenced comment.
|
|
*/
|
|
_applyInheritDoc(astDeclaration, docComment, inheritDocTag) {
|
|
if (!inheritDocTag.declarationReference) {
|
|
this._collector.messageRouter.addAnalyzerIssue(ExtractorMessageId_1.ExtractorMessageId.UnresolvedInheritDocBase, 'The @inheritDoc tag needs a TSDoc declaration reference; signature matching is not supported yet', astDeclaration);
|
|
return;
|
|
}
|
|
if (!this._refersToDeclarationInWorkingPackage(inheritDocTag.declarationReference)) {
|
|
// The `@inheritDoc` tag is referencing an external package. Skip it, since AstReferenceResolver doesn't
|
|
// support it yet. As a workaround, this tag will get handled later by api-documenter.
|
|
// Tracked by: https://github.com/microsoft/rushstack/issues/1195
|
|
return;
|
|
}
|
|
const referencedAstDeclaration = this._collector.astReferenceResolver.resolve(inheritDocTag.declarationReference);
|
|
if (referencedAstDeclaration instanceof AstReferenceResolver_1.ResolverFailure) {
|
|
this._collector.messageRouter.addAnalyzerIssue(ExtractorMessageId_1.ExtractorMessageId.UnresolvedInheritDocReference, 'The @inheritDoc reference could not be resolved: ' + referencedAstDeclaration.reason, astDeclaration);
|
|
return;
|
|
}
|
|
this._analyzeApiItem(referencedAstDeclaration);
|
|
const referencedMetadata = this._collector.fetchApiItemMetadata(referencedAstDeclaration);
|
|
if (referencedMetadata.tsdocComment) {
|
|
this._copyInheritedDocs(docComment, referencedMetadata.tsdocComment);
|
|
}
|
|
}
|
|
/**
|
|
* Copy the content from `sourceDocComment` to `targetDocComment`.
|
|
*/
|
|
_copyInheritedDocs(targetDocComment, sourceDocComment) {
|
|
targetDocComment.summarySection = sourceDocComment.summarySection;
|
|
targetDocComment.remarksBlock = sourceDocComment.remarksBlock;
|
|
targetDocComment.params.clear();
|
|
for (const param of sourceDocComment.params) {
|
|
targetDocComment.params.add(param);
|
|
}
|
|
for (const typeParam of sourceDocComment.typeParams) {
|
|
targetDocComment.typeParams.add(typeParam);
|
|
}
|
|
targetDocComment.returnsBlock = sourceDocComment.returnsBlock;
|
|
targetDocComment.inheritDocTag = undefined;
|
|
}
|
|
/**
|
|
* Determines whether or not the provided declaration reference points to an item in the working package.
|
|
*/
|
|
_refersToDeclarationInWorkingPackage(declarationReference) {
|
|
return ((declarationReference === null || declarationReference === void 0 ? void 0 : declarationReference.packageName) === undefined ||
|
|
declarationReference.packageName === this._collector.workingPackage.name);
|
|
}
|
|
}
|
|
exports.DocCommentEnhancer = DocCommentEnhancer;
|
|
//# sourceMappingURL=DocCommentEnhancer.js.map
|