Skip to content

New rule: jsx-one-expression-per-line #1497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Oct 30, 2017
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const allRules = {
'jsx-indent-props': require('./lib/rules/jsx-indent-props'),
'jsx-key': require('./lib/rules/jsx-key'),
'jsx-max-props-per-line': require('./lib/rules/jsx-max-props-per-line'),
'jsx-one-element-per-line': require('./lib/rules/jsx-one-element-per-line'),
'jsx-no-bind': require('./lib/rules/jsx-no-bind'),
'jsx-no-comment-textnodes': require('./lib/rules/jsx-no-comment-textnodes'),
'jsx-no-duplicate-props': require('./lib/rules/jsx-no-duplicate-props'),
Expand Down
107 changes: 107 additions & 0 deletions lib/rules/jsx-one-element-per-line.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
/**
* @fileoverview Limit to one element tag per line in JSX
* @author Mark Ivan Allen <Vydia.com>
*/

'use strict';

// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------

module.exports = {
meta: {
docs: {
description: 'Limit to one element tag per line in JSX',
category: 'Stylistic Issues',
recommended: false
},
fixable: 'whitespace',
schema: []
},

create: function (context) {
const sourceCode = context.getSourceCode();

function generateFixFunction(elementInLine) {
const nodeText = sourceCode.getText(elementInLine);

return function(fixer) {
return fixer.replaceText(elementInLine, `\n${nodeText}`);
};
}

function elementDoesOpenOrCloseOnLine (element, line) {
const reportableLines = [element.openingElement, element.closingElement].reduce((lines, el) => {
if (!el) {
return lines;
}

return lines.concat([el.loc.start.line, el.loc.end.line]);
}, []);


return reportableLines.indexOf(line) !== -1;
}

function anyElementDoesOpenOrCloseOnLine (elements, line) {
return elements.some(element => elementDoesOpenOrCloseOnLine(element, line));
}

return {
JSXOpeningElement: function (node) {
if (!node.parent) {
return;
}

const openingStartLine = node.loc.start.line;

// Parent
if (node.parent.parent && node.parent.parent.openingElement) {
const parentOpeningStartLine = node.parent.parent.openingElement.loc.end.line;

if (parentOpeningStartLine === openingStartLine) {
context.report({
node: node,
message: `Opening tag for Element \`${node.name.name}\` must be placed on a new line`,
fix: generateFixFunction(node)
});
}
}

// Siblings
if (node.parent.parent && node.parent.parent.children && node.parent.parent.children.length) {
const firstSiblingOnLine = node.parent.parent.children.find(sibling => (
sibling.type === 'JSXElement' && elementDoesOpenOrCloseOnLine(sibling, openingStartLine)
));

if (firstSiblingOnLine !== node.parent) {
context.report({
node: node,
message: `Opening tag for Element \`${node.name.name}\` must be placed on a new line`,
fix: generateFixFunction(node)
});
}
}
},

JSXClosingElement: function (node) {
if (!node.parent || !node.parent.children.length) {
return;
}

const closingElementStartLine = node.loc.end.line;

if (!anyElementDoesOpenOrCloseOnLine(node.parent.children, closingElementStartLine)) {
return;
}

context.report({
node: node,
message: `Closing tag for Element \`${node.name.name}\` must be placed on a new line`,
fix: generateFixFunction(node)
});
}
};
}
};
Loading