ts-json-schema-generator
Version:
Generate JSON schema from your Typescript sources
54 lines • 2.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const symbolAtNode_1 = require("../Utils/symbolAtNode");
const BasicAnnotationsReader_1 = require("./BasicAnnotationsReader");
class ExtendedAnnotationsReader extends BasicAnnotationsReader_1.BasicAnnotationsReader {
constructor(typeChecker, extraJsonTags) {
super(extraJsonTags);
this.typeChecker = typeChecker;
}
getAnnotations(node) {
const annotations = Object.assign({}, this.getDescriptionAnnotation(node), this.getTypeAnnotation(node), super.getAnnotations(node));
return Object.keys(annotations).length ? annotations : undefined;
}
isNullable(node) {
const symbol = symbolAtNode_1.symbolAtNode(node);
if (!symbol) {
return false;
}
const jsDocTags = symbol.getJsDocTags();
if (!jsDocTags || !jsDocTags.length) {
return false;
}
const jsDocTag = jsDocTags.find((tag) => tag.name === "nullable");
return !!jsDocTag;
}
getDescriptionAnnotation(node) {
const symbol = symbolAtNode_1.symbolAtNode(node);
if (!symbol) {
return undefined;
}
const comments = symbol.getDocumentationComment(this.typeChecker);
if (!comments || !comments.length) {
return undefined;
}
return { description: comments.map(comment => comment.text).join(" ") };
}
getTypeAnnotation(node) {
const symbol = symbolAtNode_1.symbolAtNode(node);
if (!symbol) {
return undefined;
}
const jsDocTags = symbol.getJsDocTags();
if (!jsDocTags || !jsDocTags.length) {
return undefined;
}
const jsDocTag = jsDocTags.find(tag => tag.name === "asType");
if (!jsDocTag || !jsDocTag.text) {
return undefined;
}
return { type: jsDocTag.text };
}
}
exports.ExtendedAnnotationsReader = ExtendedAnnotationsReader;
//# sourceMappingURL=ExtendedAnnotationsReader.js.map