eslint-plugin-ember
Version:
Eslint plugin for Ember.js apps
94 lines (74 loc) • 2.8 kB
JavaScript
;
const types = require('../utils/types');
const ember = require('../utils/ember');
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
const ERROR_MESSAGE = 'Do not provide unnecessary `path` option which matches the route name.';
module.exports = {
meta: {
docs: {
description: 'Disallow unnecessary route `path` option',
category: 'Best Practices',
recommended: true,
},
fixable: 'code',
},
ERROR_MESSAGE,
create(context) {
return {
CallExpression(node) {
if (!ember.isRoute(node)) {
return;
}
const hasExplicitPathOption =
types.isObjectExpression(node.arguments[1]) &&
hasPropertyWithKeyName(node.arguments[1], 'path');
if (!hasExplicitPathOption) {
return;
}
const pathOptionNode = getPropertyByKeyName(node.arguments[1], 'path');
const pathOptionValue = pathOptionNode.value.value;
const routeName = node.arguments[0].value;
if (pathMatchesRouteName(pathOptionValue, routeName)) {
context.report({
node: pathOptionNode,
message: ERROR_MESSAGE,
fix(fixer) {
const sourceCode = context.getSourceCode();
// If the `path` option is the only property in the object, remove the entire object.
const shouldRemoveObject = node.arguments[1].properties.length === 1;
const nodeToRemove = shouldRemoveObject ? node.arguments[1] : pathOptionNode;
return removeCommaSeparatedNode(nodeToRemove, sourceCode, fixer);
},
});
}
},
};
},
};
function hasPropertyWithKeyName(objectExpression, keyName) {
return getPropertyByKeyName(objectExpression, keyName) !== undefined;
}
function getPropertyByKeyName(objectExpression, keyName) {
return objectExpression.properties.find(property => property.key.name === keyName);
}
function pathMatchesRouteName(path, routeName) {
if (!path || !routeName) {
return false;
}
const pathWithoutOptionalLeadingSlash = path.substring(0, 1) === '/' ? path.substring(1) : path;
return pathWithoutOptionalLeadingSlash === routeName;
}
function removeCommaSeparatedNode(node, sourceCode, fixer) {
const tokenBefore = sourceCode.getTokenBefore(node);
const tokenAfter = sourceCode.getTokenAfter(node);
const removeComma = isCommaToken(tokenAfter)
? fixer.remove(tokenAfter)
: fixer.remove(tokenBefore);
const removeNode = fixer.remove(node);
return [removeComma, removeNode];
}
function isCommaToken(token) {
return token.value === ',' && token.type === 'Punctuator';
}