-
-
Notifications
You must be signed in to change notification settings - Fork 666
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
vue/no-ref-object-destructure
rule (#1965)
* Add `vue/no-ref-object-destructure` rule * add test cases * fix test case * Apply suggestions from code review Co-authored-by: Flo Edelmann <florian-edelmann@online.de> * remove comment in testcases * add rfc link to doc Co-authored-by: Flo Edelmann <florian-edelmann@online.de>
- Loading branch information
1 parent
9b55f3c
commit 8828bbb
Showing
39 changed files
with
1,804 additions
and
81 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,55 @@ | ||
--- | ||
pageClass: rule-details | ||
sidebarDepth: 0 | ||
title: vue/no-ref-object-destructure | ||
description: disallow destructuring of ref objects that can lead to loss of reactivity | ||
--- | ||
# vue/no-ref-object-destructure | ||
|
||
> disallow destructuring of ref objects that can lead to loss of reactivity | ||
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge> | ||
|
||
## :book: Rule Details | ||
|
||
This rule reports the destructuring of ref objects causing the value to lose reactivity. | ||
|
||
<eslint-code-block :rules="{'vue/no-ref-object-destructure': ['error']}" language="javascript" filename="example.js" > | ||
|
||
```js | ||
import { ref } from 'vue' | ||
const count = ref(0) | ||
const v1 = count.value /* ✗ BAD */ | ||
const { value: v2 } = count /* ✗ BAD */ | ||
const v3 = computed(() => count.value /* ✓ GOOD */) | ||
const v4 = fn(count.value) /* ✗ BAD */ | ||
const v5 = fn(count) /* ✓ GOOD */ | ||
const v6 = computed(() => fn(count.value) /* ✓ GOOD */) | ||
``` | ||
|
||
</eslint-code-block> | ||
|
||
This rule also supports Reactivity Transform, but Reactivity Transform is an experimental feature and may have false positives due to future Vue changes. | ||
See the [RFC](https://github.com/vuejs/rfcs/pull/420) for more information on Reactivity Transform. | ||
|
||
<eslint-code-block :rules="{'vue/no-ref-object-destructure': ['error']}" language="javascript" filename="example.js" > | ||
|
||
```js | ||
const count = $ref(0) | ||
const v1 = count /* ✗ BAD */ | ||
const v2 = $computed(() => count /* ✓ GOOD */) | ||
const v3 = fn(count) /* ✗ BAD */ | ||
const v4 = fn($$(count)) /* ✓ GOOD */ | ||
const v5 = $computed(() => fn(count) /* ✓ GOOD */) | ||
``` | ||
|
||
</eslint-code-block> | ||
|
||
## :wrench: Options | ||
|
||
Nothing. | ||
|
||
## :mag: Implementation | ||
|
||
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-ref-object-destructure.js) | ||
- [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/no-ref-object-destructure.js) |
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
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,183 @@ | ||
/** | ||
* @author Yosuke Ota <https://github.com/ota-meshi> | ||
* See LICENSE file in root directory for full license. | ||
*/ | ||
'use strict' | ||
|
||
// ------------------------------------------------------------------------------ | ||
// Requirements | ||
// ------------------------------------------------------------------------------ | ||
|
||
const utils = require('../utils') | ||
const { | ||
extractRefObjectReferences, | ||
extractReactiveVariableReferences | ||
} = require('../utils/ref-object-references') | ||
|
||
// ------------------------------------------------------------------------------ | ||
// Helpers | ||
// ------------------------------------------------------------------------------ | ||
|
||
/** | ||
* @typedef {import('../utils/ref-object-references').RefObjectReferences} RefObjectReferences | ||
* @typedef {import('../utils/ref-object-references').RefObjectReference} RefObjectReference | ||
*/ | ||
|
||
/** | ||
* Checks whether writing assigns a value to the given pattern. | ||
* @param {Pattern | AssignmentProperty | Property} node | ||
* @returns {boolean} | ||
*/ | ||
function isUpdate(node) { | ||
const parent = node.parent | ||
if (parent.type === 'UpdateExpression' && parent.argument === node) { | ||
// e.g. `pattern++` | ||
return true | ||
} | ||
if (parent.type === 'AssignmentExpression' && parent.left === node) { | ||
// e.g. `pattern = 42` | ||
return true | ||
} | ||
if ( | ||
(parent.type === 'Property' && parent.value === node) || | ||
parent.type === 'ArrayPattern' || | ||
(parent.type === 'ObjectPattern' && | ||
parent.properties.includes(/** @type {any} */ (node))) || | ||
(parent.type === 'AssignmentPattern' && parent.left === node) || | ||
parent.type === 'RestElement' || | ||
(parent.type === 'MemberExpression' && parent.object === node) | ||
) { | ||
return isUpdate(parent) | ||
} | ||
return false | ||
} | ||
|
||
// ------------------------------------------------------------------------------ | ||
// Rule Definition | ||
// ------------------------------------------------------------------------------ | ||
|
||
module.exports = { | ||
meta: { | ||
type: 'problem', | ||
docs: { | ||
description: | ||
'disallow destructuring of ref objects that can lead to loss of reactivity', | ||
categories: undefined, | ||
url: 'https://eslint.vuejs.org/rules/no-ref-object-destructure.html' | ||
}, | ||
fixable: null, | ||
schema: [], | ||
messages: { | ||
getValueInSameScope: | ||
'Getting a value from the ref object in the same scope will cause the value to lose reactivity.', | ||
getReactiveVariableInSameScope: | ||
'Getting a reactive variable in the same scope will cause the value to lose reactivity.' | ||
} | ||
}, | ||
/** | ||
* @param {RuleContext} context | ||
* @returns {RuleListener} | ||
*/ | ||
create(context) { | ||
/** | ||
* @typedef {object} ScopeStack | ||
* @property {ScopeStack | null} upper | ||
* @property {Program | FunctionExpression | FunctionDeclaration | ArrowFunctionExpression} node | ||
*/ | ||
/** @type {ScopeStack} */ | ||
let scopeStack = { upper: null, node: context.getSourceCode().ast } | ||
/** @type {Map<CallExpression, ScopeStack>} */ | ||
const scopes = new Map() | ||
|
||
const refObjectReferences = extractRefObjectReferences(context) | ||
const reactiveVariableReferences = | ||
extractReactiveVariableReferences(context) | ||
|
||
/** | ||
* Verify the given ref object value. `refObj = ref(); refObj.value;` | ||
* @param {Expression | Super | ObjectPattern} node | ||
*/ | ||
function verifyRefObjectValue(node) { | ||
const ref = refObjectReferences.get(node) | ||
if (!ref) { | ||
return | ||
} | ||
if (scopes.get(ref.define) !== scopeStack) { | ||
// Not in the same scope | ||
return | ||
} | ||
|
||
context.report({ | ||
node, | ||
messageId: 'getValueInSameScope' | ||
}) | ||
} | ||
|
||
/** | ||
* Verify the given reactive variable. `refVal = $ref(); refVal;` | ||
* @param {Identifier} node | ||
*/ | ||
function verifyReactiveVariable(node) { | ||
const ref = reactiveVariableReferences.get(node) | ||
if (!ref || ref.escape) { | ||
return | ||
} | ||
if (scopes.get(ref.define) !== scopeStack) { | ||
// Not in the same scope | ||
return | ||
} | ||
|
||
context.report({ | ||
node, | ||
messageId: 'getReactiveVariableInSameScope' | ||
}) | ||
} | ||
|
||
return { | ||
':function'(node) { | ||
scopeStack = { upper: scopeStack, node } | ||
}, | ||
':function:exit'() { | ||
scopeStack = scopeStack.upper || scopeStack | ||
}, | ||
CallExpression(node) { | ||
scopes.set(node, scopeStack) | ||
}, | ||
/** | ||
* Check for `refObj.value`. | ||
*/ | ||
'MemberExpression:exit'(node) { | ||
if (isUpdate(node)) { | ||
// e.g. `refObj.value = 42`, `refObj.value++` | ||
return | ||
} | ||
const name = utils.getStaticPropertyName(node) | ||
if (name !== 'value') { | ||
return | ||
} | ||
verifyRefObjectValue(node.object) | ||
}, | ||
/** | ||
* Check for `{value} = refObj`. | ||
*/ | ||
'ObjectPattern:exit'(node) { | ||
const prop = utils.findAssignmentProperty(node, 'value') | ||
if (!prop) { | ||
return | ||
} | ||
verifyRefObjectValue(node) | ||
}, | ||
/** | ||
* Check for reactive variable`. | ||
* @param {Identifier} node | ||
*/ | ||
'Identifier:exit'(node) { | ||
if (isUpdate(node)) { | ||
// e.g. `reactiveVariable = 42`, `reactiveVariable++` | ||
return | ||
} | ||
verifyReactiveVariable(node) | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.