-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathno-invalid-nesting.ts
99 lines (87 loc) · 3.37 KB
/
no-invalid-nesting.ts
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
import { isLiteral, isTemplateLiteral } from '../utils/nodes'
import { type Rule, createRule } from '../utils'
import { isInJSXProp, isInPandaFunction, isRecipeVariant, isStyledProperty } from '../utils/helpers'
import { TSESTree } from '@typescript-eslint/utils'
export const RULE_NAME = 'no-invalid-nesting'
const rule: Rule = createRule({
name: RULE_NAME,
meta: {
docs: {
description: 'Warn against invalid nesting. Nested styles must contain the `&` character.',
},
messages: {
nesting: 'Invalid style nesting. Nested styles must contain the `&` character.',
},
type: 'problem',
schema: [],
},
defaultOptions: [],
create(context) {
// Caches for helper functions
const pandaFunctionCache = new WeakMap<TSESTree.Property, boolean | undefined>()
const jsxPropCache = new WeakMap<TSESTree.Property, boolean | undefined>()
const recipeVariantCache = new WeakMap<TSESTree.Property, boolean | undefined>()
const styledPropertyCache = new WeakMap<TSESTree.Property, boolean | undefined>()
// Cached helper functions
const isCachedInPandaFunction = (node: TSESTree.Property): boolean => {
if (pandaFunctionCache.has(node)) {
return pandaFunctionCache.get(node)!
}
const result = !!isInPandaFunction(node, context)
pandaFunctionCache.set(node, result)
return !!result
}
const isCachedInJSXProp = (node: TSESTree.Property): boolean => {
if (jsxPropCache.has(node)) {
return jsxPropCache.get(node)!
}
const result = isInJSXProp(node, context)
jsxPropCache.set(node, result)
return !!result
}
const isCachedRecipeVariant = (node: TSESTree.Property): boolean => {
if (recipeVariantCache.has(node)) {
return recipeVariantCache.get(node)!
}
const result = isRecipeVariant(node, context)
recipeVariantCache.set(node, result)
return !!result
}
const isCachedStyledProperty = (node: TSESTree.Property): boolean => {
if (styledPropertyCache.has(node)) {
return styledPropertyCache.get(node)!
}
const result = isStyledProperty(node, context)
styledPropertyCache.set(node, result)
return !!result
}
// Function to check if a key is an invalid nesting selector
const isInvalidNestingSelector = (node: TSESTree.Expression): boolean => {
if (isLiteral(node) && typeof node.value === 'string') {
return !node.value.includes('&')
} else if (isTemplateLiteral(node) && node.expressions.length === 0) {
return !node.quasis[0].value.raw.includes('&')
}
return false
}
return {
// Use AST selector to target Property nodes with non-Identifier keys whose value is an ObjectExpression
'Property[key.type!=/Identifier/][value.type="ObjectExpression"]'(node: TSESTree.Property) {
// Check if the node is within a Panda function or JSX prop
const inPandaFunction = isCachedInPandaFunction(node)
const inJSXProp = isCachedInJSXProp(node)
if (!inPandaFunction && !inJSXProp) return
if (isCachedRecipeVariant(node)) return
if (isCachedStyledProperty(node)) return
const keyNode = node.key
if (isInvalidNestingSelector(keyNode)) {
context.report({
node: keyNode,
messageId: 'nesting',
})
}
},
}
},
})
export default rule