-
-
Notifications
You must be signed in to change notification settings - Fork 680
Add vue/next-tick-style
rule
#1400
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
Changes from 8 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
c240877
Add rule docs
FloEdelmann af38d7e
Add rule tests
FloEdelmann 3bbb7f0
Initial implementation: detect nextTick calls
FloEdelmann db2ff3b
Finish rule implementation
FloEdelmann c976708
Add fixer for promise style
FloEdelmann 8485c3a
Add new rule to rule collections
FloEdelmann 8176d1b
Improve short description
FloEdelmann 46dd1a8
Use `output: null` instead of copying the unchanged code
FloEdelmann ed96fec
Update documentation with update tool
FloEdelmann 9ddaff9
Simplify rule fix code
FloEdelmann 2a895bf
Drop unused `recommended` property
FloEdelmann 8c4ccf7
Fix require path
FloEdelmann 3060268
Update docs
FloEdelmann 76fa984
Fix docs
FloEdelmann 20c0ffc
Prevent false positives for `foo.then(nextTick)`
FloEdelmann e60d757
Update rule type
FloEdelmann 7778a27
Add `foo.then(nextTick, catchHandler)` test case
FloEdelmann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,99 @@ | ||
--- | ||
pageClass: rule-details | ||
sidebarDepth: 0 | ||
title: vue/next-tick-style | ||
description: enforce `v-for` directive's delimiter style | ||
since: v7.5.0 | ||
FloEdelmann marked this conversation as resolved.
Show resolved
Hide resolved
|
||
--- | ||
# vue/next-tick-style | ||
|
||
> enforce Promise or callback style in `nextTick` | ||
|
||
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule. | ||
|
||
## :book: Rule Details | ||
|
||
This rule enforces whether the callback version or Promise version (which was introduced in Vue v2.1.0) should be used in `Vue.nextTick` and `this.$nextTick`. | ||
|
||
<eslint-code-block fix :rules="{'vue/next-tick-style': ['error']}"> | ||
|
||
```vue | ||
<script> | ||
import { nextTick } from 'vue'; | ||
|
||
export default { | ||
async mounted() { | ||
/* ✓ GOOD */ | ||
nextTick().then(() => callback()); | ||
await nextTick(); callback(); | ||
this.$nextTick().then(() => callback()); | ||
await this.$nextTick(); callback(); | ||
|
||
/* ✗ BAD */ | ||
nextTick(() => callback()); | ||
nextTick(callback); | ||
this.$nextTick(() => callback()); | ||
this.$nextTick(callback); | ||
} | ||
} | ||
</script> | ||
``` | ||
|
||
</eslint-code-block> | ||
|
||
## :wrench: Options | ||
Default is set to `promise`. | ||
|
||
```json | ||
{ | ||
"vue/next-tick-style": ["error", "promise" | "callback"] | ||
} | ||
``` | ||
|
||
- `"promise"` (default) ... requires using the promise version. | ||
- `"callback"` ... requires using the callback version. Use this if you use a Vue version below v2.1.0. | ||
|
||
### `"callback"` | ||
|
||
<eslint-code-block :rules="{'vue/next-tick-style': ['error', 'callback']}"> | ||
|
||
```vue | ||
<script> | ||
import { nextTick } from 'vue'; | ||
|
||
export default { | ||
async mounted() { | ||
/* ✓ GOOD */ | ||
nextTick(() => callback()); | ||
nextTick(callback); | ||
this.$nextTick(() => callback()); | ||
this.$nextTick(callback); | ||
|
||
/* ✗ BAD */ | ||
nextTick().then(() => callback()); | ||
await nextTick(); callback(); | ||
this.$nextTick().then(() => callback()); | ||
await this.$nextTick(); callback(); | ||
} | ||
} | ||
</script> | ||
``` | ||
|
||
</eslint-code-block> | ||
|
||
## :books: Further Reading | ||
|
||
- [`Vue.nextTick` API in Vue 2](https://vuejs.org/v2/api/#Vue-nextTick) | ||
- [`vm.$nextTick` API in Vue 2](https://vuejs.org/v2/api/#vm-nextTick) | ||
- [Global API Treeshaking](https://v3.vuejs.org/guide/migration/global-api-treeshaking.html) | ||
- [Global `nextTick` API in Vue 3](https://v3.vuejs.org/api/global-api.html#nexttick) | ||
- [Instance `$nextTick` API in Vue 3](https://v3.vuejs.org/api/instance-methods.html#nexttick) | ||
|
||
## :rocket: Version | ||
|
||
This rule was introduced in eslint-plugin-vue v7.5.0 | ||
|
||
## :mag: Implementation | ||
|
||
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/next-tick-style.js) | ||
- [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/next-tick-style.js) |
This file contains hidden or 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 hidden or 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 hidden or 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,142 @@ | ||
/** | ||
* @fileoverview enforce Promise or callback style in `nextTick` | ||
* @author Flo Edelmann | ||
* @copyright 2020 Flo Edelmann. All rights reserved. | ||
* See LICENSE file in root directory for full license. | ||
*/ | ||
'use strict' | ||
|
||
// ------------------------------------------------------------------------------ | ||
// Requirements | ||
// ------------------------------------------------------------------------------ | ||
|
||
const utils = require('../utils') | ||
const { findVariable } = require('eslint-utils/index.js') | ||
|
||
// ------------------------------------------------------------------------------ | ||
// Helpers | ||
// ------------------------------------------------------------------------------ | ||
|
||
/** | ||
* @param {Identifier} identifier | ||
* @param {RuleContext} context | ||
* @returns {CallExpression|undefined} | ||
*/ | ||
function getVueNextTickCallExpression(identifier, context) { | ||
// Instance API: this.$nextTick() | ||
if ( | ||
identifier.name === '$nextTick' && | ||
identifier.parent.type === 'MemberExpression' && | ||
utils.isThis(identifier.parent.object, context) && | ||
identifier.parent.parent.type === 'CallExpression' | ||
) { | ||
return identifier.parent.parent | ||
} | ||
|
||
// Vue 2 Global API: Vue.nextTick() | ||
if ( | ||
identifier.name === 'nextTick' && | ||
identifier.parent.type === 'MemberExpression' && | ||
identifier.parent.object.type === 'Identifier' && | ||
identifier.parent.object.name === 'Vue' && | ||
identifier.parent.parent.type === 'CallExpression' | ||
) { | ||
return identifier.parent.parent | ||
} | ||
|
||
// Vue 3 Global API: import { nextTick as nt } from 'vue'; nt() | ||
if (identifier.parent.type === 'CallExpression') { | ||
FloEdelmann marked this conversation as resolved.
Show resolved
Hide resolved
|
||
const variable = findVariable(context.getScope(), identifier) | ||
|
||
if (variable != null && variable.defs.length === 1) { | ||
const def = variable.defs[0] | ||
if ( | ||
def.type === 'ImportBinding' && | ||
def.node.type === 'ImportSpecifier' && | ||
def.node.imported.type === 'Identifier' && | ||
def.node.imported.name === 'nextTick' && | ||
def.node.parent.type === 'ImportDeclaration' && | ||
def.node.parent.source.value === 'vue' | ||
) { | ||
return identifier.parent | ||
} | ||
} | ||
} | ||
|
||
return undefined | ||
} | ||
|
||
/** | ||
* @param {CallExpression} callExpression | ||
* @returns {boolean} | ||
*/ | ||
function isAwaitedPromise(callExpression) { | ||
return ( | ||
callExpression.parent.type === 'AwaitExpression' || | ||
(callExpression.parent.type === 'MemberExpression' && | ||
callExpression.parent.property.type === 'Identifier' && | ||
callExpression.parent.property.name === 'then') | ||
) | ||
} | ||
|
||
// ------------------------------------------------------------------------------ | ||
// Rule Definition | ||
// ------------------------------------------------------------------------------ | ||
|
||
module.exports = { | ||
meta: { | ||
type: 'layout', | ||
FloEdelmann marked this conversation as resolved.
Show resolved
Hide resolved
|
||
docs: { | ||
description: 'enforce Promise or callback style in `nextTick`', | ||
categories: undefined, | ||
recommended: false, | ||
url: 'https://eslint.vuejs.org/rules/next-tick-style.html' | ||
}, | ||
fixable: 'code', | ||
schema: [{ enum: ['promise', 'callback'] }] | ||
}, | ||
/** @param {RuleContext} context */ | ||
create(context) { | ||
const preferredStyle = | ||
/** @type {string|undefined} */ (context.options[0]) || 'promise' | ||
|
||
return utils.defineVueVisitor(context, { | ||
/** @param {Identifier} node */ | ||
Identifier(node) { | ||
const callExpression = getVueNextTickCallExpression(node, context) | ||
if (!callExpression) { | ||
return | ||
} | ||
|
||
if (preferredStyle === 'callback') { | ||
if ( | ||
callExpression.arguments.length !== 1 || | ||
isAwaitedPromise(callExpression) | ||
) { | ||
context.report({ | ||
node, | ||
message: | ||
'Pass a callback function to `nextTick` instead of using the returned Promise.' | ||
}) | ||
} | ||
|
||
return | ||
} | ||
|
||
if ( | ||
callExpression.arguments.length !== 0 || | ||
!isAwaitedPromise(callExpression) | ||
) { | ||
context.report({ | ||
node, | ||
message: | ||
'Use the Promise returned by `nextTick` instead of passing a callback function.', | ||
*fix(fixer) { | ||
yield fixer.insertTextAfter(node, '().then') | ||
FloEdelmann marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
}) | ||
} | ||
} | ||
}) | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.