-
-
Notifications
You must be signed in to change notification settings - Fork 681
/
Copy paththis-in-template.js
131 lines (125 loc) · 4 KB
/
this-in-template.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
/**
* @fileoverview disallow usage of `this` in template.
* @author Armano
*/
'use strict'
const utils = require('../utils')
const RESERVED_NAMES = new Set(require('../utils/js-reserved.json'))
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'disallow usage of `this` in template',
categories: ['vue3-recommended', 'vue2-recommended'],
url: 'https://eslint.vuejs.org/rules/this-in-template.html'
},
fixable: 'code',
schema: [
{
enum: ['always', 'never']
}
],
messages: {
unexpected: "Unexpected usage of 'this'.",
expected: "Expected 'this'."
}
},
/**
* Creates AST event handlers for this-in-template.
*
* @param {RuleContext} context - The rule context.
* @returns {Object} AST event handlers.
*/
create(context) {
const options = context.options[0] === 'always' ? 'always' : 'never'
/**
* @typedef {object} ScopeStack
* @property {ScopeStack | null} parent
* @property {Identifier[]} nodes
*/
/** @type {ScopeStack | null} */
let scopeStack = null
return utils.defineTemplateBodyVisitor(context, {
/** @param {VElement} node */
VElement(node) {
scopeStack = {
parent: scopeStack,
nodes: scopeStack
? [...scopeStack.nodes] // make copy
: []
}
if (node.variables) {
for (const variable of node.variables) {
const varNode = variable.id
const name = varNode.name
if (!scopeStack.nodes.some((node) => node.name === name)) {
// Prevent adding duplicates
scopeStack.nodes.push(varNode)
}
}
}
},
'VElement:exit'() {
scopeStack = scopeStack && scopeStack.parent
},
...(options === 'never'
? {
/** @param { ThisExpression & { parent: MemberExpression } } node */
'VExpressionContainer MemberExpression > ThisExpression'(node) {
if (!scopeStack) {
return
}
const propertyName = utils.getStaticPropertyName(node.parent)
if (
!propertyName ||
scopeStack.nodes.some((el) => el.name === propertyName) ||
RESERVED_NAMES.has(propertyName) || // this.class | this['class']
/^\d.*$|[^\w$]/.test(propertyName) // this['0aaaa'] | this['foo-bar bas']
) {
return
}
context.report({
node,
loc: node.loc,
fix(fixer) {
// node.parent should be some code like `this.test`, `this?.['result']`
return fixer.replaceText(node.parent, propertyName)
},
messageId: 'unexpected'
})
}
}
: {
/** @param {VExpressionContainer} node */
VExpressionContainer(node) {
if (!scopeStack) {
return
}
if (node.parent.type === 'VDirectiveKey') {
// We cannot use `.` in dynamic arguments because the right of the `.` becomes a modifier.
// For example, In `:[this.prop]` case, `:[this` is an argument and `prop]` is a modifier.
return
}
if (node.references) {
for (const reference of node.references) {
if (
!scopeStack.nodes.some(
(el) => el.name === reference.id.name
)
) {
context.report({
node: reference.id,
loc: reference.id.loc,
messageId: 'expected',
fix(fixer) {
return fixer.insertTextBefore(reference.id, 'this.')
}
})
}
}
}
}
})
})
}
}