[ADF-1769] Added support for methods to JSDoc tool (#2925)

* [ADF-1769] Refactored component props features

* [ADF-1769] Added methods list feature to doc tool

* [ADF-1769] Added support for optional parameters and initialisers

* [ADF-1769] Switched off prop generator tool
This commit is contained in:
Andy Stark
2018-02-09 10:22:41 +00:00
committed by Eugenio Romano
parent 0e51208333
commit 3114fa4862
5 changed files with 587 additions and 259 deletions

View File

@@ -15,28 +15,183 @@ exports.readPhase = readPhase;
function aggPhase(aggData) {
}
exports.aggPhase = aggPhase;
var PropData = /** @class */ (function () {
function PropData() {
}
return PropData;
}());
var ParamData = /** @class */ (function () {
function ParamData() {
}
ParamData.prototype.getSignature = function () {
var sig = this.name;
if (this.optional)
sig += "?";
sig += ": " + this.type;
if (this.initializer)
sig += " = " + this.initializer;
return sig;
};
return ParamData;
}());
var MethodData = /** @class */ (function () {
function MethodData() {
this.params = [];
}
MethodData.prototype.getSignature = function () {
var sig = this.name + "(";
if (this.params.length > 0) {
sig += this.params[0].getSignature();
}
for (var i = 1; i < this.params.length; i++) {
sig += ", " + this.params[i].getSignature();
}
sig += ")";
if (this.returnType !== "void") {
sig += ": " + this.returnType;
}
return sig;
};
return MethodData;
}());
var ComponentDocAutoContent = /** @class */ (function () {
function ComponentDocAutoContent() {
this.inputs = [];
this.outputs = [];
}
ComponentDocAutoContent.prototype.extractClassInfoFromSource = function (checker, classDec) {
var sourceFile = classDec.getSourceFile();
for (var i = 0; i < classDec.members.length; i++) {
var member = classDec.members[i];
if (ts.isPropertyDeclaration(member) ||
ts.isGetAccessorDeclaration(member) ||
ts.isSetAccessorDeclaration(member)) {
var prop = member;
var mods = ts.getCombinedModifierFlags(prop);
var nonPrivate = (mods & ts.ModifierFlags.Private) === 0;
var memSymbol = checker.getSymbolAtLocation(prop.name);
if (nonPrivate && memSymbol && prop.decorators) {
var name_1 = memSymbol.getName();
var initializer = "";
if (prop.initializer) {
initializer = prop.initializer.getText(sourceFile);
}
var doc = ts.displayPartsToString(memSymbol.getDocumentationComment(checker));
doc = doc.replace(/\r\n/g, " ");
var propType = checker.typeToString(checker.getTypeOfSymbolAtLocation(memSymbol, memSymbol.valueDeclaration));
var dec = prop.decorators[0].getText(sourceFile);
if (dec.match(/@Input/)) {
this.inputs.push({
"name": name_1,
"type": propType,
"initializer": initializer,
"docText": doc
});
}
else if (dec.match(/@Output/)) {
this.outputs.push({
"name": name_1,
"type": propType,
"initializer": "",
"docText": doc
});
}
}
}
}
};
ComponentDocAutoContent.prototype.addContentToDoc = function (tree) {
var inTable = buildPropsTable(this.inputs);
var outTable = buildPropsTable(this.outputs, false);
if (inTable) {
heading(tree, "Properties", function (before, section, after) {
return [before, inTable, after];
});
}
if (outTable) {
heading(tree, "Events", function (before, section, after) {
return [before, outTable, after];
});
}
};
return ComponentDocAutoContent;
}());
var ServiceDocAutoContent = /** @class */ (function () {
function ServiceDocAutoContent() {
this.props = [];
this.methods = [];
}
ServiceDocAutoContent.prototype.extractClassInfoFromSource = function (checker, classDec) {
var sourceFile = classDec.getSourceFile();
for (var i = 0; i < classDec.members.length; i++) {
var member = classDec.members[i];
if (ts.isMethodDeclaration(member)) {
var method = member;
var mods = ts.getCombinedModifierFlags(method);
var nonPrivate = (mods & ts.ModifierFlags.Private) === 0;
var memSymbol = checker.getSymbolAtLocation(method.name);
if (nonPrivate && memSymbol) {
var methData = new MethodData();
methData.name = memSymbol.getName();
var doc = ts.displayPartsToString(memSymbol.getDocumentationComment());
methData.docText = doc.replace(/\r\n/g, " ");
var sig = checker.getSignatureFromDeclaration(method);
var returnType = sig.getReturnType();
methData.returnType = checker.typeToString(returnType);
var returnSymbol = returnType.getSymbol();
var params = method.parameters;
for (var p = 0; p < params.length; p++) {
var pData = new ParamData();
pData.name = params[p].name.getText();
pData.type = params[p].type.getText();
var paramSymbol = checker.getSymbolAtLocation(params[p].name);
pData.docText = ts.displayPartsToString(paramSymbol.getDocumentationComment());
pData.optional = params[p].questionToken ? true : false;
if (params[p].initializer) {
var initText = params[p].initializer.getText();
if (initText !== "undefined")
pData.initializer = initText;
}
methData.params.push(pData);
}
this.methods.push(methData);
}
}
}
};
ServiceDocAutoContent.prototype.addContentToDoc = function (tree) {
var propsTable = buildPropsTable(this.props);
var methodsList = buildMethodsList(this.methods);
if (propsTable) {
heading(tree, "Properties", function (before, section, after) {
return [before, propsTable, after];
});
}
if (methodsList) {
heading(tree, "Methods", function (before, section, after) {
return [before, methodsList, after];
});
}
};
return ServiceDocAutoContent;
}());
function updatePhase(tree, pathname, aggData) {
var fileNameNoSuffix = path.basename(pathname, ".md");
if (fileNameNoSuffix.match(/component/)) {
var itemType = fileNameNoSuffix.match(/component|service/);
if (itemType) {
var srcData = aggData.srcData[fileNameNoSuffix];
if (srcData) {
var srcPath = srcData.path;
var className = fixCompodocFilename(fileNameNoSuffix);
var inputs = [];
var outputs = [];
getPropDocData(path.resolve(".", srcPath), className, inputs, outputs);
var inTable_1 = buildInputsTable(inputs);
var outTable_1 = buildOutputsTable(outputs);
if (inTable_1) {
heading(tree, "Properties", function (before, section, after) {
return [before, inTable_1, after];
});
var className = fixAngularFilename(fileNameNoSuffix);
var classData = void 0;
if (itemType[0] === "component") {
classData = new ComponentDocAutoContent();
}
if (outTable_1) {
heading(tree, "Events", function (before, section, after) {
return [before, outTable_1, after];
});
else if (itemType[0] === "service") {
classData = new ServiceDocAutoContent();
}
getDocSourceData(path.resolve(".", srcPath), className, classData);
classData.addContentToDoc(tree);
}
return true;
}
@@ -48,7 +203,7 @@ exports.updatePhase = updatePhase;
function initialCap(str) {
return str[0].toUpperCase() + str.substr(1);
}
function fixCompodocFilename(rawName) {
function fixAngularFilename(rawName) {
var name = rawName.replace(/\]|\(|\)/g, '');
var fileNameSections = name.split('.');
var compNameSections = fileNameSections[0].split('-');
@@ -63,7 +218,7 @@ function fixCompodocFilename(rawName) {
var finalName = outCompName + itemTypeIndicator;
return finalName;
}
function getPropDocData(srcPath, docClassName, inputs, outputs) {
function getDocSourceData(srcPath, docClassName, classData) {
var prog = ts.createProgram([srcPath], {
target: ts.ScriptTarget.ES5, module: ts.ModuleKind.CommonJS
});
@@ -80,15 +235,15 @@ function getPropDocData(srcPath, docClassName, inputs, outputs) {
var classDec = node;
var sourceFile = classDec.getSourceFile();
if (classDec.name.escapedText === docClassName) {
getPropDataFromClassChain(checker, classDec, inputs, outputs);
getPropDataFromClassChain(checker, classDec, classData);
}
}
}
}
// Get properties/events from main class and all inherited classes.
function getPropDataFromClassChain(checker, classDec, inputs, outputs) {
function getPropDataFromClassChain(checker, classDec, classData) {
// Main class
getPropDataFromClass(checker, classDec, inputs, outputs);
classData.extractClassInfoFromSource(checker, classDec);
// Inherited classes
if (classDec.heritageClauses) {
for (var _i = 0, _a = classDec.heritageClauses; _i < _a.length; _i++) {
@@ -97,81 +252,38 @@ function getPropDataFromClassChain(checker, classDec, inputs, outputs) {
for (var _b = 0, _c = hcType.symbol.declarations; _b < _c.length; _b++) {
var dec = _c[_b];
if (typescript_1.isClassDeclaration(dec)) {
getPropDataFromClassChain(checker, dec, inputs, outputs);
getPropDataFromClassChain(checker, dec, classData);
}
}
}
}
}
function getPropDataFromClass(checker, classDec, inputs, outputs) {
var sourceFile = classDec.getSourceFile();
for (var i = 0; i < classDec.members.length; i++) {
var member = classDec.members[i];
if (ts.isPropertyDeclaration(member) ||
ts.isGetAccessorDeclaration(member) ||
ts.isSetAccessorDeclaration(member)) {
var prop = member;
var mods = ts.getCombinedModifierFlags(prop);
var nonPrivate = (mods & ts.ModifierFlags.Private) === 0;
var memSymbol = checker.getSymbolAtLocation(prop.name);
if (nonPrivate && memSymbol && prop.decorators) {
var name_1 = memSymbol.getName();
var initializer = "";
if (prop.initializer) {
initializer = prop.initializer.getText(sourceFile);
}
var doc = ts.displayPartsToString(memSymbol.getDocumentationComment(checker));
doc = doc.replace(/\r\n/g, " ");
var propType = checker.typeToString(checker.getTypeOfSymbolAtLocation(memSymbol, memSymbol.valueDeclaration));
var dec = prop.decorators[0].getText(sourceFile);
if (dec.match(/@Input/)) {
inputs.push({
"name": name_1,
"type": propType,
"init": initializer,
"docText": doc
});
}
else if (dec.match(/@Output/)) {
outputs.push({
"name": name_1,
"type": propType,
"docText": doc
});
}
}
}
}
}
function buildInputsTable(inputs) {
if (inputs.length === 0) {
function buildPropsTable(props, includeInitializer) {
if (includeInitializer === void 0) { includeInitializer = true; }
if (props.length === 0) {
return null;
}
var rows = [
unist.makeTableRow([
unist.makeTableCell([unist.makeText("Name")]),
unist.makeTableCell([unist.makeText("Type")]),
unist.makeTableCell([unist.makeText("Default value")]),
unist.makeTableCell([unist.makeText("Description")])
])
var headerCells = [
unist.makeTableCell([unist.makeText("Name")]),
unist.makeTableCell([unist.makeText("Type")])
];
for (var i = 0; i < inputs.length; i++) {
var pName = inputs[i].name;
var pType = inputs[i].type;
var pDefault = inputs[i].init || "";
var pDesc = inputs[i].docText || "";
if (includeInitializer)
headerCells.push(unist.makeTableCell([unist.makeText("Default value")]));
headerCells.push(unist.makeTableCell([unist.makeText("Description")]));
var rows = [
unist.makeTableRow(headerCells)
];
for (var i = 0; i < props.length; i++) {
var pName = props[i].name;
var pType = props[i].type;
var pDefault = props[i].initializer || "";
var pDesc = props[i].docText || "";
if (pDesc) {
//pDesc = pDesc.trim().replace(/[\n\r]+/, " ");
pDesc = pDesc.replace(/[\n\r]+/, " ");
}
var descCellContent = remark().parse(pDesc).children;
var defaultCellContent;
if (pDefault) {
/*
descCellContent.push(unist.makeHTML("<br/>"));
descCellContent.push(unist.makeText(" Default value: "));
descCellContent.push(unist.makeInlineCode(pDefault));
*/
defaultCellContent = unist.makeInlineCode(pDefault);
}
else {
@@ -179,41 +291,45 @@ function buildInputsTable(inputs) {
}
var cells = [
unist.makeTableCell([unist.makeText(pName)]),
unist.makeTableCell([unist.makeInlineCode(pType)]),
//unist.makeTableCell([unist.makeInlineCode(pDefault)]),
unist.makeTableCell([defaultCellContent]),
unist.makeTableCell(descCellContent)
unist.makeTableCell([unist.makeInlineCode(pType)])
];
if (includeInitializer)
cells.push(unist.makeTableCell([defaultCellContent]));
cells.push(unist.makeTableCell(descCellContent));
rows.push(unist.makeTableRow(cells));
}
return unist.makeTable([null, null, null, null], rows);
var spacers = [null, null, null];
if (includeInitializer)
spacers.push(null);
return unist.makeTable(spacers, rows);
}
function buildOutputsTable(outputs) {
if (outputs.length === 0) {
function buildMethodsList(methods) {
if (methods.length === 0)
return null;
}
var rows = [
unist.makeTableRow([
unist.makeTableCell([unist.makeText("Name")]),
unist.makeTableCell([unist.makeText("Type")]),
unist.makeTableCell([unist.makeText("Description")])
])
];
for (var i = 0; i < outputs.length; i++) {
var eName = outputs[i].name;
var eType = outputs[i].type;
var eDesc = outputs[i].docText || "";
if (eDesc) {
eDesc = eDesc.trim().replace(/[\n\r]+/, ' ');
var listItems = [];
for (var _i = 0, methods_1 = methods; _i < methods_1.length; _i++) {
var method = methods_1[_i];
var itemLines = [];
itemLines.push(unist.makeInlineCode(method.getSignature()));
itemLines.push(unist.makeBreak());
itemLines.push(unist.makeParagraph(remark().parse(method.docText).children));
itemLines.push(unist.makeBreak());
var paramListItems = [];
for (var _a = 0, _b = method.params; _a < _b.length; _a++) {
var param = _b[_a];
var currParamSections = [];
if (param.docText !== "") {
currParamSections.push(unist.makeInlineCode(param.name));
var optionalPart = param.optional ? "(Optional) " : "";
currParamSections.push(unist.makeText(" - " + optionalPart + param.docText));
//currParamSections.push(unist.makeBreak());
paramListItems.push(unist.makeListItem(unist.makeParagraph(currParamSections)));
}
}
var cells = [
unist.makeTableCell([unist.makeText(eName)]),
unist.makeTableCell([unist.makeInlineCode(eType)]),
unist.makeTableCell(remark().parse(eDesc).children)
];
rows.push(unist.makeTableRow(cells));
itemLines.push(unist.makeListUnordered(paramListItems));
listItems.push(unist.makeListItem(unist.makeParagraph(itemLines)));
}
return unist.makeTable([null, null, null], rows);
return unist.makeListUnordered(listItems);
}
function isNodeExported(node) {
return (ts.getCombinedModifierFlags(node) & ts.ModifierFlags.Export) !== 0 || (!!node.parent && node.parent.kind === ts.SyntaxKind.SourceFile);