-
Notifications
You must be signed in to change notification settings - Fork 47.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
compiler: Add support for ref effects
Fixes false positives where we currently disallow mutations of refs from callbacks passed to JSX, if the ref is also passed to jsx. We consider these to be mutations of "frozen" values, but refs are explicitly allowed to have interior mutability. The fix is to add a new RefMutation variant to FunctionEffect, which we emit whenever a ref is mutated. We disallow this effect type from within a function body, but allow it within function expressions that are passed to useEffect and friends as well as to jsx. ghstack-source-id: 057e505c16be50d16fc1dc12c1e5ed754ace87ed Pull Request resolved: #29733
- Loading branch information
1 parent
d77dd31
commit 0b6a09d
Showing
17 changed files
with
658 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
109 changes: 109 additions & 0 deletions
109
...xtures/compiler/allow-mutating-ref-in-callback-passed-to-jsx-indirect.expect.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
|
||
## Input | ||
|
||
```javascript | ||
// @validateRefAccessDuringRender | ||
import { useRef } from "react"; | ||
|
||
function Component() { | ||
const ref = useRef(null); | ||
|
||
const setRef = () => { | ||
if (ref.current !== null) { | ||
ref.current = ""; | ||
} | ||
}; | ||
|
||
const onClick = () => { | ||
setRef(); | ||
}; | ||
|
||
return ( | ||
<> | ||
<input ref={ref} /> | ||
<button onClick={onClick} /> | ||
</> | ||
); | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{}], | ||
}; | ||
|
||
``` | ||
|
||
## Code | ||
|
||
```javascript | ||
import { c as _c } from "react/compiler-runtime"; // @validateRefAccessDuringRender | ||
import { useRef } from "react"; | ||
|
||
function Component() { | ||
const $ = _c(10); | ||
const ref = useRef(null); | ||
let t0; | ||
if ($[0] === Symbol.for("react.memo_cache_sentinel")) { | ||
t0 = () => { | ||
if (ref.current !== null) { | ||
ref.current = ""; | ||
} | ||
}; | ||
$[0] = t0; | ||
} else { | ||
t0 = $[0]; | ||
} | ||
const setRef = t0; | ||
let t1; | ||
if ($[1] !== setRef) { | ||
t1 = () => { | ||
setRef(); | ||
}; | ||
$[1] = setRef; | ||
$[2] = t1; | ||
} else { | ||
t1 = $[2]; | ||
} | ||
const onClick = t1; | ||
let t2; | ||
if ($[3] !== ref) { | ||
t2 = <input ref={ref} />; | ||
$[3] = ref; | ||
$[4] = t2; | ||
} else { | ||
t2 = $[4]; | ||
} | ||
let t3; | ||
if ($[5] !== onClick) { | ||
t3 = <button onClick={onClick} />; | ||
$[5] = onClick; | ||
$[6] = t3; | ||
} else { | ||
t3 = $[6]; | ||
} | ||
let t4; | ||
if ($[7] !== t2 || $[8] !== t3) { | ||
t4 = ( | ||
<> | ||
{t2} | ||
{t3} | ||
</> | ||
); | ||
$[7] = t2; | ||
$[8] = t3; | ||
$[9] = t4; | ||
} else { | ||
t4 = $[9]; | ||
} | ||
return t4; | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{}], | ||
}; | ||
|
||
``` | ||
### Eval output | ||
(kind: ok) <input><button></button> |
28 changes: 28 additions & 0 deletions
28
...src/__tests__/fixtures/compiler/allow-mutating-ref-in-callback-passed-to-jsx-indirect.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// @validateRefAccessDuringRender | ||
import { useRef } from "react"; | ||
|
||
function Component() { | ||
const ref = useRef(null); | ||
|
||
const setRef = () => { | ||
if (ref.current !== null) { | ||
ref.current = ""; | ||
} | ||
}; | ||
|
||
const onClick = () => { | ||
setRef(); | ||
}; | ||
|
||
return ( | ||
<> | ||
<input ref={ref} /> | ||
<button onClick={onClick} /> | ||
</> | ||
); | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{}], | ||
}; |
94 changes: 94 additions & 0 deletions
94
...ests__/fixtures/compiler/allow-mutating-ref-in-callback-passed-to-jsx.expect.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
|
||
## Input | ||
|
||
```javascript | ||
// @validateRefAccessDuringRender | ||
import { useRef } from "react"; | ||
|
||
function Component() { | ||
const ref = useRef(null); | ||
|
||
const onClick = () => { | ||
if (ref.current !== null) { | ||
ref.current = ""; | ||
} | ||
}; | ||
|
||
return ( | ||
<> | ||
<input ref={ref} /> | ||
<button onClick={onClick} /> | ||
</> | ||
); | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{}], | ||
}; | ||
|
||
``` | ||
|
||
## Code | ||
|
||
```javascript | ||
import { c as _c } from "react/compiler-runtime"; // @validateRefAccessDuringRender | ||
import { useRef } from "react"; | ||
|
||
function Component() { | ||
const $ = _c(8); | ||
const ref = useRef(null); | ||
let t0; | ||
if ($[0] === Symbol.for("react.memo_cache_sentinel")) { | ||
t0 = () => { | ||
if (ref.current !== null) { | ||
ref.current = ""; | ||
} | ||
}; | ||
$[0] = t0; | ||
} else { | ||
t0 = $[0]; | ||
} | ||
const onClick = t0; | ||
let t1; | ||
if ($[1] !== ref) { | ||
t1 = <input ref={ref} />; | ||
$[1] = ref; | ||
$[2] = t1; | ||
} else { | ||
t1 = $[2]; | ||
} | ||
let t2; | ||
if ($[3] !== onClick) { | ||
t2 = <button onClick={onClick} />; | ||
$[3] = onClick; | ||
$[4] = t2; | ||
} else { | ||
t2 = $[4]; | ||
} | ||
let t3; | ||
if ($[5] !== t1 || $[6] !== t2) { | ||
t3 = ( | ||
<> | ||
{t1} | ||
{t2} | ||
</> | ||
); | ||
$[5] = t1; | ||
$[6] = t2; | ||
$[7] = t3; | ||
} else { | ||
t3 = $[7]; | ||
} | ||
return t3; | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{}], | ||
}; | ||
|
||
``` | ||
### Eval output | ||
(kind: ok) <input><button></button> |
24 changes: 24 additions & 0 deletions
24
...compiler/src/__tests__/fixtures/compiler/allow-mutating-ref-in-callback-passed-to-jsx.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// @validateRefAccessDuringRender | ||
import { useRef } from "react"; | ||
|
||
function Component() { | ||
const ref = useRef(null); | ||
|
||
const onClick = () => { | ||
if (ref.current !== null) { | ||
ref.current = ""; | ||
} | ||
}; | ||
|
||
return ( | ||
<> | ||
<input ref={ref} /> | ||
<button onClick={onClick} /> | ||
</> | ||
); | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{}], | ||
}; |
Oops, something went wrong.