123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- /**
- * @fileoverview Prevent usage of Array index in keys
- * @author Joe Lencioni
- */
- 'use strict';
- const has = require('has');
- const astUtil = require('../util/ast');
- const docsUrl = require('../util/docsUrl');
- const pragma = require('../util/pragma');
- // ------------------------------------------------------------------------------
- // Rule Definition
- // ------------------------------------------------------------------------------
- module.exports = {
- meta: {
- docs: {
- description: 'Prevent usage of Array index in keys',
- category: 'Best Practices',
- recommended: false,
- url: docsUrl('no-array-index-key')
- },
- messages: {
- noArrayIndex: 'Do not use Array index in keys'
- },
- schema: []
- },
- create(context) {
- // --------------------------------------------------------------------------
- // Public
- // --------------------------------------------------------------------------
- const indexParamNames = [];
- const iteratorFunctionsToIndexParamPosition = {
- every: 1,
- filter: 1,
- find: 1,
- findIndex: 1,
- forEach: 1,
- map: 1,
- reduce: 2,
- reduceRight: 2,
- some: 1
- };
- function isArrayIndex(node) {
- return node.type === 'Identifier'
- && indexParamNames.indexOf(node.name) !== -1;
- }
- function isUsingReactChildren(node) {
- const callee = node.callee;
- if (
- !callee
- || !callee.property
- || !callee.object
- ) {
- return null;
- }
- const isReactChildMethod = ['map', 'forEach'].indexOf(callee.property.name) > -1;
- if (!isReactChildMethod) {
- return null;
- }
- const obj = callee.object;
- if (obj && obj.name === 'Children') {
- return true;
- }
- if (obj && obj.object && obj.object.name === pragma.getFromContext(context)) {
- return true;
- }
- return false;
- }
- function getMapIndexParamName(node) {
- const callee = node.callee;
- if (callee.type !== 'MemberExpression' && callee.type !== 'OptionalMemberExpression') {
- return null;
- }
- if (callee.property.type !== 'Identifier') {
- return null;
- }
- if (!has(iteratorFunctionsToIndexParamPosition, callee.property.name)) {
- return null;
- }
- const callbackArg = isUsingReactChildren(node)
- ? node.arguments[1]
- : node.arguments[0];
- if (!callbackArg) {
- return null;
- }
- if (!astUtil.isFunctionLikeExpression(callbackArg)) {
- return null;
- }
- const params = callbackArg.params;
- const indexParamPosition = iteratorFunctionsToIndexParamPosition[callee.property.name];
- if (params.length < indexParamPosition + 1) {
- return null;
- }
- return params[indexParamPosition].name;
- }
- function getIdentifiersFromBinaryExpression(side) {
- if (side.type === 'Identifier') {
- return side;
- }
- if (side.type === 'BinaryExpression') {
- // recurse
- const left = getIdentifiersFromBinaryExpression(side.left);
- const right = getIdentifiersFromBinaryExpression(side.right);
- return [].concat(left, right).filter(Boolean);
- }
- return null;
- }
- function checkPropValue(node) {
- if (isArrayIndex(node)) {
- // key={bar}
- context.report({
- node,
- messageId: 'noArrayIndex'
- });
- return;
- }
- if (node.type === 'TemplateLiteral') {
- // key={`foo-${bar}`}
- node.expressions.filter(isArrayIndex).forEach(() => {
- context.report({node, messageId: 'noArrayIndex'});
- });
- return;
- }
- if (node.type === 'BinaryExpression') {
- // key={'foo' + bar}
- const identifiers = getIdentifiersFromBinaryExpression(node);
- identifiers.filter(isArrayIndex).forEach(() => {
- context.report({node, messageId: 'noArrayIndex'});
- });
- }
- }
- function popIndex(node) {
- const mapIndexParamName = getMapIndexParamName(node);
- if (!mapIndexParamName) {
- return;
- }
- indexParamNames.pop();
- }
- return {
- 'CallExpression, OptionalCallExpression'(node) {
- if (
- node.callee
- && (node.callee.type === 'MemberExpression' || node.callee.type === 'OptionalMemberExpression')
- && ['createElement', 'cloneElement'].indexOf(node.callee.property.name) !== -1
- && node.arguments.length > 1
- ) {
- // React.createElement
- if (!indexParamNames.length) {
- return;
- }
- const props = node.arguments[1];
- if (props.type !== 'ObjectExpression') {
- return;
- }
- props.properties.forEach((prop) => {
- if (!prop.key || prop.key.name !== 'key') {
- // { ...foo }
- // { foo: bar }
- return;
- }
- checkPropValue(prop.value);
- });
- return;
- }
- const mapIndexParamName = getMapIndexParamName(node);
- if (!mapIndexParamName) {
- return;
- }
- indexParamNames.push(mapIndexParamName);
- },
- JSXAttribute(node) {
- if (node.name.name !== 'key') {
- // foo={bar}
- return;
- }
- if (!indexParamNames.length) {
- // Not inside a call expression that we think has an index param.
- return;
- }
- const value = node.value;
- if (!value || value.type !== 'JSXExpressionContainer') {
- // key='foo' or just simply 'key'
- return;
- }
- checkPropValue(value.expression);
- },
- 'CallExpression:exit': popIndex,
- 'OptionalCallExpression:exit': popIndex
- };
- }
- };
|