forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathno-root-v-if.js
70 lines (64 loc) · 1.73 KB
/
no-root-v-if.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
/**
* @author Perry Song
* @copyright 2023 Perry Song. All rights reserved.
* See LICENSE file in root directory for full license.
*/
'use strict'
const utils = require('../utils')
/**
* Get the number of root element directive
* @param {VNode[]} rootElements The start tag node to check.
*/
function getDirectivesLength(rootElements) {
let ifLength = 0
let elseLength = 0
let elseIfLength = 0
for (const element of rootElements) {
if (element.type === 'VElement') {
if (utils.hasDirective(element, 'if')) ifLength += 1
if (utils.hasDirective(element, 'else')) elseLength += 1
if (utils.hasDirective(element, 'else-if')) elseIfLength += 1
}
}
return {
ifLength,
elseLength,
elseIfLength
}
}
module.exports = {
meta: {
type: 'problem',
docs: {
description: 'enforce valid `v-if` directives on root element',
categories: undefined,
url: 'https://eslint.vuejs.org/rules/no-root-v-if.html'
},
fixable: null,
schema: []
},
/** @param {RuleContext} context */
create(context) {
return {
/** @param {Program} program */
Program(program) {
const element = program.templateBody
if (element == null) {
return
}
const rootElements = element.children.filter(utils.isVElement)
if (rootElements.length === 0) return
const { ifLength, elseLength, elseIfLength } =
getDirectivesLength(rootElements)
if (ifLength === 1 && elseLength === 0 && elseIfLength === 0) {
context.report({
node: element,
loc: element.loc,
message:
'`v-if` should not be used on root element without `v-else`.'
})
}
}
}
}
}