"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _iterateJsdoc = _interopRequireDefault(require("../iterateJsdoc")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } const validateParameterNames = (targetTagName, allowExtraTrailingParamDocs, checkDestructured, checkRestProperty, checkTypesRegex, enableFixer, functionParameterNames, jsdoc, _jsdocNode, utils, report) => { const paramTags = Object.entries(jsdoc.tags).filter(([, tag]) => { return tag.tag === targetTagName; }); const paramTagsNonNested = paramTags.filter(([, tag]) => { return !tag.name.includes('.'); }); let dotted = 0; return paramTags.some(([, tag], index) => { let tagsIndex; const dupeTagInfo = paramTags.find(([tgsIndex, tg], idx) => { tagsIndex = tgsIndex; return tg.name === tag.name && idx !== index; }); if (dupeTagInfo) { utils.reportJSDoc(`Duplicate @${targetTagName} "${tag.name}"`, dupeTagInfo[1], enableFixer ? () => { jsdoc.tags.splice(tagsIndex, 1); } : null); return true; } if (tag.name.includes('.')) { dotted++; return false; } const functionParameterName = functionParameterNames[index - dotted]; if (!functionParameterName) { if (allowExtraTrailingParamDocs) { return false; } report(`@${targetTagName} "${tag.name}" does not match an existing function parameter.`, null, tag); return true; } if (Array.isArray(functionParameterName)) { if (!checkDestructured) { return false; } if (tag.type && tag.type.search(checkTypesRegex) === -1) { return false; } const [parameterName, { names: properties, hasPropertyRest, rests, annotationParamName }] = functionParameterName; if (annotationParamName !== undefined) { const name = tag.name.trim(); if (name !== annotationParamName) { report(`@${targetTagName} "${name}" does not match parameter name "${annotationParamName}"`, null, tag); } } const tagName = parameterName === undefined ? tag.name.trim() : parameterName; const expectedNames = properties.map(name => { return `${tagName}.${name}`; }); const actualNames = paramTags.map(([, paramTag]) => { return paramTag.name.trim(); }); const actualTypes = paramTags.map(([, paramTag]) => { return paramTag.type; }); const missingProperties = []; const notCheckingNames = []; expectedNames.forEach((name, idx) => { if (notCheckingNames.some(notCheckingName => { return name.startsWith(notCheckingName); })) { return; } const actualNameIdx = actualNames.findIndex(actualName => { return utils.comparePaths(name)(actualName); }); if (actualNameIdx === -1) { if (!checkRestProperty && rests[idx]) { return; } missingProperties.push(name); } else if (actualTypes[actualNameIdx].search(checkTypesRegex) === -1 && actualTypes[actualNameIdx] !== '') { notCheckingNames.push(name); } }); const extraProperties = []; if (!hasPropertyRest || checkRestProperty) { actualNames.forEach((name, idx) => { const match = name.startsWith(tag.name.trim() + '.'); if (match && !expectedNames.some(utils.comparePaths(name)) && !utils.comparePaths(name)(tag.name)) { extraProperties.push([name, paramTags[idx][1]]); } }); } const hasMissing = missingProperties.length; if (hasMissing) { missingProperties.forEach(missingProperty => { report(`Missing @${targetTagName} "${missingProperty}"`, null, tag); }); } if (extraProperties.length) { extraProperties.forEach(([extraProperty, tg]) => { report(`@${targetTagName} "${extraProperty}" does not exist on ${tag.name}`, null, tg); }); return true; } return hasMissing; } let funcParamName; if (typeof functionParameterName === 'object') { const { name } = functionParameterName; funcParamName = name; } else { funcParamName = functionParameterName; } if (funcParamName !== tag.name.trim()) { // Todo: Improve for array or object child items const actualNames = paramTagsNonNested.map(([, { name }]) => { return name.trim(); }); const expectedNames = functionParameterNames.map((item, idx) => { var _item$; if (item === null || item === void 0 ? void 0 : (_item$ = item[1]) === null || _item$ === void 0 ? void 0 : _item$.names) { return actualNames[idx]; } return item; }).join(', '); report(`Expected @${targetTagName} names to be "${expectedNames}". Got "${actualNames.join(', ')}".`, null, tag); return true; } return false; }); }; const validateParameterNamesDeep = (targetTagName, _allowExtraTrailingParamDocs, jsdocParameterNames, jsdoc, report) => { let lastRealParameter; return jsdocParameterNames.some(({ name: jsdocParameterName, idx }) => { const isPropertyPath = jsdocParameterName.includes('.'); if (isPropertyPath) { if (!lastRealParameter) { report(`@${targetTagName} path declaration ("${jsdocParameterName}") appears before any real parameter.`, null, jsdoc.tags[idx]); return true; } let pathRootNodeName = jsdocParameterName.slice(0, jsdocParameterName.indexOf('.')); if (pathRootNodeName.endsWith('[]')) { pathRootNodeName = pathRootNodeName.slice(0, -2); } if (pathRootNodeName !== lastRealParameter) { report(`@${targetTagName} path declaration ("${jsdocParameterName}") root node name ("${pathRootNodeName}") ` + `does not match previous real parameter name ("${lastRealParameter}").`, null, jsdoc.tags[idx]); return true; } } else { lastRealParameter = jsdocParameterName; } return false; }); }; var _default = (0, _iterateJsdoc.default)(({ context, jsdoc, jsdocNode, report, utils }) => { const { allowExtraTrailingParamDocs, checkDestructured = true, checkRestProperty = false, checkTypesPattern = '/^(?:[oO]bject|[aA]rray|PlainObject|Generic(?:Object|Array))$/', enableFixer = false } = context.options[0] || {}; const lastSlashPos = checkTypesPattern.lastIndexOf('/'); const checkTypesRegex = lastSlashPos === -1 ? new RegExp(checkTypesPattern) : new RegExp(checkTypesPattern.slice(1, lastSlashPos), checkTypesPattern.slice(lastSlashPos + 1)); const jsdocParameterNamesDeep = utils.getJsdocTagsDeep('param'); if (!jsdocParameterNamesDeep.length) { return; } const functionParameterNames = utils.getFunctionParameterNames(); const targetTagName = utils.getPreferredTagName({ tagName: 'param' }); const isError = validateParameterNames(targetTagName, allowExtraTrailingParamDocs, checkDestructured, checkRestProperty, checkTypesRegex, enableFixer, functionParameterNames, jsdoc, jsdocNode, utils, report); if (isError || !checkDestructured) { return; } validateParameterNamesDeep(targetTagName, allowExtraTrailingParamDocs, jsdocParameterNamesDeep, jsdoc, report); }, { meta: { docs: { description: 'Ensures that parameter names in JSDoc match those in the function declaration.', url: 'https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-check-param-names' }, fixable: 'code', schema: [{ additionalProperties: false, properties: { allowExtraTrailingParamDocs: { type: 'boolean' }, checkDestructured: { type: 'boolean' }, checkRestProperty: { type: 'boolean' }, checkTypesPattern: { type: 'string' }, enableFixer: { type: 'boolean' } }, type: 'object' }], type: 'suggestion' } }); exports.default = _default; module.exports = exports.default; //# sourceMappingURL=checkParamNames.js.map