@eslint-react/core 2.0.0-next.4 → 2.0.0-next.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -3
- package/dist/index.js +45 -7
- package/package.json +12 -12
package/dist/index.d.ts
CHANGED
|
@@ -348,6 +348,8 @@ declare namespace useHookCollector {
|
|
|
348
348
|
}
|
|
349
349
|
declare function useHookCollector(): useHookCollector.ReturnType;
|
|
350
350
|
|
|
351
|
+
declare function isReactHookId(id: TSESTree.Identifier | TSESTree.MemberExpression): boolean;
|
|
352
|
+
|
|
351
353
|
declare function isReactHook(node: AST.TSESTreeFunction | _): boolean;
|
|
352
354
|
/**
|
|
353
355
|
* Check if the given node is a React Hook call by its name.
|
|
@@ -379,8 +381,7 @@ declare const isUseStateCall: (context: RuleContext, node: TSESTree.Node | undef
|
|
|
379
381
|
declare const isUseSyncExternalStoreCall: (context: RuleContext, node: TSESTree.Node | undefined) => boolean;
|
|
380
382
|
declare const isUseTransitionCall: (context: RuleContext, node: TSESTree.Node | undefined) => boolean;
|
|
381
383
|
|
|
382
|
-
|
|
383
|
-
|
|
384
|
+
declare const REACT_BUILTIN_HOOK_NAMES: readonly ["use", "useActionState", "useCallback", "useContext", "useDebugValue", "useDeferredValue", "useEffect", "useFormStatus", "useId", "useImperativeHandle", "useInsertionEffect", "useLayoutEffect", "useMemo", "useOptimistic", "useReducer", "useRef", "useState", "useSyncExternalStore", "useTransition"];
|
|
384
385
|
/**
|
|
385
386
|
* Catch all identifiers that begin with "use" followed by an uppercase Latin
|
|
386
387
|
* character to exclude identifiers like "user".
|
|
@@ -541,4 +542,4 @@ declare const isForwardRefCall: isReactAPICall.ReturnType;
|
|
|
541
542
|
declare const isMemoCall: isReactAPICall.ReturnType;
|
|
542
543
|
declare const isLazyCall: isReactAPICall.ReturnType;
|
|
543
544
|
|
|
544
|
-
export { type ClassComponent, type Component, ComponentDetectionHint, type ComponentEffectPhaseKind, ComponentFlag, type ComponentKind, type ComponentLifecyclePhaseKind, type ComponentPhaseKind, ComponentPhaseRelevance, type ComponentStateKind, DEFAULT_COMPONENT_DETECTION_HINT, DEFAULT_JSX_DETECTION_HINT, type EffectKind, type FunctionComponent, type Hook,
|
|
545
|
+
export { type ClassComponent, type Component, ComponentDetectionHint, type ComponentEffectPhaseKind, ComponentFlag, type ComponentKind, type ComponentLifecyclePhaseKind, type ComponentPhaseKind, ComponentPhaseRelevance, type ComponentStateKind, DEFAULT_COMPONENT_DETECTION_HINT, DEFAULT_JSX_DETECTION_HINT, type EffectKind, type FunctionComponent, type Hook, JSXDetectionHint, REACT_BUILTIN_HOOK_NAMES, type SemanticEntry, type SemanticNode, findParentAttribute, getAttribute, getAttributeName, getAttributeValue, getComponentFlagFromInitPath, getComponentNameFromId, getElementType, getFunctionComponentId, getInstanceId, hasAnyAttribute, hasAttribute, hasEveryAttribute, hasNoneOrLooseComponentName, isAssignmentToThisState, isCaptureOwnerStack, isCaptureOwnerStackCall, isChildrenCount, isChildrenCountCall, isChildrenForEach, isChildrenForEachCall, isChildrenMap, isChildrenMapCall, isChildrenOfCreateElement, isChildrenOnly, isChildrenOnlyCall, isChildrenToArray, isChildrenToArrayCall, isClassComponent, isCloneElement, isCloneElementCall, isComponentDidCatch, isComponentDidMount, isComponentDidUpdate, isComponentName, isComponentNameLoose, isComponentWillMount, isComponentWillReceiveProps, isComponentWillUnmount, isComponentWillUpdate, isComponentWrapperCall, isComponentWrapperCallLoose, isCreateContext, isCreateContextCall, isCreateElement, isCreateElementCall, isCreateRef, isCreateRefCall, isDeclaredInRenderPropLoose, isDirectValueOfRenderPropertyLoose, isForwardRef, isForwardRefCall, isFragmentElement, isFunctionOfRender, isFunctionOfRenderMethod, isGetChildContext, isGetDefaultProps, isGetDerivedStateFromError, isGetDerivedStateFromProps, isGetInitialState, isGetSnapshotBeforeUpdate, isHostElement, isInitializedFromReact, isInstanceIdEqual, isInversePhase, isJsxLike, isJsxText, isKeyedElement, isLazy, isLazyCall, isMemo, isMemoCall, isPureComponent, isReactAPI, isReactAPICall, isReactHook, isReactHookCall, isReactHookCallWithName, isReactHookCallWithNameAlias, isReactHookCallWithNameLoose, isReactHookId, isReactHookName, isRenderFunctionLoose, isRenderLike, isRenderMethodLike, isRenderPropLoose, isShouldComponentUpdate, isThisSetState, isUnsafeComponentWillMount, isUnsafeComponentWillReceiveProps, isUnsafeComponentWillUpdate, isUseActionStateCall, isUseCall, isUseCallbackCall, isUseContextCall, isUseDebugValueCall, isUseDeferredValueCall, isUseEffectCall, isUseEffectCallLoose, isUseFormStatusCall, isUseIdCall, isUseImperativeHandleCall, isUseInsertionEffectCall, isUseLayoutEffectCall, isUseMemoCall, isUseOptimisticCall, isUseReducerCall, isUseRefCall, isUseStateCall, isUseSyncExternalStoreCall, isUseTransitionCall, isValidComponentDefinition, stringifyJsx, useComponentCollector, useComponentCollectorLegacy, useHookCollector };
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ function isReactAPI(api) {
|
|
|
12
12
|
const func = (context, node) => {
|
|
13
13
|
if (node == null) return false;
|
|
14
14
|
const getText = (n) => context.sourceCode.getText(n);
|
|
15
|
-
const name = AST14.
|
|
15
|
+
const name = AST14.toStringFormat(node, getText);
|
|
16
16
|
if (name === api) return true;
|
|
17
17
|
if (name.substring(name.indexOf(".") + 1) === api) return true;
|
|
18
18
|
return false;
|
|
@@ -108,6 +108,27 @@ function isInstanceIdEqual(context, a, b) {
|
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
// src/hook/hook-name.ts
|
|
111
|
+
var REACT_BUILTIN_HOOK_NAMES = [
|
|
112
|
+
"use",
|
|
113
|
+
"useActionState",
|
|
114
|
+
"useCallback",
|
|
115
|
+
"useContext",
|
|
116
|
+
"useDebugValue",
|
|
117
|
+
"useDeferredValue",
|
|
118
|
+
"useEffect",
|
|
119
|
+
"useFormStatus",
|
|
120
|
+
"useId",
|
|
121
|
+
"useImperativeHandle",
|
|
122
|
+
"useInsertionEffect",
|
|
123
|
+
"useLayoutEffect",
|
|
124
|
+
"useMemo",
|
|
125
|
+
"useOptimistic",
|
|
126
|
+
"useReducer",
|
|
127
|
+
"useRef",
|
|
128
|
+
"useState",
|
|
129
|
+
"useSyncExternalStore",
|
|
130
|
+
"useTransition"
|
|
131
|
+
];
|
|
111
132
|
function isReactHookName(name) {
|
|
112
133
|
return name === "use" || /^use[A-Z0-9]/.test(name);
|
|
113
134
|
}
|
|
@@ -266,6 +287,16 @@ function useHookCollector() {
|
|
|
266
287
|
};
|
|
267
288
|
return { ctx, listeners };
|
|
268
289
|
}
|
|
290
|
+
function isReactHookId(id) {
|
|
291
|
+
switch (id.type) {
|
|
292
|
+
case AST_NODE_TYPES.Identifier:
|
|
293
|
+
return isReactHookName(id.name);
|
|
294
|
+
case AST_NODE_TYPES.MemberExpression:
|
|
295
|
+
return "name" in id.property && isReactHookName(id.property.name);
|
|
296
|
+
default:
|
|
297
|
+
return false;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
269
300
|
function stringifyJsx(node) {
|
|
270
301
|
switch (node.type) {
|
|
271
302
|
case AST_NODE_TYPES.JSXIdentifier:
|
|
@@ -401,6 +432,9 @@ function isJsxLike(code, node, hint = DEFAULT_JSX_DETECTION_HINT) {
|
|
|
401
432
|
return !(hint & JSXDetectionHint.SkipStringLiteral);
|
|
402
433
|
}
|
|
403
434
|
case AST_NODE_TYPES.ArrayExpression: {
|
|
435
|
+
if (node.elements.length === 0) {
|
|
436
|
+
return !(hint & JSXDetectionHint.SkipEmptyArray);
|
|
437
|
+
}
|
|
404
438
|
if (hint & JSXDetectionHint.StrictArray) {
|
|
405
439
|
return node.elements.every((n) => isJsxLike(code, n, hint));
|
|
406
440
|
}
|
|
@@ -692,11 +726,15 @@ function useComponentCollector(context, options = {}) {
|
|
|
692
726
|
const entry = functionEntries.at(-1);
|
|
693
727
|
if (entry == null) return;
|
|
694
728
|
if (!entry.isComponent) return functionEntries.pop();
|
|
695
|
-
const
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
729
|
+
const rets = AST14.getNestedReturnStatements(entry.node.body);
|
|
730
|
+
for (let i = rets.length - 1; i >= 0; i--) {
|
|
731
|
+
const ret = rets[i];
|
|
732
|
+
if (ret == null) continue;
|
|
733
|
+
const shouldDrop = context.sourceCode.getScope(ret).block === entry.node && ret.argument != null && !isJsxLike(context.sourceCode, ret.argument, hint);
|
|
734
|
+
if (shouldDrop) {
|
|
735
|
+
components.delete(entry.key);
|
|
736
|
+
break;
|
|
737
|
+
}
|
|
700
738
|
}
|
|
701
739
|
return functionEntries.pop();
|
|
702
740
|
};
|
|
@@ -924,4 +962,4 @@ function isAssignmentToThisState(node) {
|
|
|
924
962
|
return left.type === AST_NODE_TYPES.MemberExpression && AST14.isThisExpression(left.object) && AST14.getPropertyName(left.property) === "state";
|
|
925
963
|
}
|
|
926
964
|
|
|
927
|
-
export { ComponentDetectionHint, ComponentFlag, ComponentPhaseRelevance, DEFAULT_COMPONENT_DETECTION_HINT, DEFAULT_JSX_DETECTION_HINT, JSXDetectionHint, findParentAttribute, getAttribute, getAttributeName, getAttributeValue, getComponentFlagFromInitPath, getComponentNameFromId, getElementType, getFunctionComponentId, getInstanceId, hasAnyAttribute, hasAttribute, hasEveryAttribute, hasNoneOrLooseComponentName, isAssignmentToThisState, isCaptureOwnerStack, isCaptureOwnerStackCall, isChildrenCount, isChildrenCountCall, isChildrenForEach, isChildrenForEachCall, isChildrenMap, isChildrenMapCall, isChildrenOfCreateElement, isChildrenOnly, isChildrenOnlyCall, isChildrenToArray, isChildrenToArrayCall, isClassComponent, isCloneElement, isCloneElementCall, isComponentDidCatch, isComponentDidMount, isComponentDidUpdate, isComponentName, isComponentNameLoose, isComponentWillMount, isComponentWillReceiveProps, isComponentWillUnmount, isComponentWillUpdate, isComponentWrapperCall, isComponentWrapperCallLoose, isCreateContext, isCreateContextCall, isCreateElement, isCreateElementCall, isCreateRef, isCreateRefCall, isDeclaredInRenderPropLoose, isDirectValueOfRenderPropertyLoose, isForwardRef, isForwardRefCall, isFragmentElement, isFunctionOfRender, isFunctionOfRenderMethod, isGetChildContext, isGetDefaultProps, isGetDerivedStateFromError, isGetDerivedStateFromProps, isGetInitialState, isGetSnapshotBeforeUpdate, isHostElement, isInitializedFromReact, isInstanceIdEqual, isInversePhase, isJsxLike, isJsxText, isKeyedElement, isLazy, isLazyCall, isMemo, isMemoCall, isPureComponent, isReactAPI, isReactAPICall, isReactHook, isReactHookCall, isReactHookCallWithName, isReactHookCallWithNameAlias, isReactHookCallWithNameLoose, isReactHookName, isRenderFunctionLoose, isRenderLike, isRenderMethodLike, isRenderPropLoose, isShouldComponentUpdate, isThisSetState, isUnsafeComponentWillMount, isUnsafeComponentWillReceiveProps, isUnsafeComponentWillUpdate, isUseActionStateCall, isUseCall, isUseCallbackCall, isUseContextCall, isUseDebugValueCall, isUseDeferredValueCall, isUseEffectCall, isUseEffectCallLoose, isUseFormStatusCall, isUseIdCall, isUseImperativeHandleCall, isUseInsertionEffectCall, isUseLayoutEffectCall, isUseMemoCall, isUseOptimisticCall, isUseReducerCall, isUseRefCall, isUseStateCall, isUseSyncExternalStoreCall, isUseTransitionCall, isValidComponentDefinition, stringifyJsx, useComponentCollector, useComponentCollectorLegacy, useHookCollector };
|
|
965
|
+
export { ComponentDetectionHint, ComponentFlag, ComponentPhaseRelevance, DEFAULT_COMPONENT_DETECTION_HINT, DEFAULT_JSX_DETECTION_HINT, JSXDetectionHint, REACT_BUILTIN_HOOK_NAMES, findParentAttribute, getAttribute, getAttributeName, getAttributeValue, getComponentFlagFromInitPath, getComponentNameFromId, getElementType, getFunctionComponentId, getInstanceId, hasAnyAttribute, hasAttribute, hasEveryAttribute, hasNoneOrLooseComponentName, isAssignmentToThisState, isCaptureOwnerStack, isCaptureOwnerStackCall, isChildrenCount, isChildrenCountCall, isChildrenForEach, isChildrenForEachCall, isChildrenMap, isChildrenMapCall, isChildrenOfCreateElement, isChildrenOnly, isChildrenOnlyCall, isChildrenToArray, isChildrenToArrayCall, isClassComponent, isCloneElement, isCloneElementCall, isComponentDidCatch, isComponentDidMount, isComponentDidUpdate, isComponentName, isComponentNameLoose, isComponentWillMount, isComponentWillReceiveProps, isComponentWillUnmount, isComponentWillUpdate, isComponentWrapperCall, isComponentWrapperCallLoose, isCreateContext, isCreateContextCall, isCreateElement, isCreateElementCall, isCreateRef, isCreateRefCall, isDeclaredInRenderPropLoose, isDirectValueOfRenderPropertyLoose, isForwardRef, isForwardRefCall, isFragmentElement, isFunctionOfRender, isFunctionOfRenderMethod, isGetChildContext, isGetDefaultProps, isGetDerivedStateFromError, isGetDerivedStateFromProps, isGetInitialState, isGetSnapshotBeforeUpdate, isHostElement, isInitializedFromReact, isInstanceIdEqual, isInversePhase, isJsxLike, isJsxText, isKeyedElement, isLazy, isLazyCall, isMemo, isMemoCall, isPureComponent, isReactAPI, isReactAPICall, isReactHook, isReactHookCall, isReactHookCallWithName, isReactHookCallWithNameAlias, isReactHookCallWithNameLoose, isReactHookId, isReactHookName, isRenderFunctionLoose, isRenderLike, isRenderMethodLike, isRenderPropLoose, isShouldComponentUpdate, isThisSetState, isUnsafeComponentWillMount, isUnsafeComponentWillReceiveProps, isUnsafeComponentWillUpdate, isUseActionStateCall, isUseCall, isUseCallbackCall, isUseContextCall, isUseDebugValueCall, isUseDeferredValueCall, isUseEffectCall, isUseEffectCallLoose, isUseFormStatusCall, isUseIdCall, isUseImperativeHandleCall, isUseInsertionEffectCall, isUseLayoutEffectCall, isUseMemoCall, isUseOptimisticCall, isUseReducerCall, isUseRefCall, isUseStateCall, isUseSyncExternalStoreCall, isUseTransitionCall, isValidComponentDefinition, stringifyJsx, useComponentCollector, useComponentCollectorLegacy, useHookCollector };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/core",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.43",
|
|
4
4
|
"description": "ESLint React's ESLint utility module for static analysis of React core APIs and patterns.",
|
|
5
5
|
"homepage": "https://github.com/Rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -27,20 +27,20 @@
|
|
|
27
27
|
"./package.json"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@typescript-eslint/scope-manager": "^8.
|
|
31
|
-
"@typescript-eslint/type-utils": "^8.
|
|
32
|
-
"@typescript-eslint/types": "^8.
|
|
33
|
-
"@typescript-eslint/utils": "^8.
|
|
30
|
+
"@typescript-eslint/scope-manager": "^8.34.0",
|
|
31
|
+
"@typescript-eslint/type-utils": "^8.34.0",
|
|
32
|
+
"@typescript-eslint/types": "^8.34.0",
|
|
33
|
+
"@typescript-eslint/utils": "^8.34.0",
|
|
34
34
|
"birecord": "^0.1.1",
|
|
35
|
-
"ts-pattern": "^5.7.
|
|
36
|
-
"@eslint-react/ast": "2.0.0-next.
|
|
37
|
-
"@eslint-react/eff": "2.0.0-next.
|
|
38
|
-
"@eslint-react/kit": "2.0.0-next.
|
|
39
|
-
"@eslint-react/
|
|
40
|
-
"@eslint-react/
|
|
35
|
+
"ts-pattern": "^5.7.1",
|
|
36
|
+
"@eslint-react/ast": "2.0.0-next.43",
|
|
37
|
+
"@eslint-react/eff": "2.0.0-next.43",
|
|
38
|
+
"@eslint-react/kit": "2.0.0-next.43",
|
|
39
|
+
"@eslint-react/var": "2.0.0-next.43",
|
|
40
|
+
"@eslint-react/shared": "2.0.0-next.43"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"tsup": "^8.
|
|
43
|
+
"tsup": "^8.5.0",
|
|
44
44
|
"@local/configs": "0.0.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|