-
-
Notifications
You must be signed in to change notification settings - Fork 681
/
Copy pathnext-tick-style.js
228 lines (206 loc) · 6.69 KB
/
next-tick-style.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/**
* @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'
const utils = require('../utils')
const { findVariable } = require('@eslint-community/eslint-utils')
/**
* @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' &&
identifier.parent.parent.callee === identifier.parent
) {
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' &&
identifier.parent.parent.callee === identifier.parent
) {
return identifier.parent.parent
}
// Vue 3 Global API: import { nextTick as nt } from 'vue'; nt()
if (
identifier.parent.type === 'CallExpression' &&
identifier.parent.callee === identifier
) {
const variable = findVariable(
utils.getScope(context, identifier),
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')
)
}
/**
* @param {CallExpression} callExpression
* @returns {boolean}
*/
/**
* @param {Expression | SpreadElement} callback
* @param {SourceCode} sourceCode
* @returns {string}
*/
function extractCallbackBody(callback, sourceCode) {
if (
callback.type !== 'FunctionExpression' &&
callback.type !== 'ArrowFunctionExpression'
) {
return ''
}
if (callback.body.type === 'BlockStatement') {
return sourceCode.getText(callback.body).trim()
}
return sourceCode.getText(callback.body)
}
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'enforce Promise, Await or callback style in `nextTick`',
categories: undefined,
url: 'https://eslint.vuejs.org/rules/next-tick-style.html'
},
fixable: 'code',
schema: [{ enum: ['promise', 'await', 'callback'] }],
messages: {
useAwait:
'Use the await keyword with the Promise returned by `nextTick` instead of passing a callback function or using `.then()`.',
usePromise:
'Use the Promise returned by `nextTick` instead of passing a callback function.',
useCallback:
'Pass a callback function to `nextTick` instead of using the returned Promise.'
}
},
/** @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,
messageId: 'useCallback'
})
}
return
}
if (preferredStyle === 'await') {
if (
callExpression.arguments.length > 0 ||
callExpression.parent.type !== 'AwaitExpression'
) {
context.report({
node,
messageId: 'useAwait',
fix(fixer) {
const sourceCode = context.getSourceCode()
// Handle callback to await conversion
if (callExpression.arguments.length === 1) {
if (callExpression.parent.type !== 'ExpressionStatement') {
return null
}
const [args] = callExpression.arguments
let callbackBody = null
callbackBody =
args.type === 'ArrowFunctionExpression' ||
(args.type === 'FunctionExpression' && !args.generator)
? extractCallbackBody(args, sourceCode)
: `${sourceCode.getText(args)}()`
const nextTickCaller = sourceCode.getText(
callExpression.callee
)
return fixer.replaceText(
callExpression.parent,
`await ${nextTickCaller}();${callbackBody};`
)
}
// Handle promise to await conversion
if (isAwaitedPromise(callExpression)) {
const thenCall = callExpression.parent.parent
if (thenCall === null || thenCall.type !== 'CallExpression') {
return null
}
const [thenCallback] = thenCall.arguments
if (thenCallback) {
const thenCallbackBody = extractCallbackBody(
thenCallback,
sourceCode
)
return fixer.replaceText(
thenCall,
`await ${sourceCode.getText(callExpression)};${thenCallbackBody}`
)
}
}
return null
}
})
}
return
}
if (
callExpression.arguments.length > 0 ||
!isAwaitedPromise(callExpression)
) {
context.report({
node,
messageId: 'usePromise',
fix(fixer) {
return fixer.insertTextAfter(node, '().then')
}
})
}
}
})
}
}