123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- /**
- * @fileoverview Prevent usage of Array index in keys
- * @author Joe Lencioni
- */
- 'use strict';
- const has = require('has');
- const docsUrl = require('../util/docsUrl');
- // ------------------------------------------------------------------------------
- // 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')
- },
- schema: []
- },
- create: function(context) {
- // --------------------------------------------------------------------------
- // Public
- // --------------------------------------------------------------------------
- const indexParamNames = [];
- const iteratorFunctionsToIndexParamPosition = {
- every: 1,
- filter: 1,
- find: 1,
- findIndex: 1,
- forEach: 1,
- map: 1,
- reduce: 2,
- reduceRight: 2,
- some: 1
- };
- const ERROR_MESSAGE = 'Do not use Array index in keys';
- function isArrayIndex(node) {
- return node.type === 'Identifier'
- && indexParamNames.indexOf(node.name) !== -1;
- }
- function getMapIndexParamName(node) {
- const callee = node.callee;
- if (callee.type !== 'MemberExpression') {
- return null;
- }
- if (callee.property.type !== 'Identifier') {
- return null;
- }
- if (!has(iteratorFunctionsToIndexParamPosition, callee.property.name)) {
- return null;
- }
- const firstArg = node.arguments[0];
- if (!firstArg) {
- return null;
- }
- const isFunction = [
- 'ArrowFunctionExpression',
- 'FunctionExpression'
- ].indexOf(firstArg.type) !== -1;
- if (!isFunction) {
- return null;
- }
- const params = firstArg.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: node,
- message: ERROR_MESSAGE
- });
- return;
- }
- if (node.type === 'TemplateLiteral') {
- // key={`foo-${bar}`}
- node.expressions.filter(isArrayIndex).forEach(() => {
- context.report({node: node, message: ERROR_MESSAGE});
- });
- return;
- }
- if (node.type === 'BinaryExpression') {
- // key={'foo' + bar}
- const identifiers = getIdentifiersFromBinaryExpression(node);
- identifiers.filter(isArrayIndex).forEach(() => {
- context.report({node: node, message: ERROR_MESSAGE});
- });
- return;
- }
- }
- return {
- CallExpression: function(node) {
- if (
- node.callee
- && node.callee.type === 'MemberExpression'
- && ['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: function(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': function(node) {
- const mapIndexParamName = getMapIndexParamName(node);
- if (!mapIndexParamName) {
- return;
- }
- indexParamNames.pop();
- }
- };
- }
- };
|