123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- /**
- * @fileoverview Validate JSX indentation
- * @author Yannick Croissant
- * This rule has been ported and modified from eslint and nodeca.
- * @author Vitaly Puzrin
- * @author Gyandeep Singh
- * @copyright 2015 Vitaly Puzrin. All rights reserved.
- * @copyright 2015 Gyandeep Singh. All rights reserved.
- Copyright (C) 2014 by Vitaly Puzrin
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the 'Software'), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- 'use strict';
- const matchAll = require('string.prototype.matchall');
- const astUtil = require('../util/ast');
- const docsUrl = require('../util/docsUrl');
- // ------------------------------------------------------------------------------
- // Rule Definition
- // ------------------------------------------------------------------------------
- module.exports = {
- meta: {
- docs: {
- description: 'Validate JSX indentation',
- category: 'Stylistic Issues',
- recommended: false,
- url: docsUrl('jsx-indent')
- },
- fixable: 'whitespace',
- messages: {
- wrongIndent: 'Expected indentation of {{needed}} {{type}} {{characters}} but found {{gotten}}.'
- },
- schema: [{
- oneOf: [{
- enum: ['tab']
- }, {
- type: 'integer'
- }]
- }, {
- type: 'object',
- properties: {
- checkAttributes: {
- type: 'boolean'
- },
- indentLogicalExpressions: {
- type: 'boolean'
- }
- },
- additionalProperties: false
- }]
- },
- create(context) {
- const extraColumnStart = 0;
- let indentType = 'space';
- let indentSize = 4;
- if (context.options.length) {
- if (context.options[0] === 'tab') {
- indentSize = 1;
- indentType = 'tab';
- } else if (typeof context.options[0] === 'number') {
- indentSize = context.options[0];
- indentType = 'space';
- }
- }
- const indentChar = indentType === 'space' ? ' ' : '\t';
- const options = context.options[1] || {};
- const checkAttributes = options.checkAttributes || false;
- const indentLogicalExpressions = options.indentLogicalExpressions || false;
- /**
- * Responsible for fixing the indentation issue fix
- * @param {ASTNode} node Node violating the indent rule
- * @param {Number} needed Expected indentation character count
- * @returns {Function} function to be executed by the fixer
- * @private
- */
- function getFixerFunction(node, needed) {
- return function fix(fixer) {
- const indent = Array(needed + 1).join(indentChar);
- if (node.type === 'JSXText' || node.type === 'Literal') {
- const regExp = /\n[\t ]*(\S)/g;
- const fixedText = node.raw.replace(regExp, (match, p1) => `\n${indent}${p1}`);
- return fixer.replaceText(node, fixedText);
- }
- return fixer.replaceTextRange(
- [node.range[0] - node.loc.start.column, node.range[0]],
- indent
- );
- };
- }
- /**
- * Reports a given indent violation and properly pluralizes the message
- * @param {ASTNode} node Node violating the indent rule
- * @param {Number} needed Expected indentation character count
- * @param {Number} gotten Indentation character count in the actual node/code
- * @param {Object} [loc] Error line and column location
- */
- function report(node, needed, gotten, loc) {
- const msgContext = {
- needed,
- type: indentType,
- characters: needed === 1 ? 'character' : 'characters',
- gotten
- };
- context.report(Object.assign({
- node,
- messageId: 'wrongIndent',
- data: msgContext,
- fix: getFixerFunction(node, needed)
- }, loc && {loc}));
- }
- /**
- * Get node indent
- * @param {ASTNode} node Node to examine
- * @param {Boolean} [byLastLine] get indent of node's last line
- * @param {Boolean} [excludeCommas] skip comma on start of line
- * @return {Number} Indent
- */
- function getNodeIndent(node, byLastLine, excludeCommas) {
- byLastLine = byLastLine || false;
- excludeCommas = excludeCommas || false;
- let src = context.getSourceCode().getText(node, node.loc.start.column + extraColumnStart);
- const lines = src.split('\n');
- if (byLastLine) {
- src = lines[lines.length - 1];
- } else {
- src = lines[0];
- }
- const skip = excludeCommas ? ',' : '';
- let regExp;
- if (indentType === 'space') {
- regExp = new RegExp(`^[ ${skip}]+`);
- } else {
- regExp = new RegExp(`^[\t${skip}]+`);
- }
- const indent = regExp.exec(src);
- return indent ? indent[0].length : 0;
- }
- /**
- * Check if the node is the right member of a logical expression
- * @param {ASTNode} node The node to check
- * @return {Boolean} true if its the case, false if not
- */
- function isRightInLogicalExp(node) {
- return (
- node.parent
- && node.parent.parent
- && node.parent.parent.type === 'LogicalExpression'
- && node.parent.parent.right === node.parent
- && !indentLogicalExpressions
- );
- }
- /**
- * Check if the node is the alternate member of a conditional expression
- * @param {ASTNode} node The node to check
- * @return {Boolean} true if its the case, false if not
- */
- function isAlternateInConditionalExp(node) {
- return (
- node.parent
- && node.parent.parent
- && node.parent.parent.type === 'ConditionalExpression'
- && node.parent.parent.alternate === node.parent
- && context.getSourceCode().getTokenBefore(node).value !== '('
- );
- }
- /**
- * Check if the node is within a DoExpression block but not the first expression (which need to be indented)
- * @param {ASTNode} node The node to check
- * @return {Boolean} true if its the case, false if not
- */
- function isSecondOrSubsequentExpWithinDoExp(node) {
- /*
- It returns true when node.parent.parent.parent.parent matches:
- DoExpression({
- ...,
- body: BlockStatement({
- ...,
- body: [
- ..., // 1-n times
- ExpressionStatement({
- ...,
- expression: JSXElement({
- ...,
- openingElement: JSXOpeningElement() // the node
- })
- }),
- ... // 0-n times
- ]
- })
- })
- except:
- DoExpression({
- ...,
- body: BlockStatement({
- ...,
- body: [
- ExpressionStatement({
- ...,
- expression: JSXElement({
- ...,
- openingElement: JSXOpeningElement() // the node
- })
- }),
- ... // 0-n times
- ]
- })
- })
- */
- const isInExpStmt = (
- node.parent
- && node.parent.parent
- && node.parent.parent.type === 'ExpressionStatement'
- );
- if (!isInExpStmt) {
- return false;
- }
- const expStmt = node.parent.parent;
- const isInBlockStmtWithinDoExp = (
- expStmt.parent
- && expStmt.parent.type === 'BlockStatement'
- && expStmt.parent.parent
- && expStmt.parent.parent.type === 'DoExpression'
- );
- if (!isInBlockStmtWithinDoExp) {
- return false;
- }
- const blockStmt = expStmt.parent;
- const blockStmtFirstExp = blockStmt.body[0];
- return !(blockStmtFirstExp === expStmt);
- }
- /**
- * Check indent for nodes list
- * @param {ASTNode} node The node to check
- * @param {Number} indent needed indent
- * @param {Boolean} [excludeCommas] skip comma on start of line
- */
- function checkNodesIndent(node, indent, excludeCommas) {
- const nodeIndent = getNodeIndent(node, false, excludeCommas);
- const isCorrectRightInLogicalExp = isRightInLogicalExp(node) && (nodeIndent - indent) === indentSize;
- const isCorrectAlternateInCondExp = isAlternateInConditionalExp(node) && (nodeIndent - indent) === 0;
- if (
- nodeIndent !== indent
- && astUtil.isNodeFirstInLine(context, node)
- && !isCorrectRightInLogicalExp
- && !isCorrectAlternateInCondExp
- ) {
- report(node, indent, nodeIndent);
- }
- }
- /**
- * Check indent for Literal Node or JSXText Node
- * @param {ASTNode} node The node to check
- * @param {Number} indent needed indent
- */
- function checkLiteralNodeIndent(node, indent) {
- const value = node.value;
- const regExp = indentType === 'space' ? /\n( *)[\t ]*\S/g : /\n(\t*)[\t ]*\S/g;
- const nodeIndentsPerLine = Array.from(
- matchAll(String(value), regExp),
- (match) => (match[1] ? match[1].length : 0)
- );
- const hasFirstInLineNode = nodeIndentsPerLine.length > 0;
- if (
- hasFirstInLineNode
- && !nodeIndentsPerLine.every((actualIndent) => actualIndent === indent)
- ) {
- nodeIndentsPerLine.forEach((nodeIndent) => {
- report(node, indent, nodeIndent);
- });
- }
- }
- function handleOpeningElement(node) {
- const sourceCode = context.getSourceCode();
- let prevToken = sourceCode.getTokenBefore(node);
- if (!prevToken) {
- return;
- }
- // Use the parent in a list or an array
- if (prevToken.type === 'JSXText' || ((prevToken.type === 'Punctuator') && prevToken.value === ',')) {
- prevToken = sourceCode.getNodeByRangeIndex(prevToken.range[0]);
- prevToken = prevToken.type === 'Literal' || prevToken.type === 'JSXText' ? prevToken.parent : prevToken;
- // Use the first non-punctuator token in a conditional expression
- } else if (prevToken.type === 'Punctuator' && prevToken.value === ':') {
- do {
- prevToken = sourceCode.getTokenBefore(prevToken);
- } while (prevToken.type === 'Punctuator' && prevToken.value !== '/');
- prevToken = sourceCode.getNodeByRangeIndex(prevToken.range[0]);
- while (prevToken.parent && prevToken.parent.type !== 'ConditionalExpression') {
- prevToken = prevToken.parent;
- }
- }
- prevToken = prevToken.type === 'JSXExpressionContainer' ? prevToken.expression : prevToken;
- const parentElementIndent = getNodeIndent(prevToken);
- const indent = (
- prevToken.loc.start.line === node.loc.start.line
- || isRightInLogicalExp(node)
- || isAlternateInConditionalExp(node)
- || isSecondOrSubsequentExpWithinDoExp(node)
- ) ? 0 : indentSize;
- checkNodesIndent(node, parentElementIndent + indent);
- }
- function handleClosingElement(node) {
- if (!node.parent) {
- return;
- }
- const peerElementIndent = getNodeIndent(node.parent.openingElement || node.parent.openingFragment);
- checkNodesIndent(node, peerElementIndent);
- }
- function handleAttribute(node) {
- if (!checkAttributes || (!node.value || node.value.type !== 'JSXExpressionContainer')) {
- return;
- }
- const nameIndent = getNodeIndent(node.name);
- const lastToken = context.getSourceCode().getLastToken(node.value);
- const firstInLine = astUtil.getFirstNodeInLine(context, lastToken);
- const indent = node.name.loc.start.line === firstInLine.loc.start.line ? 0 : nameIndent;
- checkNodesIndent(firstInLine, indent);
- }
- function handleLiteral(node) {
- if (!node.parent) {
- return;
- }
- if (node.parent.type !== 'JSXElement' && node.parent.type !== 'JSXFragment') {
- return;
- }
- const parentNodeIndent = getNodeIndent(node.parent);
- checkLiteralNodeIndent(node, parentNodeIndent + indentSize);
- }
- return {
- JSXOpeningElement: handleOpeningElement,
- JSXOpeningFragment: handleOpeningElement,
- JSXClosingElement: handleClosingElement,
- JSXClosingFragment: handleClosingElement,
- JSXAttribute: handleAttribute,
- JSXExpressionContainer(node) {
- if (!node.parent) {
- return;
- }
- const parentNodeIndent = getNodeIndent(node.parent);
- checkNodesIndent(node, parentNodeIndent + indentSize);
- },
- Literal: handleLiteral,
- JSXText: handleLiteral
- };
- }
- };
|