Skip to content

Commit

Permalink
Merge pull request #72 from AlexKVal/38_sort_propTypes
Browse files Browse the repository at this point in the history
Add jsx-sort-prop-types rule (fixes #38)
  • Loading branch information
yannickcr committed Apr 21, 2015
2 parents 76d5cd4 + 4c1a524 commit a8737b5
Show file tree
Hide file tree
Showing 5 changed files with 509 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Finally, enable all of the rules that you would like to use.
"react/jsx-quotes": 1,
"react/jsx-no-undef": 1,
"react/jsx-sort-props": 1,
"react/jsx-sort-prop-types": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-did-mount-set-state": 1,
Expand All @@ -68,6 +69,7 @@ Finally, enable all of the rules that you would like to use.
* [jsx-quotes](docs/rules/jsx-quotes.md): Enforce quote style for JSX attributes
* [jsx-no-undef](docs/rules/jsx-no-undef.md): Disallow undeclared variables in JSX
* [jsx-sort-props](docs/rules/jsx-sort-props.md): Enforce props alphabetical sorting
* [jsx-sort-prop-types](docs/rules/jsx-sort-prop-types.md): Enforce propTypes declarations alphabetical sorting
* [jsx-uses-react](docs/rules/jsx-uses-react.md): Prevent React to be incorrectly marked as unused
* [jsx-uses-vars](docs/rules/jsx-uses-vars.md): Prevent variables used in JSX to be incorrectly marked as unused
* [no-did-mount-set-state](docs/rules/no-did-mount-set-state.md): Prevent usage of setState in componentDidMount
Expand Down Expand Up @@ -111,4 +113,3 @@ ESLint-plugin-React is licensed under the [MIT License](http://www.opensource.or

[status-url]: https://github.com/yannickcr/eslint-plugin-react/pulse
[status-image]: http://img.shields.io/badge/status-maintained-brightgreen.svg?style=flat-square

91 changes: 91 additions & 0 deletions docs/rules/jsx-sort-prop-types.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
# Enforce propTypes declarations alphabetical sorting (jsx-sort-prop-types)

Some developers prefer to sort propsTypes declarations alphabetically to be able to find necessary declaration easier at the later time. Others feel that it adds complexity and becomes burden to maintain.

## Rule Details

This rule checks all JSX components and verifies that all propsTypes declarations are sorted alphabetically.
The default configuration of the rule is case-sensitive.
This rule is off by default.

The following patterns are considered warnings:

```js
var Component = React.createClass({
propTypes: {
z: React.PropTypes.number,
a: React.PropTypes.any,
b: React.PropTypes.string
},
...
});

class Component extends React.Component {
...
}
Component.propTypes = {
z: React.PropTypes.number,
a: React.PropTypes.any,
b: React.PropTypes.string
};

class Component extends React.Component {
static propTypes = {
z: React.PropTypes.any,
y: React.PropTypes.any,
a: React.PropTypes.any
}
render() {
return <div />;
}
}
```

The following patterns are considered okay and do not cause warnings:

```js
var Component = React.createClass({
propTypes: {
a: React.PropTypes.number,
b: React.PropTypes.any,
c: React.PropTypes.string
},
...
});

class Component extends React.Component {
...
}
Component.propTypes = {
a: React.PropTypes.string,
b: React.PropTypes.any,
c: React.PropTypes.string
};

class Component extends React.Component {
static propTypes = {
a: React.PropTypes.any,
b: React.PropTypes.any,
c: React.PropTypes.any
}
render() {
return <div />;
}
}
```

## Rule Options

```js
...
"jsx-sort-prop-types": [<enabled>, { "ignoreCase": <boolean> }]
...
```

### `ignoreCase`

When `true` the rule ignores the case-sensitivity of the declarations order.

## When not to use

This rule is a formatting preference and not following it won't negatively affect the quality of your code. If alphabetizing props declarations isn't a part of your coding standards, then you can leave this rule off.
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module.exports = {
'jsx-quotes': require('./lib/rules/jsx-quotes'),
'no-unknown-property': require('./lib/rules/no-unknown-property'),
'jsx-sort-props': require('./lib/rules/jsx-sort-props'),
'jsx-sort-prop-types': require('./lib/rules/jsx-sort-prop-types'),
'jsx-boolean-value': require('./lib/rules/jsx-boolean-value')
},
rulesConfig: {
Expand All @@ -33,6 +34,7 @@ module.exports = {
'jsx-quotes': 0,
'no-unknown-property': 0,
'jsx-sort-props': 0,
'jsx-sort-prop-types': 0,
'jsx-boolean-value': 0
}
};
90 changes: 90 additions & 0 deletions lib/rules/jsx-sort-prop-types.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
/**
* @fileoverview Enforce propTypes declarations alphabetical sorting
*/
'use strict';

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

module.exports = function(context) {

var configuration = context.options[0] || {};
var ignoreCase = configuration.ignoreCase || false;

/**
* Checks if node is `propTypes` declaration
* @param {ASTNode} node The AST node being checked.
* @returns {Boolean} True if node is `propTypes` declaration, false if not.
*/
function isPropTypesDeclaration(node) {

// Special case for class properties
// (babel-eslint does not expose property name so we have to rely on tokens)
if (node.type === 'ClassProperty') {
var tokens = context.getFirstTokens(node, 2);
if (tokens[0].value === 'propTypes' || tokens[1].value === 'propTypes') {
return true;
}
return false;
}

return Boolean(
node &&
node.name === 'propTypes'
);
}

/**
* Checks if propTypes declarations are sorted
* @param {Array} declarations The array of AST nodes being checked.
* @returns {void}
*/
function checkSorted(declarations) {
declarations.reduce(function(prev, curr) {
var prevPropName = prev.key.name;
var currenPropName = curr.key.name;

if (ignoreCase) {
prevPropName = prevPropName.toLowerCase();
currenPropName = currenPropName.toLowerCase();
}

if (currenPropName < prevPropName) {
context.report(curr, 'Prop types declarations should be sorted alphabetically');
return prev;
}

return curr;
}, declarations[0]);
}

return {
ClassProperty: function(node) {
if (isPropTypesDeclaration(node) && node.value.type === 'ObjectExpression') {
checkSorted(node.value.properties);
}
},

MemberExpression: function(node) {
if (isPropTypesDeclaration(node.property)) {
var right = node.parent.right;
if (right && right.type === 'ObjectExpression') {
checkSorted(right.properties);
}
}
},

ObjectExpression: function(node) {
node.properties.forEach(function(property) {
if (!isPropTypesDeclaration(property.key)) {
return;
}
if (property.value.type === 'ObjectExpression') {
checkSorted(property.value.properties);
}
});
}

};
};
Loading

0 comments on commit a8737b5

Please sign in to comment.