documentation
Version:
a documentation generator
105 lines (92 loc) • 3.52 kB
JavaScript
;
var _parse_to_ast = require('./parse_to_ast');
const _ = require('lodash');
const t = require('babel-types');
const parse = require('../parse');
const walkComments = require('../extractors/comments');
const walkExported = require('../extractors/exported');
const util = require('util');
const debuglog = util.debuglog('documentation');
const findTarget = require('../infer/finders').findTarget;
/**
* Left-pad a string so that it can be sorted lexicographically. We sort
* comments to keep them in order.
* @param {string} str the string
* @param {number} width the width to pad to
* @returns {string} a padded string with the correct width
* @private
*/
function leftPad(str, width) {
str = str.toString();
while (str.length < width) {
str = '0' + str;
}
return str;
}
/**
* Receives a module-dep item,
* reads the file, parses the JavaScript, and parses the JSDoc.
*
* @param {Object} data a chunk of data provided by module-deps
* @param {Object} config config
* @returns {Array<Object>} an array of parsed comments
*/
function parseJavaScript(data, config) {
const visited = new Set();
const commentsByNode = new Map();
const ast = (0, _parse_to_ast.parseToAst)(data.source);
const addComment = _addComment.bind(null, visited, commentsByNode);
return _.flatMap(config.documentExported ? [walkExported] : [walkComments.bind(null, 'leadingComments', true), walkComments.bind(null, 'innerComments', false), walkComments.bind(null, 'trailingComments', false)], fn => fn(ast, data, addComment)).filter(comment => comment && !comment.lends);
}
function _addComment(visited, commentsByNode, data, commentValue, commentLoc, path, nodeLoc, includeContext) {
// Avoid visiting the same comment twice as a leading
// and trailing node
const key = data.file + ':' + commentLoc.start.line + ':' + commentLoc.start.column;
if (!visited.has(key)) {
visited.add(key);
const context /* : {
loc: Object,
file: string,
sortKey: string,
ast?: Object,
code?: string
}*/ = {
loc: nodeLoc,
file: data.file,
sortKey: data.sortKey + ' ' + leftPad(nodeLoc.start.line, 8)
};
if (includeContext) {
// This is non-enumerable so that it doesn't get stringified in
// output; e.g. by the documentation binary.
Object.defineProperty(context, 'ast', {
configurable: true,
enumerable: false,
value: path
});
if (path.parentPath && path.parentPath.node) {
const parentNode = path.parentPath.node;
context.code = data.source.substring(parentNode.start, parentNode.end);
}
}
const comment = parse(commentValue, commentLoc, context);
if (includeContext) {
commentsByNode.set((findTarget(path) || path).node, comment);
if (t.isClassMethod(path) && path.node.kind === 'constructor') {
// #689
if (comment.tags.some(tag => tag.title !== 'param' && tag.title !== 'hideconstructor')) {
debuglog('A constructor was documented explicitly: document along with the class instead');
}
const parentComment = commentsByNode.get(path.parentPath.parentPath.node);
if (parentComment) {
parentComment.constructorComment = comment;
return;
}
if (comment.hideconstructor) {
return;
}
}
}
return comment;
}
}
module.exports = parseJavaScript;