forked from jsx-eslint/eslint-plugin-react
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jsx-eslint#1462 from DianaSuvorova/i216
[destructuring-assignment] : new rule
- Loading branch information
Showing
5 changed files
with
470 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# Enforce consistent usage of destructuring assignment of props, state, and context (react/destructuring-assignment) | ||
|
||
Rule can be set to either of `always` or `never`; | ||
```js | ||
"react/destructuring-assignment": [<enabled>, 'always'] | ||
``` | ||
|
||
## Rule Details | ||
|
||
By default rule is set to `always` enforce destructuring assignment. The following patterns are considered warnings: | ||
|
||
```js | ||
const MyComponent = (props) => { | ||
return (<div id={props.id} />) | ||
}; | ||
``` | ||
|
||
```js | ||
const Foo = class extends React.PureComponent { | ||
render() { | ||
return <div>{this.context.foo}</div>; | ||
} | ||
}; | ||
``` | ||
|
||
Below pattern is correct: | ||
|
||
```js | ||
const MyComponent = ({id}) => { | ||
return (<div id={id} />) | ||
}; | ||
``` | ||
|
||
```js | ||
const MyComponent = (props, context) => { | ||
const { id } = props; | ||
return (<div id={id} />) | ||
}; | ||
``` | ||
|
||
```js | ||
const Foo = class extends React.PureComponent { | ||
render() { | ||
const { title } = this.context; | ||
return <div>{title}</div>; | ||
} | ||
}; | ||
``` | ||
|
||
If rule is set to `never`, the following patterns are considered warning: | ||
|
||
```js | ||
const MyComponent = ({id}) => { | ||
return (<div id={id} />) | ||
}; | ||
``` | ||
|
||
```js | ||
const MyComponent = (props) => { | ||
const { id } = props; | ||
return (<div id={id} />) | ||
}; | ||
``` | ||
|
||
```js | ||
const Foo = class extends React.PureComponent { | ||
render() { | ||
const { title } = this.state; | ||
return <div>{title}</div>; | ||
} | ||
}; | ||
``` | ||
|
||
and below pattern is correct: | ||
|
||
```js | ||
const MyComponent = (props) => { | ||
return (<div id={props.id} />) | ||
}; | ||
``` | ||
|
||
```js | ||
const Foo = class extends React.PureComponent { | ||
render() { | ||
return <div>{this.state.title}</div>; | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
/** | ||
* @fileoverview Enforce consistent usage of destructuring assignment of props, state, and context. | ||
**/ | ||
'use strict'; | ||
|
||
const Components = require('../util/Components'); | ||
|
||
const DEFAULT_OPTION = 'always'; | ||
|
||
module.exports = { | ||
meta: { | ||
docs: { | ||
description: 'Enforce consistent usage of destructuring assignment of props, state, and context', | ||
category: 'Stylistic Issues', | ||
recommended: false | ||
}, | ||
schema: [{ | ||
type: 'string', | ||
enum: [ | ||
'always', | ||
'never' | ||
] | ||
}] | ||
}, | ||
|
||
create: Components.detect((context, components, utils) => { | ||
const configuration = context.options[0] || DEFAULT_OPTION; | ||
|
||
|
||
/** | ||
* Checks if a prop is being assigned a value props.bar = 'bar' | ||
* @param {ASTNode} node The AST node being checked. | ||
* @returns {Boolean} | ||
*/ | ||
|
||
function isAssignmentToProp(node) { | ||
return ( | ||
node.parent && | ||
node.parent.type === 'AssignmentExpression' && | ||
node.parent.left === node | ||
); | ||
} | ||
/** | ||
* @param {ASTNode} node We expect either an ArrowFunctionExpression, | ||
* FunctionDeclaration, or FunctionExpression | ||
*/ | ||
function handleStatelessComponent(node) { | ||
const destructuringProps = node.params && node.params[0] && node.params[0].type === 'ObjectPattern'; | ||
const destructuringContext = node.params && node.params[1] && node.params[1].type === 'ObjectPattern'; | ||
|
||
if (destructuringProps && components.get(node) && configuration === 'never') { | ||
context.report({ | ||
node: node, | ||
message: 'Must never use destructuring props assignment in SFC argument' | ||
}); | ||
} else if (destructuringContext && components.get(node) && configuration === 'never') { | ||
context.report({ | ||
node: node, | ||
message: 'Must never use destructuring context assignment in SFC argument' | ||
}); | ||
} | ||
} | ||
|
||
function handleSFCUsage(node) { | ||
// props.aProp || context.aProp | ||
const isPropUsed = (node.object.name === 'props' || node.object.name === 'context') && !isAssignmentToProp(node); | ||
if (isPropUsed && configuration === 'always') { | ||
context.report({ | ||
node: node, | ||
message: `Must use destructuring ${node.object.name} assignment` | ||
}); | ||
} | ||
} | ||
|
||
function handleClassUsage(node) { | ||
// this.props.Aprop || this.context.aProp || this.state.aState | ||
const isPropUsed = (node.object.type === 'MemberExpression' && node.object.object.type === 'ThisExpression' && | ||
(node.object.property.name === 'props' || node.object.property.name === 'context' || node.object.property.name === 'state') && | ||
node.object.type === 'MemberExpression' | ||
); | ||
|
||
if (isPropUsed && configuration === 'always') { | ||
context.report({ | ||
node: node, | ||
message: `Must use destructuring ${node.object.property.name} assignment` | ||
}); | ||
} | ||
} | ||
|
||
return { | ||
|
||
FunctionDeclaration: handleStatelessComponent, | ||
|
||
ArrowFunctionExpression: handleStatelessComponent, | ||
|
||
FunctionExpression: handleStatelessComponent, | ||
|
||
MemberExpression: function(node) { | ||
const SFCComponent = components.get(context.getScope(node).block); | ||
const classComponent = utils.getParentComponent(node); | ||
if (SFCComponent) { | ||
handleSFCUsage(node); | ||
} | ||
if (classComponent) { | ||
handleClassUsage(node, classComponent); | ||
} | ||
}, | ||
|
||
VariableDeclarator: function(node) { | ||
const classComponent = utils.getParentComponent(node); | ||
const SFCComponent = components.get(context.getScope(node).block); | ||
|
||
const destructuring = (node.init && node.id && node.id.type === 'ObjectPattern'); | ||
// let {foo} = props; | ||
const destructuringSFC = destructuring && (node.init.name === 'props' || node.init.name === 'context'); | ||
// let {foo} = this.props; | ||
const destructuringClass = destructuring && node.init.object && node.init.object.type === 'ThisExpression' && ( | ||
node.init.property.name === 'props' || node.init.property.name === 'context' || node.init.property.name === 'state' | ||
); | ||
|
||
if (SFCComponent && destructuringSFC && configuration === 'never') { | ||
context.report({ | ||
node: node, | ||
message: `Must never use destructuring ${node.init.name} assignment` | ||
}); | ||
} | ||
|
||
if (classComponent && destructuringClass && configuration === 'never') { | ||
context.report({ | ||
node: node, | ||
message: `Must never use destructuring ${node.init.property.name} assignment` | ||
}); | ||
} | ||
} | ||
}; | ||
}) | ||
}; |
Oops, something went wrong.