Skip to content
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 < 18: Fix incorrect ReactNode declaration #263

Merged
merged 4 commits into from
Nov 5, 2022

Conversation

molefrog
Copy link
Owner

@molefrog molefrog commented Nov 5, 2022

Closes #229

This PR declares more strict ReactNode that excludes {}. Only relevant to React.
It also fixes some incorrect test cases.

@@ -77,6 +77,8 @@ const invalidParamsWithGeneric: Params<{ id: number }> = { id: 13 }; // $ExpectE
{({ rest }) => {
const fn = (a: string) => "noop";
fn(rest); // $ExpectError

return <></>;
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The previous definition was incorrect, but thanks to the fix I was able to catch it.

@github-actions
Copy link

github-actions bot commented Nov 5, 2022

size-limit report 📦

Path Size
index.js 1.11 KB (0%)
use-location.js 159 B (0%)

@codecov
Copy link

codecov bot commented Nov 5, 2022

Codecov Report

Base: 100.00% // Head: 100.00% // No change to project coverage 👍

Coverage data is based on head (a3c480e) compared to base (3f6ab7b).
Patch has no changes to coverable lines.

Additional details and impacted files
@@            Coverage Diff            @@
##            master      #263   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            7         7           
  Lines          255       255           
  Branches        50        50           
=========================================
  Hits           255       255           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@@ -59,7 +59,7 @@ const invalidParamsWithGeneric: Params<{ id: number }> = { id: 13 }; // $ExpectE
This is a <b>mixed</b> content
</Route>;

<Route path="/users/:id">{(params: Params): React.ReactNode => `User id: ${params.id}`}</Route>;
<Route path="/users/:id">{(params: Params) => `User id: ${params.id}`}</Route>;
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one is interesting. Because we use React 17 for testing the types, the two ReactNode versions were conflicting with each other.

This could lead to some cases where a user decides to define their function explicitly returning ReactNode and they might run into this issue. But I suppose since it was a bug they, unfortunately, would have to fix it themselves.

@@ -23,6 +24,11 @@ import { DefaultParams, Params, Match, MatcherFn } from "../matcher";
export * from "../matcher";
export * from "../use-location";

// React <18 only: fixes incorrect `ReactNode` declaration that had `{}` in the union.
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Side thought: honestly, supporting two versions of TS becomes a bit of a burden. I wonder if we could drop support for 3.9.4 in the future major version. Would that be too brutal? Imo, it could, but there is an alternative – can't upgrade to TS 4, well you would have to stay on wouter@2, sorry.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤷‍♂️ I have no idea. Personally, I don't use TS < 4 and never plan to. But others may have a different opinion on this 😄

@molefrog
Copy link
Owner Author

molefrog commented Nov 5, 2022

Hi @HansBrende, please see the solution provided.

// React <18 only: fixes incorrect `ReactNode` declaration that had `{}` in the union.
// This issue has been fixed in React 18 type declaration.
// https://github.com/DefinitelyTyped/DefinitelyTyped/pull/56210
type ReactNode = ReactChild | ReactNode[] | ReactPortal | boolean | null | undefined;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good. Only other thing I will suggest is to change
ReactNode[] to Iterable<ReactNode>. This was a change in DT that I overlooked. See details here: DefinitelyTyped/DefinitelyTyped#56623

Also worth noting, react has allowed Iterables prior to 18, it was always just incorrectly typed in DT (a problem which was masked by the inclusion of {}). https://github.com/facebook/react/blob/v17.0.2/packages/shared/ReactTypes.js#L20

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good one! Fixed in a3c480e

Copy link
Contributor

@HansBrende HansBrende left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on React + TS4.1, looks good!

@molefrog molefrog merged commit 04451bf into master Nov 5, 2022
@molefrog molefrog deleted the fix/pre-react-18-strict-react-node branch November 5, 2022 18:52
@molefrog
Copy link
Owner Author

molefrog commented Nov 5, 2022

Thank you @HansBrende, I have just published 2.8.1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Typescript Improvements possible (in v2.8.0-alpha.2)
2 participants