Skip to content

Commit

Permalink
Consider dispatch from useActionState stable (#29665)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Jul 6, 2024
1 parent f38c22b commit 1b0132c
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,8 @@ const tests = {
const [state4, dispatch2] = React.useReducer();
const [state5, maybeSetState] = useFunnyState();
const [state6, maybeDispatch] = useFunnyReducer();
const [state9, dispatch5] = useActionState();
const [state10, dispatch6] = React.useActionState();
const [isPending1] = useTransition();
const [isPending2, startTransition2] = useTransition();
const [isPending3] = React.useTransition();
Expand All @@ -624,6 +626,8 @@ const tests = {
setState2();
dispatch1();
dispatch2();
dispatch5();
dispatch6();
startTransition1();
startTransition2();
startTransition3();
Expand All @@ -646,7 +650,7 @@ const tests = {
maybeDispatch();
}, [
// Dynamic
state1, state2, state3, state4, state5, state6,
state1, state2, state3, state4, state5, state6, state9, state10,
maybeRef1, maybeRef2,
isPending2, isPending4,
Expand Down Expand Up @@ -1494,6 +1498,51 @@ const tests = {
},
],
},
{
// Affected code should use React.useActionState instead
code: normalizeIndent`
function ComponentUsingFormState(props) {
const [state7, dispatch3] = useFormState();
const [state8, dispatch4] = ReactDOM.useFormState();
useEffect(() => {
dispatch3();
dispatch4();
// dynamic
console.log(state7);
console.log(state8);
}, [state7, state8]);
}
`,
errors: [
{
message:
"React Hook useEffect has missing dependencies: 'dispatch3' and 'dispatch4'. " +
'Either include them or remove the dependency array.',
suggestions: [
{
desc: 'Update the dependencies array to be: [dispatch3, dispatch4, state7, state8]',
output: normalizeIndent`
function ComponentUsingFormState(props) {
const [state7, dispatch3] = useFormState();
const [state8, dispatch4] = ReactDOM.useFormState();
useEffect(() => {
dispatch3();
dispatch4();
// dynamic
console.log(state7);
console.log(state8);
}, [dispatch3, dispatch4, state7, state8]);
}
`,
},
],
},
],
},
{
code: normalizeIndent`
function MyComponent(props) {
Expand Down
8 changes: 7 additions & 1 deletion packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ export default {
// ^^^ true for this reference
// const [state, dispatch] = useReducer() / React.useReducer()
// ^^^ true for this reference
// const [state, dispatch] = useActionState() / React.useActionState()
// ^^^ true for this reference
// const ref = useRef()
// ^^^ true for this reference
// const onStuff = useEffectEvent(() => {})
Expand Down Expand Up @@ -260,7 +262,11 @@ export default {
}
// useEffectEvent() return value is always unstable.
return true;
} else if (name === 'useState' || name === 'useReducer') {
} else if (
name === 'useState' ||
name === 'useReducer' ||
name === 'useActionState'
) {
// Only consider second value in initializing tuple stable.
if (
id.type === 'ArrayPattern' &&
Expand Down

0 comments on commit 1b0132c

Please sign in to comment.