-
Notifications
You must be signed in to change notification settings - Fork 30.4k
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
[react] Allow returning ReactNode from function components #65135
[react] Allow returning ReactNode from function components #65135
Conversation
fe19a4e
to
f8e82c0
Compare
Inspecting the JavaScript source for this package found some properties that are not in the .d.ts files. react (unpkg)was missing the following properties:
|
// allows null as props | ||
const FunctionComponent4: React.FunctionComponent = props => null; | ||
|
||
// undesired: Rejects `false` because of https://github.com/DefinitelyTyped/DefinitelyTyped/issues/18051 | ||
// leaving here to document limitation and inspect error message | ||
// @ts-expect-error | ||
const FunctionComponent5: React.FunctionComponent = () => false; | ||
|
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.
We test this in elementTypeTests
now
f8e82c0
to
9fed090
Compare
46f2d86
to
cb0aaec
Compare
cb0aaec
to
a185ce5
Compare
c11965c
to
8f5bd1c
Compare
I tested out the new types w/ the new typescript to see how it looked on our nearly 1 million l.o.c. react repo and the only thing broken was one weird case with story books
which gives
which seems to be because
e.g. the legacy context api argument If I add this in to the JSXElementConstructor type then the error goes away
Thanks for the PR and all the work that went into it - I'm not an expert, maybe this is intentional, just posting my analysis in case it is useful. |
f46325b
to
554a1ce
Compare
Thank you very much for testing this change. This sounds like another case I also encountered in some NPM package for React Native. I need to double check what the state of the second parameter of function components is. But I'm leaning towards not supporting it since it makes I'll definitely update the PR description to mention this potential breakage. |
8283201
to
5fb78a0
Compare
@eps1lon Thank you for submitting this PR! This is a live comment which I will keep updated. 1 package in this PR
Code ReviewsBecause this is a widely-used package, a DT maintainer will need to review it before it can be merged. You can test the changes of this PR in the Playground. Status
All of the items on the list are green. To merge, you need to post a comment including the string "Ready to merge" to bring in your changes. Diagnostic Information: What the bot saw about this PR{
"type": "info",
"now": "-",
"pr_number": 65135,
"author": "eps1lon",
"headCommitOid": "68a39e5b4fdc23d964324c4b06af8820d855fa15",
"mergeBaseOid": "7e0c6ff9e446423a052e8bc23ac74b5ace1f6990",
"lastPushDate": "2023-05-28T08:57:35.000Z",
"lastActivityDate": "2023-06-01T19:25:12.000Z",
"mergeOfferDate": "2023-05-28T09:29:52.000Z",
"mergeRequestDate": "2023-06-01T19:25:12.000Z",
"mergeRequestUser": "eps1lon",
"hasMergeConflict": false,
"isFirstContribution": false,
"tooManyFiles": false,
"hugeChange": false,
"popularityLevel": "Critical",
"pkgInfo": [
{
"name": "react",
"kind": "edit",
"files": [
{
"path": "types/react/index.d.ts",
"kind": "definition"
},
{
"path": "types/react/jsx-dev-runtime.d.ts",
"kind": "definition"
},
{
"path": "types/react/jsx-runtime.d.ts",
"kind": "definition"
},
{
"path": "types/react/test/experimental.tsx",
"kind": "test"
},
{
"path": "types/react/test/index.ts",
"kind": "test"
},
{
"path": "types/react/test/tsx.tsx",
"kind": "test"
}
],
"owners": [
"johnnyreilly",
"bbenezech",
"pzavolinsky",
"ericanderson",
"DovydasNavickas",
"theruther4d",
"guilhermehubner",
"ferdaber",
"jrakotoharisoa",
"pascaloliv",
"hotell",
"franklixuefei",
"Jessidhia",
"saranshkataria",
"lukyth",
"eps1lon",
"zieka",
"dancerphil",
"dimitropoulos",
"disjukr",
"vhfmag",
"hellatan",
"priyanshurav",
"Semigradsky"
],
"addedOwners": [],
"deletedOwners": [],
"popularityLevel": "Critical"
}
],
"reviews": [
{
"type": "approved",
"reviewer": "johnnyreilly",
"date": "2023-05-28T09:00:19.000Z",
"isMaintainer": true
}
],
"mainBotCommentID": 1557836847,
"ciResult": "pass"
} |
Ready to merge |
Is undefined actually allowed? Null should be but not undefined. That helps catch bugs when you forget to return something. |
Yes, React has supported components returning |
No return is currently not allowed i.e. when you for forgot to put a DefinitelyTyped/types/react/test/tsx.tsx Lines 707 to 715 in e221cd2
|
Type error is still reported when I use async component. Here is my code. import React from 'react';
const Foo = async () => {
return <div>asd</div>;
};
const Com = () => {
return <Foo />
} package.json {
"name": "typescript-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc -v && tsc",
"tsct": "tsc --traceResolution",
"tscv": "tsc -v"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.2.8",
"typescript": "^5.1.3"
},
"repository": "https://github.com/sisiea/build-dev-tools-action.git",
"dependencies": {
"react": "^18.2.0"
}
}
|
@sisiea I'm not getting any TypeScript errors with the following config: {
"compilerOptions": {
"esModuleInterop": true,
"jsx": "react-jsx"
}
} If this doesn't fix it, please either push to the repository and ping me or share your config here for help. |
…om function components by @eps1lon * [react] Allow returning ReactNode from function components * [react] Ignore statics from element type checking would require a lot of work to fix the issues in the consuming libraries (e.g. rc-easyui, moxy__next-router-scroll etc) .propTypes assignablity is ultimately not important here. * Add JSX.ElementType to scoped namespace * Add JSX.ElementType to automatic runtime
@sisiea No clue if this is any help, but I had a similar issue, my nextjs app had latest typescript ( In my case, I'm using VS Code and my app is in a monorepo (using NPM workspaces + Turborepo). Turns out I had another version of typescript installed that VS Code was using. Once I selected the 5.2.2 version, my IDE type errors went away (cmd+shift+P -> |
I just wonder why these changes cannot be applied for those whose typescript's version is under 5.1. For me, I think React's behavior won't be affected by Typescript's version, like allowing returning |
5.1 includes the change that allows this behavior: https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-1.html#decoupled-type-checking-between-jsx-elements-and-jsx-tag-types Changes are not backported in TypeScript so you can only get this by upgrading TypeScript which you should anyway. 4.2 is no longer supported throughout the |
Note: This change only applies to TypeScript 5.1 and later
Adds a new
ElementType
under the JSX namespace that is used by TypeScript 5.1 to determine if an element type is valid. This will allow function components, forwardRef components etc to returnReactNode
(strings, arrays, numbers, boolean, undefined) from render. This won't change anything for class components since they already worked as intended.For example:
Closes #18051
Closes #18912
Closes #20249
Closes #20356
Closes #20544
Closes #20942
Closes #26890
Closes #33006
Closes #33908
Closes #41808
Closes #25349
Closes #23422
for reviewers
This PR will not land before 5.1.2 is published (scheduled for 30th May). It's up for review early (probably once RC is out) to ship it as soon as possible to avoid the "why hasn't this been fixed yet" crowd.
`20a2f4db4f` N=1 --extendedDiagnostics diff