-
-
Notifications
You must be signed in to change notification settings - Fork 681
/
Copy pathrequire-default-prop.js
228 lines (212 loc) · 6.41 KB
/
require-default-prop.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 Require default value for props
* @author Michał Sajnóg <[email protected]> (https://github.com/michalsnik)
*/
'use strict'
/**
* @typedef {import('../utils').ComponentProp} ComponentProp
* @typedef {import('../utils').ComponentObjectProp} ComponentObjectProp
* @typedef {import('../utils').ComponentTypeProp} ComponentTypeProp
* @typedef {ComponentObjectProp & { value: ObjectExpression} } ComponentObjectPropObject
*/
const utils = require('../utils')
const { isDef } = require('../utils')
const NATIVE_TYPES = new Set([
'String',
'Number',
'Boolean',
'Function',
'Object',
'Array',
'Symbol'
])
/**
* Detects whether given value node is a Boolean type
* @param {Expression} value
* @return {boolean}
*/
function isValueNodeOfBooleanType(value) {
if (value.type === 'Identifier' && value.name === 'Boolean') {
return true
}
if (value.type === 'ArrayExpression') {
const elements = value.elements.filter(isDef)
return (
elements.length === 1 &&
elements[0].type === 'Identifier' &&
elements[0].name === 'Boolean'
)
}
return false
}
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'require default value for props',
categories: ['vue3-strongly-recommended', 'vue2-strongly-recommended'],
url: 'https://eslint.vuejs.org/rules/require-default-prop.html'
},
fixable: null,
schema: [],
messages: {
missingDefault: `Prop '{{propName}}' requires default value to be set.`
}
},
/** @param {RuleContext} context */
create(context) {
/**
* Checks if the passed prop is required
* @param {ObjectExpression} propValue - ObjectExpression AST node for a single prop
* @return {boolean}
*/
function propIsRequired(propValue) {
const propRequiredNode = propValue.properties.find(
(p) =>
p.type === 'Property' &&
utils.getStaticPropertyName(p) === 'required' &&
p.value.type === 'Literal' &&
p.value.value === true
)
return Boolean(propRequiredNode)
}
/**
* Checks if the passed prop has a default value
* @param {ObjectExpression} propValue - ObjectExpression AST node for a single prop
* @return {boolean}
*/
function propHasDefault(propValue) {
const propDefaultNode = propValue.properties.find(
(p) =>
p.type === 'Property' && utils.getStaticPropertyName(p) === 'default'
)
return Boolean(propDefaultNode)
}
/**
* Checks whether the given props that don't have a default value
* @param {ComponentObjectProp} prop Vue component's "props" node
* @return {boolean}
*/
function isWithoutDefaultValue(prop) {
if (prop.value.type !== 'ObjectExpression') {
if (prop.value.type === 'Identifier') {
return NATIVE_TYPES.has(prop.value.name)
}
if (
prop.value.type === 'CallExpression' ||
prop.value.type === 'MemberExpression'
) {
// OK
return false
}
// NG
return true
}
return !propIsRequired(prop.value) && !propHasDefault(prop.value)
}
/**
* Detects whether given prop node is a Boolean
* @param {ComponentObjectProp} prop
* @return {Boolean}
*/
function isBooleanProp(prop) {
const value = utils.skipTSAsExpression(prop.value)
return (
isValueNodeOfBooleanType(value) ||
(value.type === 'ObjectExpression' &&
value.properties.some(
(p) =>
p.type === 'Property' &&
p.key.type === 'Identifier' &&
p.key.name === 'type' &&
isValueNodeOfBooleanType(p.value)
))
)
}
/**
* @param {ComponentProp[]} props
* @param {(prop: ComponentObjectProp|ComponentTypeProp)=>boolean} [ignore]
*/
function processProps(props, ignore) {
for (const prop of props) {
if (prop.type === 'object') {
if (prop.node.shorthand) {
continue
}
if (!isWithoutDefaultValue(prop)) {
continue
}
if (isBooleanProp(prop)) {
continue
}
if (ignore?.(prop)) {
continue
}
const propName =
prop.propName == null
? `[${context.getSourceCode().getText(prop.node.key)}]`
: prop.propName
context.report({
node: prop.node,
messageId: `missingDefault`,
data: {
propName
}
})
} else if (prop.type === 'type') {
if (prop.required) {
continue
}
if (prop.types.length === 1 && prop.types[0] === 'Boolean') {
continue
}
if (ignore?.(prop)) {
continue
}
context.report({
node: prop.node,
messageId: `missingDefault`,
data: {
propName: prop.propName
}
})
}
}
}
return utils.compositingVisitors(
utils.defineScriptSetupVisitor(context, {
onDefinePropsEnter(node, props) {
const hasWithDefaults = utils.hasWithDefaults(node)
const defaultsByWithDefaults =
utils.getWithDefaultsPropExpressions(node)
const isUsingPropsDestructure = utils.isUsingPropsDestructure(node)
const defaultsByAssignmentPatterns =
utils.getDefaultPropExpressionsForPropsDestructure(node)
processProps(props, (prop) => {
if (prop.type === 'type') {
if (!hasWithDefaults && !isUsingPropsDestructure) {
// If don't use withDefaults() and props destructure, exclude it from the report.
return true
}
if (defaultsByWithDefaults[prop.propName]) {
return true
}
}
if (!isUsingPropsDestructure) {
return false
}
if (prop.propName == null) {
// If using Props Destructure but the property name cannot be determined,
// it will be ignored.
return true
}
return Boolean(defaultsByAssignmentPatterns[prop.propName])
})
}
}),
utils.executeOnVue(context, (obj) => {
processProps(utils.getComponentPropsFromOptions(obj))
})
)
}
}