-
Notifications
You must be signed in to change notification settings - Fork 47k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[compiler] Provide support for custom fbt-like macro functions #29893
Merged
josephsavona
merged 2 commits into
gh/josephsavona/32/base
from
gh/josephsavona/32/head
Jun 14, 2024
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
100 changes: 100 additions & 0 deletions
100
.../__tests__/fixtures/compiler/meta-isms/repro-cx-assigned-to-temporary.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,100 @@ | ||
|
||
## Input | ||
|
||
```javascript | ||
// @compilationMode(infer) @enableAssumeHooksFollowRulesOfReact:false @customMacros(cx) | ||
import { identity } from "shared-runtime"; | ||
|
||
const DARK = "dark"; | ||
|
||
function Component() { | ||
const theme = useTheme(); | ||
return ( | ||
<div | ||
className={cx({ | ||
"styles/light": true, | ||
"styles/dark": theme.getTheme() === DARK, | ||
})} | ||
/> | ||
); | ||
} | ||
|
||
function cx(obj) { | ||
const classes = []; | ||
for (const [key, value] of Object.entries(obj)) { | ||
if (value) { | ||
classes.push(key); | ||
} | ||
} | ||
return classes.join(" "); | ||
} | ||
|
||
function useTheme() { | ||
return { | ||
getTheme() { | ||
return DARK; | ||
}, | ||
}; | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{}], | ||
}; | ||
|
||
``` | ||
|
||
## Code | ||
|
||
```javascript | ||
import { c as _c } from "react/compiler-runtime"; // @compilationMode(infer) @enableAssumeHooksFollowRulesOfReact:false @customMacros(cx) | ||
import { identity } from "shared-runtime"; | ||
|
||
const DARK = "dark"; | ||
|
||
function Component() { | ||
const $ = _c(2); | ||
const theme = useTheme(); | ||
|
||
const t0 = cx({ | ||
"styles/light": true, | ||
"styles/dark": theme.getTheme() === DARK, | ||
}); | ||
let t1; | ||
if ($[0] !== t0) { | ||
t1 = <div className={t0} />; | ||
$[0] = t0; | ||
$[1] = t1; | ||
} else { | ||
t1 = $[1]; | ||
} | ||
return t1; | ||
} | ||
|
||
function cx(obj) { | ||
const classes = []; | ||
for (const [key, value] of Object.entries(obj)) { | ||
if (value) { | ||
classes.push(key); | ||
} | ||
} | ||
return classes.join(" "); | ||
} | ||
|
||
function useTheme() { | ||
return { | ||
getTheme() { | ||
return DARK; | ||
}, | ||
}; | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{}], | ||
}; | ||
|
||
``` | ||
### Eval output | ||
(kind: ok) <div class="styles/light styles/dark"></div> |
39 changes: 39 additions & 0 deletions
39
...eact-compiler/src/__tests__/fixtures/compiler/meta-isms/repro-cx-assigned-to-temporary.js
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,39 @@ | ||
// @compilationMode(infer) @enableAssumeHooksFollowRulesOfReact:false @customMacros(cx) | ||
import { identity } from "shared-runtime"; | ||
|
||
const DARK = "dark"; | ||
|
||
function Component() { | ||
const theme = useTheme(); | ||
return ( | ||
<div | ||
className={cx({ | ||
"styles/light": true, | ||
"styles/dark": theme.getTheme() === DARK, | ||
})} | ||
/> | ||
); | ||
} | ||
|
||
function cx(obj) { | ||
const classes = []; | ||
for (const [key, value] of Object.entries(obj)) { | ||
if (value) { | ||
classes.push(key); | ||
} | ||
} | ||
return classes.join(" "); | ||
} | ||
|
||
function useTheme() { | ||
return { | ||
getTheme() { | ||
return DARK; | ||
}, | ||
}; | ||
} | ||
|
||
export const FIXTURE_ENTRYPOINT = { | ||
fn: Component, | ||
params: [{}], | ||
}; |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i verified that without the change (and without the
@customMacros(cx)
pragma) this fixture assigns cx to a local